-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.11 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
43
44
45
46
47
48
{
"name": "wp-forge/wp-scaffolding-tool",
"description": "A zero-config scaffolding tool for WordPress.",
"type": "library",
"homepage": "https://github.com/wp-forge/wp-scaffolding-tool",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Micah Wood",
"email": "[email protected]",
"homepage": "https://wpscholar.com"
}
],
"require": {
"php": ">=7.0",
"league/climate": "^3.7",
"league/flysystem": "^2.1",
"mustache/mustache": "^2.13",
"wpscholar/collection": "^1.0",
"wp-forge/container": "^1.0",
"wp-forge/data-store": "^1.1",
"wp-forge/helpers": "^2.0"
},
"require-dev": {
"wpscholar/phpcs-standards-wpscholar": "^1.0"
},
"autoload": {
"files": [
"includes/functions.php"
],
"psr-4": {
"WP_Forge\\WP_Scaffolding_Tool\\": "includes"
}
},
"scripts": {
"lint": [
"vendor/bin/phpcs --standard=phpcs.xml -s ."
],
"fix": [
"vendor/bin/phpcbf --standard=phpcs.xml -s ."
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}