67 lines
1.9 KiB
JSON
67 lines
1.9 KiB
JSON
{
|
|
"name": "zendframework/zend-code",
|
|
"description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
|
|
"license": "BSD-3-Clause",
|
|
"keywords": [
|
|
"zf",
|
|
"zendframework",
|
|
"code"
|
|
],
|
|
"support": {
|
|
"docs": "https://docs.zendframework.com/zend-code/",
|
|
"issues": "https://github.com/zendframework/zend-code/issues",
|
|
"source": "https://github.com/zendframework/zend-code",
|
|
"rss": "https://github.com/zendframework/zend-code/releases.atom",
|
|
"chat": "https://zendframework-slack.herokuapp.com",
|
|
"forum": "https://discourse.zendframework.com/c/questions/components"
|
|
},
|
|
"require": {
|
|
"php": "^7.1",
|
|
"zendframework/zend-eventmanager": "^2.6 || ^3.0"
|
|
},
|
|
"require-dev": {
|
|
"ext-phar": "*",
|
|
"doctrine/annotations": "^1.7",
|
|
"phpunit/phpunit": "^7.5.16 || ^8.4",
|
|
"zendframework/zend-coding-standard": "^1.0",
|
|
"zendframework/zend-stdlib": "^2.7 || ^3.0"
|
|
},
|
|
"conflict": {
|
|
"phpspec/prophecy": "<1.9.0"
|
|
},
|
|
"suggest": {
|
|
"doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
|
|
"zendframework/zend-stdlib": "Zend\\Stdlib component"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Zend\\Code\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"ZendTest\\Code\\": "test/"
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "3.4.x-dev",
|
|
"dev-develop": "3.5.x-dev",
|
|
"dev-dev-4.0": "4.0.x-dev"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"check": [
|
|
"@cs-check",
|
|
"@test"
|
|
],
|
|
"cs-check": "phpcs",
|
|
"cs-fix": "phpcbf",
|
|
"test": "phpunit --colors=always",
|
|
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
|
|
}
|
|
}
|