-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.41 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.41 KB
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
82
83
84
{
"name": "statikbe/craft",
"description": "Craft CMS starter package, by Statik.be",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"type": "project",
"require": {
"php": ">=8.4",
"ext-json": "*",
"craftcms/ckeditor": "^5.5.0",
"craftcms/cms": "^5.9.23",
"craftcms/postmark": "^3.1.0",
"craftpulse/craft-password-policy": "^5.1.2",
"hybridinteractive/craft-position-fieldtype": "^5.0.0",
"hybridinteractive/craft-width-fieldtype": "^5.0.0",
"jaybizzle/crawler-detect": "^1.3.11",
"mikehaertl/php-shellcommand": "^1.7",
"miranj/craft-obfuscator": "^1.2.0",
"mostlyserious/craft-markerio": "^2.2",
"nystudio107/craft-vite": "5.0.1",
"statikbe/craft-config-values": "5.3.0",
"statikbe/craft-cookie-banner": "^5.2.1",
"statikbe/craft-sentry": "5.1.2",
"statikbe/craft-translate": "^5.1.0",
"statikbe/craft-video-parser": "^5.0.1",
"studioespresso/craft-dumper": "5.0.1",
"studioespresso/craft-navigate": "^5.1.6",
"studioespresso/craft-seo-fields": "^5.4.5",
"vanderlee/syllable": "^1.9",
"verbb/element-index-defaults": "4.0.1",
"verbb/expanded-singles": "3.0.3",
"verbb/formie": "^3.1.24",
"verbb/hyper": "^2.3.7",
"verbb/image-resizer": "^4.0.6",
"verbb/knock-knock": "3.0.5",
"verbb/tablemaker": "^5.0.9",
"vlucas/phpdotenv": "^5.6.3"
},
"autoload": {
"psr-4": {
"modules\\statik\\": "modules/statik/src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"craftcms/plugin-installer": true,
"php-http/discovery": true,
"statikbe/craft-cookie-banner-installer": true,
"yiisoft/yii2-composer": true
}
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"post-create-project-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php -r \"copy('.gitignore.example', '.gitignore');\"",
"ddev config",
"ddev start",
"ddev composer dump-autoload -o",
"ddev craft setup/welcome"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"repositories": [
{
"type": "composer",
"url": "https://composer.craftcms.com",
"canonical": false
}
]
}