70 lines
2.5 KiB
JSON
70 lines
2.5 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.4.1 || ~8.0.0",
|
||
|
"laminas/laminas-code": "^4.3.0",
|
||
|
"composer-runtime-api": "^2.1.0",
|
||
|
"webimpress/safe-writer": "^2.2.0"
|
||
|
},
|
||
|
"conflict": {
|
||
|
"zendframework/zend-stdlib": "<3.2.1",
|
||
|
"laminas/laminas-stdlib": "<3.2.1",
|
||
|
"doctrine/annotations": "<1.6.1",
|
||
|
"thecodingmachine/safe": "<1.3.3"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"ext-phar": "*",
|
||
|
"phpunit/phpunit": "^9.5.4",
|
||
|
"squizlabs/php_codesniffer": "^3.6.0",
|
||
|
"slevomat/coding-standard": "^6.3.10",
|
||
|
"doctrine/coding-standard": "^8.2.1",
|
||
|
"nikic/php-parser": "^4.10.5",
|
||
|
"phpbench/phpbench": "^0.17.1 || 1.0.0-alpha2",
|
||
|
"infection/infection": "^0.21.5",
|
||
|
"vimeo/psalm": "^4.4.1",
|
||
|
"codelicia/xulieta": "^0.1.6"
|
||
|
},
|
||
|
"suggest": {
|
||
|
"ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
|
||
|
"laminas/laminas-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)",
|
||
|
"laminas/laminas-json": "To have the JsonRpc adapter (Remote Object feature)",
|
||
|
"laminas/laminas-soap": "To have the Soap adapter (Remote Object feature)"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"ProxyManager\\": "src/ProxyManager"
|
||
|
}
|
||
|
},
|
||
|
"autoload-dev": {
|
||
|
"psr-4": {
|
||
|
"ProxyManagerBench\\": "tests/ProxyManagerBench",
|
||
|
"ProxyManagerTest\\": "tests/ProxyManagerTest",
|
||
|
"ProxyManagerTestAsset\\": "tests/ProxyManagerTestAsset",
|
||
|
"Laminas\\Server\\": "tests/Stubbed/Laminas/Server"
|
||
|
}
|
||
|
},
|
||
|
"extra": {
|
||
|
"branch-alias": {
|
||
|
"dev-master": "3.0.x-dev"
|
||
|
}
|
||
|
}
|
||
|
}
|