49 lines
1.6 KiB
JSON
49 lines
1.6 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": "^8.0",
|
|
"nikic/php-parser": "^4.10.4"
|
|
},
|
|
"require-dev": {
|
|
"doctrine/coding-standard": "^8.2.0",
|
|
"phpunit/phpunit": "^9.5.1",
|
|
"psalm/plugin-phpunit": "^0.15.0",
|
|
"roave/infection-static-analysis-plugin": "^1.7",
|
|
"squizlabs/php_codesniffer": "^3.5.8",
|
|
"vimeo/psalm": "^4.4.1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"CodeGenerationUtils\\": "src/CodeGenerationUtils"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"CodeGenerationUtilsTests\\": "tests/CodeGenerationUtilsTest",
|
|
"CodeGenerationUtilsTestAsset\\": "tests/CodeGenerationUtilsTestAsset"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.0.x-dev"
|
|
}
|
|
}
|
|
}
|