-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 838 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 838 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
{
"name": "knapsack/plugin",
"description": "Knapsack WordPress starter theme",
"license": "MIT",
"autoload": {
"psr-4": {
"Skeleton\\": "app/"
},
"files": [
"app/Support/helpers.php"
]
},
"authors": [
{
"name": "Gianluca Riggio",
"email": "luca@maximumawesome.nl"
}
],
"require": {
"php": "^7.4|^8.0",
"knapsack/framework": "^0.0.5"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.1",
"filp/whoops": "^2.15",
"symfony/var-dumper": "^5.4",
"friendsofphp/php-cs-fixer": "^3.16"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --memory-limit=2G",
"fix": "vendor/bin/pint"
}
}