forked from schmittjoh/JMSI18nRoutingBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 1.03 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
{
"name": "gjuric/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": "Apache-2.0",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "schmittjoh@gmail.com"
},
{
"name": "Albert Casademont",
"email": "albertcasademont@gmail.com"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": ">=4.4"
},
"require-dev": {
"sensio/framework-extra-bundle": "*",
"symfony/symfony": "^4.4|^5.0|^6.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"suggest": {
"jms/translation-bundle": "If you want to use the RouteTranslation extractor"
},
"autoload": {
"psr-0": { "JMS\\I18nRoutingBundle": "" }
},
"target-dir": "JMS/I18nRoutingBundle"
}