-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathcomposer.json
60 lines (60 loc) · 1.68 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "lunetics/locale-bundle",
"description": "A Bundle for switching Languages",
"keywords": ["locale", "bundle", "multilanguage", "router", "browser", "cookie", "language"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Lunetics",
"homepage": "http://www.lunetics.com"
},
{
"name": "Christophe Willesmen",
"homepage": "http://christophewillemsen.com"
}
],
"require": {
"php": ">=7.2.5",
"symfony/framework-bundle": "^5.4 || ^6.0 ",
"symfony/intl": "^5.4 || ^6.0",
"symfony/templating": "^5.4 || ^6.0",
"symfony/validator": "^5.4 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"symfony/phpunit-bridge": ">=5.4",
"ext-intl": "*",
"twig/twig": "^1.41 || ^2.0 || ^3.0",
"symfony/form": "^5.4 || ^6.0",
"symfony/flex": "^1.0 || ^2.0",
"dg/bypass-finals": "^1.4"
},
"suggest": {
"ext-intl": "Needed for displaying the country name in the locale language"
},
"autoload": {
"psr-4": { "Lunetics\\LocaleBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Lunetics\\LocaleBundle\\Tests\\": "tests" }
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^5.4"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}