-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 935 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
{
"require": {
"craftcms/cms": "3.1.33",
"vlucas/phpdotenv": "^2.4.0",
"lukeyouell/craft-queue-manager": "1.1.0",
"aelvan/imager": "v2.1.4",
"craftcms/aws-s3": "1.2.3",
"studioespresso/craft-dumper": "2.0.0",
"moliski/backend-google-analytics": "^0.0.1",
"moliski/awsimagetransform": "^1.0.0",
"yiisoft/yii2-debug": "^2.1"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.0"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"minimum-stability":"dev",
"prefer-stable":true,
"repositories":[
{
"type":"path",
"url":"/var/www/craft/plugin_dev/google_analytics_backend"
},
{
"type":"path",
"url":"/var/www/craft/plugin_dev/awsimagetransform"
}
]
}