-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 898 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 898 Bytes
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
{
"name": "mak/css-module-bundle",
"type": "symfony-bundle",
"description": "A Symfony bundle to use css-modules with twig and webpack encore",
"keywords": ["twig", "css-modules", "bundle"],
"homepage": "https://twig.symfony.com",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Matthias Krauser",
"email": "matthias@krauser.eu"
}
],
"require": {
"php": ">=8.2",
"symfony/config": "^6.4|^7.0|^8.0",
"symfony/framework-bundle": "^6.4|^7.0|^8.0",
"symfony/twig-bundle": "^6.4|^7.0|^8.0",
"twig/twig": "^3.12"
},
"require-dev": {
"rector/rector": "^2.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.2@dev"
},
"autoload": {
"psr-4" : { "Mak\\CssModuleBundle\\" : "." },
"exclude-from-classmap": [
"/Tests/"
]
},
"conflicts": {
"sensiolabs/storybook-bundle": "*"
}
}