-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.13 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": "adriansuter/twig-cache-busting",
"type": "library",
"description": "Twig Cache Busting is an add-on for Twig to support cache busting on template compilation.",
"keywords": [
"twig",
"cache",
"cache busting"
],
"license": "MIT",
"authors": [
{
"name": "Adrian Suter",
"email": "[email protected]",
"homepage": "https://www.adriansuter.ch/"
}
],
"require": {
"php": "^8",
"twig/twig": "^3.5"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpspec/prophecy-phpunit": "^2.2",
"phpstan/phpstan": "^1.12 || ^2.0",
"squizlabs/php_codesniffer": "^3.10"
},
"autoload": {
"psr-4": {
"AdrianSuter\\TwigCacheBusting\\": "src",
"AdrianSuter\\TwigCacheBusting\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"@phpunit",
"@phpcs",
"@phpstan"
],
"phpunit": "phpunit",
"phpcs": "phpcs",
"phpstan": "phpstan analyse src --memory-limit=-1 --xdebug"
}
}