forked from gilbitron/wordpress-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.53 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
49
50
51
52
53
54
55
56
57
{
"name": "impress/wordpress-skeleton",
"authors": [
{
"name": "Luis Giménez",
"email": "[email protected]",
"homepage": "https://impr.es"
}
],
"support": {
"issues": "http://URL-to-the-issue.tracker",
"wiki": "http://URL-to-the.wiki"
},
"type": "project",
"version": "1.0",
"homepage": "http://An-URL-to-the-website-of-the.project",
"readme": "README.md",
"description": "WordPress starter setup with deploy superpowers",
"license": "MIT",
"keywords": [
"wordpress",
"skeleton",
"starter",
"deployer"
],
"autoload": {
"files": [
"src/helpers.php"
]
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"composer/installers": "1.*",
"johnpbloch/wordpress": "5.*",
"vlucas/phpdotenv": "3.6",
"wpackagist-theme/twentynineteen": "*",
"wpackagist-plugin/wordpress-importer": "*",
"filp/whoops": "2.5.*",
"kint-php/kint": "3.2.*"
},
"extra": {
"wordpress-install-dir": "public/wp",
"installer-paths": {
"public/wp-content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"public/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"public/wp-content/themes/{$name}/": ["type:wordpress-theme"]
}
},
"require-dev": {
"deployer/deployer": "6.5.*"
}
}