-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 957 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
{
"name": "stefanfisk/example-acorn-project",
"description": "",
"type": "project",
"authors": [
{
"name": "Stefan Fisk",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php",
"app/View/helpers.php"
]
},
"require": {
"roots/acorn": "^1.1",
"vlucas/phpdotenv": "^4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"filp/whoops": "^2.9",
"laminas/laminas-coding-standard": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"sirbrillig/phpcs-variable-analysis": "^3.0",
"wp-cli/wp-cli-bundle": "^2.4",
"wp-coding-standards/wpcs": "*"
}
}