-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 995 Bytes
/
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": "studiometa/ui",
"version": "1.0.0-beta.0",
"description": "A set of opiniated, unstyled and accessible components.",
"license": "MIT",
"require": {
"php": "^8.1",
"iconify/json": "^2.2",
"iconify/json-tools": "^1.0",
"studiometa/twig-toolkit": "^2.0",
"twig/twig": "^3.0"
},
"require-dev": {
"mallardduck/prettier-php-runner": "^1.0",
"pestphp/pest": "^2.0|^3.0",
"phpstan/phpstan": "^2.1",
"spatie/pest-plugin-snapshots": "^2.0",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"lint": [
"@lint:style",
"@lint:static"
],
"lint:style": "phpcs",
"lint:static": "phpstan analyse --memory-limit=1024M",
"fix": [
"@fix:style"
],
"fix:style": "phpcbf",
"test": "pest"
},
"autoload": {
"psr-4": {
"Studiometa\\Ui\\": "packages/twig-extension"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}