-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.56 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
{
"name": "suimarco/proxy-manager",
"description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/suimarco/proxy-manager/",
"keywords": [
"proxy",
"proxy pattern",
"service proxies",
"lazy loading",
"aop"
],
"authors": [
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://ocramius.github.io/"
},
{
"name": "Nicolas Grekas",
"email": "[email protected]"
}
],
"replace": {
"ocramius/proxy-manager": "^2.1"
},
"require": {
"php": "^7.1 || ^8.0",
"laminas/laminas-code": "^3.4.1",
"symfony/filesystem": "^4.4|^5.0"
},
"conflict": {
"zendframework/zend-stdlib": "<3.2.1",
"laminas/laminas-stdlib": "<3.2.1"
},
"require-dev": {
"ext-phar": "*",
"symfony/phpunit-bridge": "^5.2"
},
"autoload": {
"psr-4": {
"ProxyManager\\": "src/ProxyManager"
}
},
"autoload-dev": {
"psr-4": {
"ProxyManagerTest\\": "tests/ProxyManagerTest",
"ProxyManagerTestAsset\\": "tests/ProxyManagerTestAsset",
"Laminas\\Server\\": "tests/Stubbed/Laminas/Server"
}
},
"minimum-stability": "dev"
}