This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
47 lines (47 loc) · 1.61 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
{
"name": "symfony-cmf/routing-auto",
"description": "Component for automatically creating and managing routes for persisted objects",
"homepage": "http://cmf.symfony.com",
"license": "MIT",
"authors": [
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/symfony-cmf/contributors"
}
],
"require": {
"php": "^7.2",
"symfony-cmf/slugifier-api": "^1.0 || ^2.0",
"symfony-cmf/routing": "^1.2 || ^2.0",
"symfony/options-resolver": "^2.8 || ^3.3 || ^4.0",
"symfony/config": "^2.8 || ^3.3 || ^4.0",
"jms/metadata": "^2.1"
},
"require-dev": {
"symfony/yaml": "^2.8 || ^3.3 || ^4.0",
"symfony/dependency-injection": "^2.8 || ^3.3 || ^4.0",
"symfony/event-dispatcher": "^2.8 || ^3.3 || ^4.0",
"symfony/phpunit-bridge": "^3.3 || ^4.0",
"symfony-cmf/testing": "^2.1.8"
},
"suggest": {
"symfony/yaml": "To be able to load Yaml configuration files (^2.8 || ^3.3 || ^4.0)",
"symfony-cmf/routing-auto-bundle": "To integrate this libary with Symfony and the CMF",
"symfony/event-dispatcher": "To use the EventDispatchingAdapter, allowing to edit the AutoRoute documents (^2.8 || ^3.3 || ^4.0)"
},
"autoload": {
"psr-4": {
"Symfony\\Cmf\\Component\\RoutingAuto\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Cmf\\Component\\RoutingAuto\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}