59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"name": "zendframework/zend-soap",
|
|
"description": " ",
|
|
"license": "BSD-3-Clause",
|
|
"keywords": [
|
|
"zf2",
|
|
"soap"
|
|
],
|
|
"homepage": "https://github.com/zendframework/zend-soap",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Zend\\Soap\\": "src/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^5.6 || ^7.0",
|
|
"ext-soap": "*",
|
|
"zendframework/zend-server": "^2.6.1",
|
|
"zendframework/zend-stdlib": "^2.7 || ^3.0",
|
|
"zendframework/zend-uri": "^2.5.2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5.7.21 || ^6.3",
|
|
"zendframework/zend-coding-standard": "~1.0.0",
|
|
"zendframework/zend-config": "^2.6",
|
|
"zendframework/zend-http": "^2.5.4"
|
|
},
|
|
"suggest": {
|
|
"zendframework/zend-http": "Zend\\Http component"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.7.x-dev",
|
|
"dev-develop": "2.8.x-dev"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"ZendTest\\Soap\\": "test/"
|
|
},
|
|
"files": [
|
|
"test/TestAsset/commontypes.php",
|
|
"test/TestAsset/call_user_func.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"check": [
|
|
"@cs-check",
|
|
"@test"
|
|
],
|
|
"cs-check": "phpcs",
|
|
"cs-fix": "phpcbf",
|
|
"test": "phpunit",
|
|
"test-coverage": "phpunit --coverage-clover clover.xml"
|
|
}
|
|
}
|