-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
62 lines (62 loc) · 1.83 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
{
"name": "craftcms/demo-europa-museum",
"description": "Europa Museum Demo",
"keywords": [
"craft",
"cms",
"craftcms",
"project",
"demo",
"starter"
],
"license": "0BSD",
"homepage": "https://craftcms.com/demo",
"type": "project",
"support": {
"email": "[email protected]",
"issues": "https://github.com/craftcms/demo-europa-museum/issues",
"forum": "https://craftcms.stackexchange.com/",
"source": "https://github.com/craftcms/demo-europa-museum",
"docs": "https://github.com/craftcms/demo-europa-museum"
},
"require": {
"bref/bref": "^2.0",
"craftcms/aws-s3": "^2.2.0",
"craftcms/ckeditor": "^4.0.0-beta.4",
"craftcms/cms": "^5.0.0-beta.1",
"craftcms/yii2-dynamodb": "^2.0.0",
"fakerphp/faker": "^1.14",
"nystudio107/craft-seomatic": "^5.0.0-beta.1",
"nystudio107/craft-twigpack": "v5.x-dev",
"solspace/craft-freeform": "^5",
"vlucas/phpdotenv": "^5.6.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"modules\\demos\\": "modules/demos/src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php craft db/restore seed.sql > /dev/null 2>&1",
"@php craft demos/seed > /dev/null 2>&1"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/AugustMiller/craft-twigpack"
}
],
"prefer-stable": true
}