DesignPatternsPHP/composer.json
Eloi Poch 00f1503a44 add composer
Added as a dependencies:
 - PHPUnit to allow run the test suit
 - PHP CodeSniffer to allow check the code style
2014-02-04 11:04:35 +01:00

21 lines
485 B
JSON

{
"name": "domnikl/design-patterns-php",
"description": "Sample code for several design patterns in PHP",
"authors": [
{
"name": "Dominik Liebler",
"email": "liebler.dominik@googlemail.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "3.7.*",
"squizlabs/php_codesniffer": "1.5.*"
},
"autoload": {
"psr-4": {
"DesignPatterns\\": ""
}
}
}