-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.12 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.12 KB
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": "locastic/symfony-translation-bundle",
"description": "Symfony translation bundle",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Stéphane DECOCK",
"email": "stephane@locastic.com"
}
],
"keywords": [
"symfony",
"symfony-bundle",
"translations"
],
"require": {
"php": ">=7.4 || >=8.1",
"doctrine/doctrine-bundle": "^2.5",
"doctrine/doctrine-migrations-bundle": "^3.2",
"symfony/console": "5.4.* || 6.*",
"symfony/http-kernel": "5.4.* || 6.*",
"symfony/property-access": "5.4.* || 6.*",
"symfony/translation": "5.4.* || 6.*",
"symfony/yaml": "5.4.* || 6.*",
"twig/twig": "2.15.* || ^3.5",
"pagerfanta/pagerfanta": "^2.6 || ^3.6 || ^4.0",
"symfony/form": "5.4.* || 6.*"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Locastic\\SymfonyTranslationBundle\\": "src/",
"Locastic\\SymfonyTranslationBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"conflict": {
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13"
}
}