-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 868 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
{
"name": "baelx/good-guitarist",
"description": "Good Guitarist Theme",
"license": "GPL-3.0",
"version": "1.0.0",
"authors": [
{
"name": "Alexander Wintschel",
"email": "awintsch@protonmail.com"
}
],
"require": {
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"wp-coding-standards/wpcs": "^2.3"
},
"autoload": {
"psr-4": { "GoodGuitarist\\": "./inc" },
"files": [ "./inc/Helpers.php" ]
},
"scripts": {
"test": ["@phpcs", "@parallel-lint"],
"phpcs": "phpcs",
"parallel-lint": "parallel-lint --blame --exclude vendor/ ."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}