-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 998 Bytes
/
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
{
"name": "eniams/spy",
"type": "library",
"description": "Handler to know if an object was modified",
"keywords": ["object", "event", "immutable"],
"homepage": "https://github.com/ismail1432/spy",
"license": "MIT",
"authors": [
{
"name": "Smaïne Milianni",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"myclabs/deep-copy": "1.9.1",
"symfony/config": "^4.3|^5.0",
"symfony/http-kernel": "^4.3|^5.0",
"symfony/proxy-manager-bridge": "^3.4|^4.4|^5.0"
},
"autoload": {
"psr-4": {
"Eniams\\Spy\\": "src/"
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Eniams\\Spy\\Tests\\": "./tests/"
}
},
"minimum-stability": "dev",
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.17@dev",
"phpstan/phpstan": "^0.12.0@dev",
"symfony/dependency-injection": "^4.3|^5.0",
"phpunit/phpunit": "8.0",
"symfony/phpunit-bridge": "^5.0"
}
}