forked from statikbe/craft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.6 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
{
"name": "statikbe/craft",
"description": "Craft CMS starter package, by Statik.be",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"type": "project",
"require": {
"php": ">=7.0.0",
"ext-json": "*",
"craftcms/cms": "3.6.17",
"craftcms/postmark": "2.1.0",
"craftcms/redactor": "2.8.7",
"hybridinteractive/craft-position-fieldtype": "1.0.17",
"mikehaertl/php-shellcommand": "^1.6",
"mmikkel/cp-field-inspect": "1.2.5",
"nystudio107/craft-imageoptimize": "1.6.34",
"solspace/craft-freeform": "3.11.6",
"statikbe/craft-config-values": "^1.0",
"statikbe/craft-cta-field": "^1.0",
"statikbe/craft-translate": "^1.0",
"studioespresso/craft-dumper": "2.0.0",
"studioespresso/craft-navigate": "2.7.7",
"studioespresso/craft-seo-fields": "1.2.3",
"verbb/element-index-defaults": "^1.0",
"verbb/expanded-singles": "1.1.3",
"verbb/formie": "1.4.6",
"verbb/super-table": "2.6.8",
"vlucas/phpdotenv": "^3.4.0"
},
"autoload": {
"psr-4": {
"modules\\statik\\": "modules/statik/src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php -r \"copy('.gitignore.example', '.gitignore');\"",
"@composer dump-autoload -o",
"@php craft setup/welcome"
]
}
}