-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
36 lines (36 loc) · 887 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": "eriktorsner/wp-bootstrap",
"description": "Utils for bootstrapping a WordPress installation",
"homepage": "https://github.com/eriktorsner/wp-bootstrap/",
"type": "wp-cli-package",
"keywords": [
"wordpress"
],
"license": "MIT",
"authors": [
{
"name": "Erik Torsner",
"email": "erik@torgesta.com",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/eriktorsner/wp-bootstrap/issues"
},
"require": {
"php": ">=5.3.9",
"symfony/yaml": "^2.8",
"vlucas/phpdotenv": "^2.2",
"pimple/pimple": "~3.0"
},
"require-dev": {
"10up/wp_mock": "dev-master"
},
"autoload": {
"psr-4": {
"Wpbootstrap\\": "src"
},
"files": ["wpcli.php"]
},
"bin": ["bin/wpbootstrap"]
}