45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|
|
}
|