This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "paul/offset-kickstart",
"description": "A full stack WP install with cool defaults + Offset theme",
"license": "MIT",
"authors": [
{
"name": "Paul Graham",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "http://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "wordpress/wordpress",
"type": "webroot",
"version": "3.8.1",
"dist": {
"type": "zip",
"url": "https://github.com/WordPress/WordPress/archive/3.8.1.zip"
}
},
"require": {
"fancyguy/webroot-installer": "1.1.0"
}
},
{
"type": "package",
"package": {
"name": "bytefair/offset",
"version": "0.2.3",
"type": "wordpress-theme",
"source": {
"type": "git",
"url": "https://github.com/bytefair/offset.git",
"reference": "0.2.3"
}
},
"require": {
"composer/installers": "1.0.12"
}
}
],
"require": {
"composer/installers": "1.0.12",
"fancyguy/webroot-installer": "1.1.0",
"wordpress/wordpress": "3.8.*",
"vlucas/phpdotenv": "~1.0.6",
"bytefair/offset": "~0.2.1",
"wpackagist-plugin/timber": "~0.8"
},
"require-dev": {
"wpackagist-plugin/developer": "~1.2.5"
},
"extra": {
"installer-paths": {
"app/plugins/{$name}/": ["type:wordpress-plugin"],
"app/themes/{$name}/": ["type:wordpress-theme"],
"app/mu-plugins/{$name}/": ["type:wordpress-muplugin"]
},
"webroot-dir": "wordpress",
"webroot-package": "wordpress/wordpress"
}
}