-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.46 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
{
"name": "acalvino4/craft-boilerplate",
"description": "A modern, opinionated Craft CMS boilerplate repo",
"version": "0.1.1",
"homepage": "https://github.com/acalvino4/craft-boilerplate",
"license": "MIT",
"authors": [
{
"name": "Augustine Calvino",
"homepage": "https://github.com/acalvino4"
}
],
"require": {
"acalvino4/craft-easy-image": "1.0.0",
"acalvino4/craft-embed-implicit-default": "1.0.1",
"craftcms/cms": "4.4.17",
"nystudio107/craft-seomatic": "4.0.30",
"nystudio107/craft-vite": "4.0.6",
"trendyminds/craft-palette": "3.2.2",
"verbb/navigation": "2.0.20",
"vlucas/phpdotenv": "^5.4.0",
"yiisoft/yii2-redis": "^2.0"
},
"require-dev": {
"acalvino4/craft-twig-ruleset": "^1.0",
"craftcms/ecs": "dev-main",
"craftcms/generator": "^1.3",
"craftcms/phpstan": "dev-main",
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true,
"treeware/plant": true
},
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.2"
}
},
"scripts": {
"post-create-project-cmd": [
"./bootstrap.sh"
],
"test": "ecs check --ansi && phpstan --memory-limit=1G && twigcs",
"fix": "ecs check --ansi --fix"
},
"minimum-stability": "dev",
"prefer-stable": true
}