This repository was archived by the owner on Sep 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.44 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.44 KB
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
{
"name":"fructify/wordpress",
"type":"project",
"description": "Making WordPress Fruitful and Productive",
"homepage": "https://github.com/fructify/wordpress",
"keywords": ["fructify", "wordpress", "composer", "laravel"],
"license": "MIT",
"repositories":
[{
"type": "composer",
"url": "https://wpackagist.org"
}],
"require":
{
"consolidation/robo": "^1.0.0",
"gears/class-finder": "^1.0.1",
"gears/asset": "^1.3.1",
"wp-cli/wp-cli": "^1.1.0",
"fructify/robo": "^1.0.0",
"fructify/reload": "^1.0.0",
"fructify/theme": "dev-master",
"beelab/bowerphp": "^0.5.1",
"henrikbjorn/lurker": "^1.2.0",
"guzzlehttp/guzzle": "^6.2"
},
"autoload":
{
"psr-4":
{
"Tasks\\": "tasks/",
"Child\\": "wp-content/themes/child/lib/"
}
},
"scripts":
{
"post-create-project-cmd":
[
"chmod +x ./robo",
"./robo fructify:salts",
"./robo fructify:permissions"
],
"post-install-cmd":
[
"./robo fructify:install ^4.0",
"./vendor/bin/bowerphp install"
],
"post-update-cmd":
[
"./robo fructify:update ^4.0",
"./vendor/bin/bowerphp update || ./vendor/bin/bowerphp install"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}