-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.11 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
{
"name": "lcharette/webpack-encore-twig",
"type": "library",
"description": "Webpack Encore Standalone Twig Functions",
"homepage": "https://github.com/lcharette/webpack-encore-twig",
"license": "MIT",
"authors": [
{
"name": "Louis Charette",
"homepage": "https://bbqsoftwares.com",
"email": "hello@bbqsoftwares.com"
}
],
"require": {
"php": "^8.0",
"symfony/webpack-encore-bundle": "^1.13|^2.1",
"twig/twig": "^3.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"slam/phpstan-extensions": "^6.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Lcharette\\WebpackEncoreTwig\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lcharette\\WebpackEncoreTwig\\Tests\\": "tests/"
}
}
}