-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
44 lines (44 loc) · 1.22 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
{
"name": "sensiolabs/storybook-bundle",
"type": "library",
"license": "MIT",
"description": "Bundle to use Storybook with Symfony UX packages.",
"authors": [
{
"name": "Nicolas Rigaud",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Storybook\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Storybook\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"symfony/console": "^6.4|^7.0",
"symfony/filesystem": "^6.4|^7.0",
"symfony/twig-bundle": "^6.4|^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"symfony/asset-mapper": "^6.4|^7.0",
"symfony/browser-kit": "^6.4|^7.0",
"symfony/css-selector": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/phpunit-bridge": "^6.4|^7.0",
"symfony/stimulus-bundle": "^2.21",
"symfony/ux-live-component": "^2.21",
"symfony/ux-twig-component": "^2.21",
"symfonycasts/sass-bundle": "^0.5.1",
"symfonycasts/tailwind-bundle": "^0.5.0"
},
"conflict": {
"symfony/ux-twig-component": "2.17"
}
}