forked from themosis/themosis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.3 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
{
"name": "themosis/themosis",
"description": "The Themosis framework. A WordPress framework.",
"keywords": ["themosis", "framework", "WordPress"],
"license": "GPL-2.0+",
"authors": [
{
"name": "Julien Lambé",
"email": "[email protected]",
"homepage": "http://www.themosis.com/"
}
],
"type": "project",
"repositories":[
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"autoload": {
"psr-0": {
"Thms": "library"
}
},
"config": {
"preferred-install": "dist"
},
"require": {
"php": ">=5.6.4",
"johnpbloch/wordpress-core-installer": "~0.2",
"johnpbloch/wordpress-core": "^4.7.3",
"themosis/framework": "^1.3.0",
"themosis/theme": "^1.3.0",
"vlucas/phpdotenv": "^2.2",
"filp/whoops": "^2.1",
"illuminate/database": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "5.3.*"
},
"extra":{
"installer-paths":{
"htdocs/content/mu-plugins/themosis-{$name}/": ["themosis/framework"],
"htdocs/content/plugins/{$name}/": ["type:wordpress-plugin"],
"htdocs/content/themes/themosis-{$name}/": ["themosis/theme"],
"htdocs/content/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": {
"johnpbloch/wordpress-core": "htdocs/cms"
}
}
}