-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
73 lines (73 loc) · 2.21 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
69
70
71
72
73
{
"name": "sylius/twig-hooks",
"description": "Composable Twig layouts",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sylius project",
"homepage": "https://sylius.com"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Sylius/Stack/contributors"
}
],
"require": {
"php": "^8.1",
"laminas/laminas-stdlib": "^3.18",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/expression-language": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/stopwatch": "^6.4 || ^7.0",
"symfony/ux-live-component": "^2.17",
"symfony/ux-twig-component": "^2.17",
"symfony/twig-bundle": "^6.4 || ^7.0",
"twig/twig": "^2.15 || ^3.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"symfony/console": "^6.4 || ^7.0",
"symfony/dom-crawler": "^6.4 || ^7.0",
"symfony/dotenv": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/runtime": "^6.4 || ^7.0",
"symfony/translation": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
"symfony/web-profiler-bundle": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0",
"matthiasnoback/symfony-config-test": "^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^5.1",
"phpunit/phpunit": "^9.6"
},
"suggest": {
"symfony/ux-twig-component": "Symfony's package providing Twig components."
},
"autoload": {
"psr-4": {
"Sylius\\TwigHooks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TestApplication\\Sylius\\TwigHooks\\": "tests/Functional/.application/src/",
"Tests\\Sylius\\TwigHooks\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"extra": {
"symfony": {
"require": "7.1.*"
},
"branch-alias": {
"dev-main": "0.6-dev"
}
}
}