Add composer.json
This commit is contained in:
parent
f6b157ca15
commit
3dab0c16e9
1 changed files with 45 additions and 0 deletions
45
composer.json
Normal file
45
composer.json
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
"name": "ocramius/code-generator-utils",
|
||||
"description": "A set of code generator utilities built on top of PHP-Parsers that ease its use when combined with Reflection",
|
||||
"type": "library",
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/Ocramius/CodeGenerationUtils",
|
||||
"keywords": [
|
||||
"reflection",
|
||||
"code generation",
|
||||
"php code",
|
||||
"parser",
|
||||
"compiler"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Marco Pivetta",
|
||||
"email": "ocramius@gmail.com",
|
||||
"homepage": "http://ocramius.github.com/"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": "~7.0",
|
||||
"nikic/php-parser": "~2.0|~3.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~5.0",
|
||||
"squizlabs/php_codesniffer": "~2.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"CodeGenerationUtils\\": "src/CodeGenerationUtils"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"CodeGenerationUtilsTests\\": "tests/CodeGenerationUtilsTests",
|
||||
"CodeGenerationUtilsTestAsset\\": "tests/CodeGenerationUtilsTestAsset"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.0.x-dev"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue