forked from Ocramius/ProxyManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 2.36 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"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": "[email protected]",
"homepage": "http://ocramius.github.io/"
}
],
"require": {
"php": "7.4.*",
"laminas/laminas-code": "^3.4.1",
"ocramius/package-versions": "^1.5.1",
"webimpress/safe-writer": "^2.0"
},
"conflict": {
"zendframework/zend-stdlib": "<3.2.1",
"laminas/laminas-stdlib": "<3.2.1",
"doctrine/annotations": "<1.6.1"
},
"require-dev": {
"ext-phar": "*",
"phpunit/phpunit": "^9.0.1",
"squizlabs/php_codesniffer": "^3.5.4",
"slevomat/coding-standard": "^5.0.4",
"doctrine/coding-standard": "^6.0.0",
"nikic/php-parser": "^4.3.0",
"phpbench/phpbench": "^0.17.0",
"infection/infection": "^0.15.3",
"vimeo/psalm": "^3.9.3"
},
"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"
}
}
}