forked from themosis/themosis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
73 lines (73 loc) · 2.07 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
69
70
71
72
73
{
"name": "digitalmeat/themosis",
"description": "The Themosis framework. A WordPress framework.",
"keywords": ["themosis", "framework", "WordPress"],
"license": "GPL-2.0+",
"authors": [
{
"name": "Digital MEAT",
"email": "[email protected]",
"homepage": "https://meat.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",
"sort-packages": true,
"optimize-autoloader": true
},
"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/admin-menu-editor": "1.7.3",
"wpackagist-plugin/wordpress-seo": "4.*",
"wpackagist-plugin/minify-html-markup": "1.*",
"wpackagist-plugin/wp-sanitize-file-name-plus": "1.0.3",
"wpackagist-plugin/wp-super-cache": "^1.4",
"meat/themosis-setup-theme": "^0.1.0",
"mandrill/mandrill": "^1.0"
},
"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');\""]
}
}