forked from digitalmeat/themosis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.95 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
{
"name": "freshwork/themosis",
"description": "The Themosis framework. A WordPress framework.",
"keywords": ["themosis", "framework", "WordPress", "freshwork"],
"authors": [
{
"name": "Gonzalo De Spirito",
"email": "[email protected]",
"homepage": "https://freshwork.cl/"
},
{
"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",
"vlucas/phpdotenv": "^2.2",
"filp/whoops": "^2.1",
"illuminate/database": "^5.3",
"meat/envoy-helper": "^0.1.2",
"wpackagist-plugin/wp-sanitize-file-name-plus": "1.0.3",
"wpackagist-plugin/wp-super-cache": "^1.4",
"wpackagist-plugin/wordpress-seo": "^7.8",
"wpackagist-plugin/minify-html-markup": "^1.98"
},
"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"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-update-cmd": ["php -r \"@unlink('htdocs/cms/xmlrpc.php');\""],
"post-install-cmd": ["php -r \"@unlink('htdocs/cms/xmlrpc.php'); file_exists('.env') || copy('.env.example', '.env');\""]
}
}