-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.19 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": "vanpattenmedia/vpmframe-slimwp",
"description": "Proof-of-concept blend between Slim and WP",
"type": "project",
"license": "BSD-3-Clause",
"config": {
"vendor-dir": "vendor/composer"
},
"authors": [
{
"name": "Chris Van Patten",
"email": "chris@vanpattenmedia.com"
}
],
"repositories": [
{
"type": "composer",
"url" : "https://wpackagist.org"
}
],
"require": {
"slim/slim": "^3.1",
"slim/twig-view": "^2.0",
"slim/flash": "*",
"monolog/monolog": "^1.17",
"twig/twig": "1.*",
"twig/extensions": "^1.4",
"oscarotero/psr7-middlewares": "^3.16",
"johnpbloch/wordpress": "^4.7"
},
"autoload": {
"psr-4": {
"App\\": [
"app/Models/"
],
"App\\Controllers\\": [
"app/Controllers/"
],
"App\\Middleware\\": [
"app/Middleware/"
]
}
},
"extra": {
"wordpress-install-dir": "public/wp",
"installer-paths": {
"public/wp-content/plugins/{$name}": ["type:wordpress-plugin"],
"public/wp-content/mu-plugins/{$name}": ["type:wordpress-muplugin"],
"public/wp-content/themes/{$name}": ["type:wordpress-theme"]
}
}
}