-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.01 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
{
"name": "gregrickaby/classic-wordpress-theme",
"description": "A classic PHP-based theme, with modern tooling and support for Gutenberg blocks.",
"type": "wordpress-theme",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Greg Rickaby",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"composer/installers": "^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-cli/wp-cli-bundle": "^2.5",
"wp-coding-standards/wpcs": "^2.3"
},
"scripts": {
"format": "./vendor/bin/phpcbf --report=summary,source",
"lint": "./vendor/bin/phpcs --report=summary,source",
"pot": "./vendor/bin/wp i18n make-pot . build/languages/classic.pot --exclude=node_modules,vendor,build --allow-root"
}
}