-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.96 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
61
62
63
64
65
66
67
68
{
"name": "sylius/admin-ui",
"description": "Minimalist generic templates and routes for your admin panels",
"type": "library",
"require": {
"php": "^8.1",
"knplabs/knp-menu-bundle": "^3.0",
"sylius/twig-hooks": "^0.7",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/security-bundle": "^6.4 || ^7.0",
"symfony/security-http": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
"sylius/resource-bundle": "^1.11",
"twig/twig": "^2.15 || ^3.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.12",
"doctrine/orm": "^2.0",
"matthiasnoback/symfony-dependency-injection-test": "^5.1",
"phpunit/phpunit": "^9.6",
"sylius/grid-bundle": "^1.13",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/config": "^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/runtime": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0"
},
"suggest": {
"sylius/bootstrap-admin-ui": "^0.5"
},
"autoload": {
"psr-4": {
"Sylius\\AdminUi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sylius\\TwigHooks\\": "../TwigHooks/src/",
"TestApplication\\Sylius\\AdminUi\\": "tests/Functional/.application/src/",
"Tests\\Sylius\\AdminUi\\": "tests/"
}
},
"repositories": [
{
"type": "path",
"url": "../**"
}
],
"extra": {
"symfony": {
"require": "7.1.*"
},
"branch-alias": {
"dev-main": "0.7-dev"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
},
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}