-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.22 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
{
"name": "thenightswatch/website",
"description": "The Night's Watch Guild Homepage",
"homepage": "https://www.minez-nightswatch.com/",
"type": "project",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": ">=7.4.0",
"yiisoft/yii2": "^2.0.45",
"yiisoft/yii2-bootstrap5": "^2.0.2",
"yiisoft/yii2-symfonymailer": "^2.0.3"
},
"require-dev": {
"yiisoft/yii2-debug": "^2.1.0",
"yiisoft/yii2-gii": "^2.2.0",
"yiisoft/yii2-faker": "^2.0.0"
},
"autoload": {
"psr-4": {
"TheNightsWatch\\": "src/"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer" : true
},
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
}
},
"scripts": {
"post-install-cmd": [
"yii\\composer\\Installer::postInstall"
],
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject",
"yii\\composer\\Installer::postInstall"
]
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}