This repository was archived by the owner on Nov 10, 2023. 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
executable file
·119 lines (117 loc) · 3.15 KB
/
composer.json
File metadata and controls
executable file
·119 lines (117 loc) · 3.15 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name":"mindtwo/wordpress-lumen",
"description":"WordPress/Lumen starter setup",
"minimum-stability":"stable",
"license":"proprietary",
"authors":[
{
"name":"mindtwo GmbH",
"email":"info@mindtwo.de",
"homepage":"http://www.mindtwo.de/"
}
],
"require":{
"laravel/lumen-framework":"5.2.*",
"illuminate/config":"5.2.*",
"illuminate/support":"5.2.*",
"phpmailer/phpmailer":"5.2.*",
"vlucas/phpdotenv":"~2.2",
"mandrill/mandrill":"~1.0",
"jenssegers/agent":"2.*",
"hampel/json":"2.*",
"twig/twig":"1.*",
"bugsnag/bugsnag":"~2.0",
"johnpbloch/wordpress":"~4.5",
"wpackagist-plugin/w3-total-cache":"*",
"wpackagist-plugin/google-sitemap-generator":"*",
"wpackagist-plugin/force-regenerate-thumbnails":"*",
"koodimonni-language/de_DE": "*",
"mindtwo/advanced-custom-fields-pro": "*",
"mindtwo/wp-migrate-db-pro": "*",
"mindtwo/wp-migrate-db-pro-cli": "*",
"mindtwo/advanced-post-types-order": "*",
"timber/timber": "^1.1"
},
"require-dev": {
"laravel/envoy": "~1.0",
"phpunit/phpunit": "~4.0",
"fzaninotto/faker": "~1.0"
},
"autoload":{
"psr-4":{
"App\\":"lumen/app/",
"WpTheme\\":"public/content/themes/default/classes/"
},
"classmap":[
"lumen/database/"
],
"files":[
"lumen/app/Http/helpers.php"
]
},
"autoload-dev":{
"classmap":[
"lumen/tests/"
]
},
"config":{
"preferred-install":"dist",
"vendor-dir":"lumen/vendor",
"secure-http":false
},
"repositories":[
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://languages.koodimonni.fi"
},
{
"type": "composer",
"url": "https://COMPOSER_MINDTWO_DE_USERNAME:COMPOSER_MINDTWO_DE_PASSWORD@composer.mindtwo.de"
}
],
"scripts":{
"post-install-cmd":[
],
"post-update-cmd":[
],
"devInstallBowerDependencies":"bower install",
"devUpdateBowerDependencies":"bower update",
"devInstallNpmDependencies":"npm install",
"devUpdateNpmDependencies":"npm update"
},
"extra":{
"wordpress-install-dir":"public/wordpress",
"installer-paths": {
"public/content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"public/content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"public/content/themes/{$name}/": [
"type:wordpress-theme"
],
"resources/assets/sass/libs/{$name}/": [
"type:css-library"
],
"resources/assets/js/libs/{$name}/": [
"type:js-library"
]
},
"dropin-paths": {
"public/content/languages/": [
"vendor:language"
],
"public/content/languages/plugins/": [
"vendor:plugin-language"
],
"public/content/languages/themes/": [
"vendor:theme-language"
]
}
}
}