-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 888 Bytes
/
composer.json
File metadata and controls
47 lines (47 loc) · 888 Bytes
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
{
"require": {
"craftcms/cms": "^4.2.7",
"delaneymethod/utilities": "^1.0",
"jawira/case-converter-twig": "dev-master",
"twig/string-extra": "3.x-dev",
"vlucas/phpdotenv": "^5.4.0"
},
"license": "MIT",
"repositories": [
{
"type": "path",
"url": "./plugins/delaneymethod/utilities"
}
],
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"minimum-stability": "dev",
"require-dev": {
"yiisoft/yii2-shell": "^2.0.3"
},
"authors": [
{
"name": "DelaneyMethod",
"email": "hello@delaneymethod.com"
}
],
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.0.2"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example.dev', '.env');\""
]
}
}