-
Notifications
You must be signed in to change notification settings - Fork 108
/
composer.json
36 lines (36 loc) · 974 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": "alecaddd/awps",
"description": "Alecaddd WordPress Starter Theme for savvy developers",
"keywords": ["WordPress", "Theme", "Starter"],
"homepage": "https://github.com/Alecaddd/awps",
"license": "GPL-3.0",
"version": "4.0.0",
"authors": [
{
"name": "Alessandro Castellani",
"email": "[email protected]",
"homepage": "https://alecaddd.com",
"role": "Developer"
}
],
"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",
"wptrt/wpthemereview": "^0.2.1"
},
"autoload": {
"psr-4": { "Awps\\": "./inc" },
"files": [ "./inc/Helpers.php" ]
},
"scripts": {
"test": ["@phpcs", "@parallel-lint"],
"phpcs": "phpcs",
"parallel-lint": "parallel-lint --blame --exclude vendor/ ."
}
}