61 lines
2.0 KiB
JSON
61 lines
2.0 KiB
JSON
{
|
|
"name": "ocramius/proxy-manager",
|
|
"description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/Ocramius/ProxyManager",
|
|
"keywords": [
|
|
"proxy",
|
|
"proxy pattern",
|
|
"service proxies",
|
|
"lazy loading",
|
|
"aop"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Marco Pivetta",
|
|
"email": "ocramius@gmail.com",
|
|
"homepage": "http://ocramius.github.io/"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.1.0",
|
|
"zendframework/zend-code": "^3.1.0",
|
|
"ocramius/package-versions": "^1.1.1"
|
|
},
|
|
"require-dev": {
|
|
"ext-phar": "*",
|
|
"phpunit/phpunit": "^5.6.4",
|
|
"phpunit/phpunit-mock-objects": "^3.4.1",
|
|
"squizlabs/php_codesniffer": "^2.7.0",
|
|
"couscous/couscous": "^1.5.2",
|
|
"phpbench/phpbench": "^0.12.2",
|
|
"phpstan/phpstan": "^0.6.4",
|
|
"nikic/php-parser": "^3.0.4",
|
|
"humbug/humbug": "dev-master@DEV"
|
|
},
|
|
"suggest": {
|
|
"ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
|
|
"zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)",
|
|
"zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)",
|
|
"zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)"
|
|
},
|
|
"autoload": {
|
|
"psr-0": {
|
|
"ProxyManager\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-0": {
|
|
"ProxyManagerBench\\": "tests",
|
|
"ProxyManagerTest\\": "tests",
|
|
"ProxyManagerTestAsset\\": "tests"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "3.0.x-dev"
|
|
}
|
|
}
|
|
}
|