-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.12 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
{
"name": "wirelab/wirecraft",
"description": "Standard Craft install for Wirelab projects",
"version": "1.5.0",
"authors": [
{
"name": "Wirelab",
"email": "[email protected]",
"homepage": "https://wirelab.nl"
}
],
"minimum-stability": "stable",
"license": "MIT",
"require": {
"php": "^8.0",
"craftcms/cms": "^3.7.13",
"ether/seo": "^3.6.2",
"craftcms/redactor": "^2.4.0",
"vlucas/phpdotenv": "^5.3",
"spicyweb/craft-neo": "2.13.15",
"verbb/icon-picker": "^1.1"
},
"require-dev": {
"symplify/easy-coding-standard": "^9.4"
},
"autoload": {
"psr-4": {
"modules\\sitemodule\\": "modules/sitemodule/src"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}