# Library ## Développement ### Documentations http://www.php-fig.org/psr/psr-4/ ### Phpcs Configurer Phpcs: https://github.com/squizlabs/PHP_CodeSniffer/wiki/Configuration-Options Changer le coding standard (PEAR par defaut) ``` phpcs --config-set default_standard Squiz ``` ``` vendor/bin/phpcs --config-set colors 1 vendor/bin/phpcs --config-set report_width 120 vendor/bin/phpcs --config-set show_progress 1 ``` ### Tests unitaires Pour lancer les tests unitaires: ``` vendor/bin/phpunit tests/* ```