-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.29 KB
/
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
{
"name": "lpwp/wp-gatsby-theme",
"description": "Jamstack portfolio theme made for Gatsby",
"version": "0.1.1",
"type": "wordpress-theme",
"homepage": "https://github.com/Laurent-PANEK/portfolio-wp-theme",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "Laurent Panek",
"homepage": "https://laurentpanek.me",
"role": "Developer"
},
{
"name": "Abdessalam Benharira",
"homepage": "https://abdessalam.dev/",
"role": "Developer"
}
],
"require-dev": {
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-paragonie": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "*",
"phpunit/phpunit": "7.*"
},
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"git clone --quiet --branch 5.8.4 https://github.com/wp-premium/advanced-custom-fields-pro vendor/advanced-custom-fields-pro",
"cd vendor/advanced-custom-fields-pro && git checkout -b 5.8.4"
],
"test": "phpunit",
"check": "phpcs . --colors --report=summary",
"verify": "phpcs . --colors",
"format": "phpcbf ."
}
}