-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.23 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
{
"name": "sylius/ui-translations",
"description": "Basic UI translations",
"type": "library",
"require": {
"php": "^8.1",
"symfony/translation": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/css-selector": "^6.4 || ^7.0",
"symfony/dotenv": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
"twig/twig": "^2.15 || ^3.0"
},
"autoload": {
"psr-4": {
"Sylius\\UiTranslations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TestApplication\\Sylius\\UiTranslations\\": "tests/Functional/.application/src/",
"Tests\\Sylius\\UiTranslations\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
},
"sort-packages": true
},
"extra": {
"symfony": {
"require": "7.1.*"
},
"branch-alias": {
"dev-main": "0.6-dev"
}
}
}