forked from getsuzie/suzie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·41 lines (41 loc) · 891 Bytes
/
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
{
"name": "getsuzie/suzie",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"autoload": {
"psr-4": {
"Suzie\\": "suzie/"
},
"files": [
"suzie/bootstrap/app.php"
]
},
"require": {
"johnpbloch/wordpress": "4.2.*",
"vlucas/phpdotenv": "1.1.*",
"league/flysystem": "~1.0",
"league/flysystem-aws-s3-v2": "~1.0",
"league/flysystem-sftp": "~1.0",
"mailgun/mailgun-php": "~1.7.2",
"mtdowling/cron-expression": "~1.0",
"nesbot/carbon": "~1.18"
},
"extra": {
"installer-paths": {
"public/content/plugins/{$name}/": ["type:wordpress-plugin"]
},
"wordpress-install-dir": "public/wordpress"
},
"scripts": {
"post-install-cmd": [
"env php suzie/bootstrap/cdn.php"
],
"post-update-cmd": [
"env php suzie/bootstrap/cdn.php"
]
}
}