54 lines
1.7 KiB
JSON
54 lines
1.7 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.com/"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3.3",
|
|
"zendframework/zend-code": ">2.2.5,<3.0"
|
|
},
|
|
"require-dev": {
|
|
"ext-phar": "*",
|
|
"phpunit/phpunit": "~4.0",
|
|
"squizlabs/php_codesniffer": "1.5.*"
|
|
},
|
|
"suggest": {
|
|
"zendframework/zend-stdlib": "To use the hydrator proxy",
|
|
"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": {
|
|
"ProxyManagerTest\\": "tests",
|
|
"ProxyManagerTestAsset\\": "tests"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.0.x-dev"
|
|
}
|
|
}
|
|
}
|