Skip to content
View pierreboissinot's full-sized avatar

Organizations

@le-phare
Block or Report

Block or report pierreboissinot

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. dotfiles dotfiles Public

    Managed by https://github.com/twpayne/chezmoi

    Vim Script

  2. Developing composer package Developing composer package
    1
    * Be sure to set minimum-stability to dev
    2
    * Use options symlink true
    3
    * When requiring a package via path repository, there is no git related features (like requiring the package on a specific branch). The symlink use filesystem.
  3. PhpStorm Symfony Translation Flow PhpStorm Symfony Translation Flow
    1
    # PhpStorm Symfony Translation Flow
    2
    
                  
    3
    ## Basic Requirements
    4
    * Symfony's translation service is enabled and configured [doc](https://symfony.com/doc/3.3/translation.html#translation-configuration) 
    5
    * Translastion resources/files are created[doc](https://symfony.com/doc/3.3/translation.html#translation-resources)
  4. Check missing translation in symfony... Check missing translation in symfony project with translation component
    1
    #!/usr/bin/env bash
    2
    IFS=',' read -r -a locales <<< "$1"
    3
    bundle=$2
    4
    echo "Check missing translation for locales $locales in $bundle"
    5
    for locale in $locales ; do