1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "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.0",
- "phpunit/phpunit": "^7.5.15",
- "zendframework/zend-coding-standard": "^1.0",
- "zendframework/zend-stdlib": "^2.7 || ^3.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.3.x-dev",
- "dev-develop": "3.4.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"
- }
- }
|