-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
81 lines (81 loc) · 1.98 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
74
75
76
77
78
79
80
81
{
"name": "danieladarve/craft-startup-kit",
"description": "CraftCMS 3 Startup Boilerplate Kit",
"keywords": [
"craft",
"cms",
"craftcms",
"project",
"boilerplate",
"postcss",
"laravel-mix",
"tailwind",
"alpinejs"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Gonzalez Adarve",
"email": "dgonzalezad@gmail.com"
}
],
"support": {
"email": "support@craftcms.com",
"issues": "https://github.com/craftcms/cms/issues",
"forum": "https://craftcms.stackexchange.com/",
"source": "https://github.com/craftcms/cms",
"docs": "https://craftcms.com/docs",
"rss": "https://craftcms.com/changelog.rss"
},
"require": {
"aelvan/imager": "dev-dev-fix-deprecations as 2.4.0",
"carlcs/craft-redactorcustomstyles": "^3.0",
"craftcms/cms": "3.5.12.1",
"craftcms/redactor": "2.8.1",
"ether/seo": "^3.6",
"mmikkel/cp-field-inspect": "^1.2",
"mmikkel/retcon": "^2.2",
"nystudio107/craft-minify": "^1.2",
"olivestudio/craft-olivemenus": "^1.2",
"putyourlightson/craft-sendgrid": "^1.2",
"sebastianlenz/linkfield": "^1.0",
"verbb/cp-nav": "3.0.13.1",
"verbb/field-manager": "2.2.0",
"verbb/image-resizer": "^2.0",
"verbb/super-table": "2.6.3",
"vlucas/phpdotenv": "^3.4.0",
"xpertbot/craft-wheelform": "^2.5"
},
"require-dev": {
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.0"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@composer dump-autoload -o",
"chmod -R 775 storage",
"@php craft setup/welcome",
"yarn install"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/danieladarve/Imager-Craft"
}
]
}