-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
103 lines (103 loc) · 2.67 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "ensostudio/yii2-app",
"description": "Yii2 application template",
"keywords": [
"yii2",
"application"
],
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/ensostudio/yii2-app/issues?state=open",
"wiki": "https://github.com/ensostudio/yii2-app/wiki",
"source": "https://github.com/ensostudio/yii2-app"
},
"minimum-stability": "stable",
"suggest": {
"yiisoft/yii2-httpclient": "HTTP client",
"yiisoft/yii2-authclient": "OAuth and OpenId connect consumers",
"yiisoft/yii2-jui": "jQuery UI widgets",
"yiisoft/yii2-imagine": "Imagine image manipulation",
"yiisoft/yii2-sphinx": "Sphinx full text search engine",
"yiisoft/yii2-smarty": "Smarty view template engine",
"yiisoft/yii2-twig": "Twig view template engine",
"yiisoft/yii2-mongodb": "MongoDB integration",
"yiisoft/yii2-redis": "Redis integration"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"ext-intl": "*",
"symfony/polyfill-php74": "^1.25",
"symfony/polyfill-php80": "^1.25",
"symfony/polyfill-php81": "^1.25",
"yiisoft/yii2": "^2.0.45",
"yiisoft/yii2-symfonymailer": "^2.0.3",
"yiisoft/yii2-bootstrap5": "^2.0.3"
},
"require-dev": {
"yiisoft/yii2-debug": "^2.1.19",
"yiisoft/yii2-gii": "^2.2.4",
"yiisoft/yii2-faker": "^2.0.5",
"phpunit/phpunit": "^8.5.26",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"app\\": "src/",
"app\\modules\\": "modules/"
}
},
"autoload-dev": {
"psr-4": {
"app\\": "tests/",
"app\\migrations\\": "migrations/"
}
},
"config": {
"optimize-autoloader": true,
"process-timeout": 1800,
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"scripts": {
"yii": "yii",
"tests": "phpunit",
"post-install-cmd": [
"yii\\composer\\Installer::postInstall"
],
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject",
"yii\\composer\\Installer::postInstall"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0775",
"assets": "0775",
"migrations": "0775",
"public/assets": "0775",
"public/backend/assets": "0775",
"yii": "0775",
"yii.bat": "0775"
}
]
},
"yii\\composer\\Installer::postInstall": {
"generateCookieValidationKey": [
"config/frontend.php",
"config/backend.php"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}