-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1012 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
{
"name": "rezozero/tree-walker",
"description": "Creates a configurable tree walker using different methods for each node based on its PHP class or interface",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ambroise Maupate",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"jms/serializer": "^3.7",
"symfony/serializer": ">=5.4",
"symfony/cache": ">=5.4",
"doctrine/collections": ">=1.6"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"phpstan/phpstan": "^1.8.2",
"phpunit/phpunit": "^9.5",
"symfony/property-access": ">=5.4"
},
"autoload": {
"psr-4": {
"RZ\\TreeWalker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RZ\\TreeWalker\\": "src/",
"RZ\\TreeWalker\\Tests\\": "tests/"
}
}
}