-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 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
{
"name": "sylius/bootstrap-admin-ui",
"description": "Build your Bootstrap admin panels with Sylius and Symfony UX",
"type": "library",
"require": {
"php": "^8.1",
"pagerfanta/twig": "^4.6",
"sylius/admin-ui": "^0.6",
"sylius/grid-bundle": "^1.13",
"sylius/resource-bundle": "^1.11",
"sylius/twig-extra": "^0.6",
"sylius/twig-hooks": "^0.6",
"symfony/asset": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/http-client": "^6.4 || ^7.0",
"symfony/security-bundle": "^6.4 || ^7.0",
"symfony/ux-autocomplete": "^2.17",
"symfony/ux-icons": "^2.20",
"symfony/ux-live-component": "^2.17"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.12",
"doctrine/orm": "^2.0",
"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/runtime": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"Sylius\\BootstrapAdminUi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sylius\\TwigHooks\\": "../TwigHooks/src/",
"TestApplication\\Sylius\\BootstrapAdminUi\\": "tests/Functional/.application/src/",
"Tests\\Sylius\\BootstrapAdminUi\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
},
"sort-packages": true
},
"repositories": [
{
"type": "path",
"url": "../**"
}
],
"extra": {
"symfony": {
"require": "7.1.*"
},
"branch-alias": {
"dev-main": "0.6-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}