forked from bruno-barros/w.eloquent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.29 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
{
"name": "es02/w.eloquent",
"description": "Wordpress integrated with Laravel via Composer. Together, but independent.",
"keywords": [
"Laravel",
"framework",
"WordPress"
],
"license": "GPL-2.0+",
"authors": [
{
"name": "Bruno Barros",
"email": "[email protected]",
"homepage": "http://www.brunobarros.com/"
}
],
"type": "project",
"autoload": {
"files": [
],
"classmap": [
],
"psr-4": {
"App\\": "src/themes/base/app",
"Starter\\": "src/themes/starter/app"
}
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"require": {
"php": ">=5.4",
"johnpbloch/wordpress": "5.1.*",
"es02/w.eloquent-framework": "1.4.*",
"brain/amygdala": "^0.1.0",
"brain/striatum": "^0.1.0",
"brain/occipital": "^0.1.0",
"brain/cortex": "^0.1.0"
},
"require-dev": {
"mockery/mockery": "*",
"10up/wp_mock": "dev-master",
"laracasts/integrated" : "0.15.6"
},
"extra": {
"installer-paths": {
"src/plugins/{$name}/": ["type:wordpress-plugin"],
"src/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"src/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "cms"
},
"minimum-stability": "dev",
"prefer-stable": true
}