forked from schmittjoh/object-routing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (35 loc) · 946 Bytes
/
composer.json
File metadata and controls
41 lines (35 loc) · 946 Bytes
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
{
"name": "webfactory/object-routing",
"description": "Library for generating routes based on objects.",
"license": "Apache-2.0",
"replace": {
"jms/object-routing": "<= 1.0.0"
},
"require": {
"php": ">= 8.1",
"jms/metadata": "^2.6.1",
"symfony/expression-language": "^6.4 || ^7.3 || ^8.0",
"symfony/property-access": "^6.4 || ^7.3 || ^8.0"
},
"require-dev": {
"doctrine/common": "^2.2 || ^3.0",
"phpunit/phpunit": "^10.5.58",
"symfony/error-handler": "^6.4 || ^7.3 || ^8.0",
"symfony/routing": "^6.4 || ^7.3 || ^8.0",
"symfony/yaml": "^6.4 || ^7.3 || ^8.0",
"twig/twig": "^2.0 || ^3.0"
},
"conflict": {
"twig/twig": "^1.0"
},
"autoload": {
"psr-0": {
"JMS": "src/"
}
},
"autoload-dev": {
"psr-0": {
"JMS\\Tests": "tests/"
}
}
}