-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 819 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 819 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
{
"name": "studiometa/twig-toolkit",
"description": "A set of useful extension and components for Twig.",
"license": "MIT",
"require": {
"php": "^8.1",
"twig/twig": "^3.0",
"jawira/case-converter": "^3.4",
"spatie/url": "^2.4"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"squizlabs/php_codesniffer": "^3.6",
"pestphp/pest": "^2.0|^3.0",
"spatie/pest-plugin-snapshots": "^2.0"
},
"scripts": {
"lint": ["@lint:style", "@lint:static"],
"lint:style": "phpcs",
"lint:static": "phpstan analyse --memory-limit=1024M",
"fix": ["@fix:style"],
"fix:style": "phpcbf",
"pest": "pest"
},
"autoload": {
"psr-4": {
"Studiometa\\TwigToolkit\\": "src/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}