forked from schmittjoh/JMSI18nRoutingBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
40 lines (40 loc) · 1.21 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
{
"name": "jms/i18n-routing-bundle",
"description": "This bundle allows you to create i18n routes.",
"keywords": ["translation","multilanguage","routing"],
"homepage": "http://jmsyst.com/bundles/JMSI18nRoutingBundle",
"type": "symfony-bundle",
"license": "Apache2",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "[email protected]"
},
{
"name": "Albert Casademont",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"symfony/framework-bundle": ">=5.4"
},
"require-dev": {
"sensio/framework-extra-bundle": "^6.2",
"symfony/symfony": "^5.4",
"phpunit/phpunit": "^9.0",
"doctrine/annotations": "^2.0",
"monolog/monolog": "^3.4",
"masterminds/html5": "^2.8"
},
"suggest": {
"jms/translation-bundle": "If you want to use the RouteTranslation extractor"
},
"autoload": {
"psr-0": { "JMS\\I18nRoutingBundle": "" }
},
"autoload-dev": {
"psr-0": { "JMS\\I18nRoutingBundle\\Tests": "Tests" }
},
"target-dir": "JMS/I18nRoutingBundle"
}