2013-05-24 22:14:49 +08:00
|
|
|
{
|
2014-07-20 02:56:31 +08:00
|
|
|
"name": "yiisoft/yii2-app-basic",
|
2015-04-02 21:09:56 +08:00
|
|
|
"description": "Yii 2 Basic Project Template",
|
|
|
|
"keywords": ["yii2", "framework", "basic", "project template"],
|
2022-11-19 00:35:15 +08:00
|
|
|
"homepage": "https://www.yiiframework.com/",
|
2014-07-20 02:56:31 +08:00
|
|
|
"type": "project",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"support": {
|
|
|
|
"issues": "https://github.com/yiisoft/yii2/issues?state=open",
|
2022-11-19 00:35:15 +08:00
|
|
|
"forum": "https://www.yiiframework.com/forum/",
|
|
|
|
"wiki": "https://www.yiiframework.com/wiki/",
|
2023-06-14 08:23:18 +08:00
|
|
|
"irc": "ircs://irc.libera.chat:6697/yii",
|
2014-07-20 02:56:31 +08:00
|
|
|
"source": "https://github.com/yiisoft/yii2"
|
|
|
|
},
|
2023-08-29 22:27:32 +08:00
|
|
|
"minimum-stability": "stable",
|
2014-07-20 02:56:31 +08:00
|
|
|
"require": {
|
2024-02-09 12:15:09 +08:00
|
|
|
"php": ">=8.2.0",
|
2022-06-18 00:15:52 +08:00
|
|
|
"yiisoft/yii2": "~2.0.45",
|
|
|
|
"yiisoft/yii2-bootstrap5": "~2.0.2",
|
2024-02-09 12:15:09 +08:00
|
|
|
"yiisoft/yii2-symfonymailer": "~2.0.3",
|
|
|
|
"sam-it/yii2-mariadb": "^3.1",
|
|
|
|
"bestyii/yii2-gii-rest": "*",
|
2024-02-11 12:37:55 +08:00
|
|
|
"bestyii/yii2-openapi-reader": "dev-master",
|
|
|
|
"fortawesome/font-awesome": "^6.5"
|
2014-07-20 02:56:31 +08:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2019-03-22 23:23:34 +08:00
|
|
|
"yiisoft/yii2-debug": "~2.1.0",
|
2021-05-09 04:39:52 +08:00
|
|
|
"yiisoft/yii2-gii": "~2.2.0",
|
2016-09-05 20:47:44 +08:00
|
|
|
"yiisoft/yii2-faker": "~2.0.0",
|
2022-06-18 00:15:52 +08:00
|
|
|
"phpunit/phpunit": "~9.5.0",
|
2022-06-18 06:41:05 +08:00
|
|
|
"codeception/codeception": "^5.0.0 || ^4.0",
|
2023-05-23 01:24:55 +08:00
|
|
|
"codeception/lib-innerbrowser": "^4.0 || ^3.0 || ^1.1",
|
2022-06-18 00:15:52 +08:00
|
|
|
"codeception/module-asserts": "^3.0 || ^1.1",
|
2022-06-21 19:34:09 +08:00
|
|
|
"codeception/module-yii2": "^1.1",
|
2023-05-23 01:24:55 +08:00
|
|
|
"codeception/module-filesystem": "^3.0 || ^2.0 || ^1.1",
|
|
|
|
"codeception/verify": "^3.0 || ^2.2",
|
2022-06-18 00:15:52 +08:00
|
|
|
"symfony/browser-kit": "^6.0 || >=2.7 <=4.2.4"
|
2014-07-20 02:56:31 +08:00
|
|
|
},
|
2014-09-03 11:17:50 +08:00
|
|
|
"config": {
|
2022-02-25 22:58:50 +08:00
|
|
|
"allow-plugins": {
|
|
|
|
"yiisoft/yii2-composer" : true
|
|
|
|
},
|
2017-11-09 18:09:30 +08:00
|
|
|
"process-timeout": 1800,
|
|
|
|
"fxp-asset": {
|
|
|
|
"enabled": false
|
|
|
|
}
|
2014-09-03 11:17:50 +08:00
|
|
|
},
|
2014-07-20 02:56:31 +08:00
|
|
|
"scripts": {
|
2017-08-10 03:07:23 +08:00
|
|
|
"post-install-cmd": [
|
|
|
|
"yii\\composer\\Installer::postInstall"
|
|
|
|
],
|
2014-07-20 02:56:31 +08:00
|
|
|
"post-create-project-cmd": [
|
2017-08-10 03:14:58 +08:00
|
|
|
"yii\\composer\\Installer::postCreateProject",
|
|
|
|
"yii\\composer\\Installer::postInstall"
|
2014-07-20 02:56:31 +08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"extra": {
|
2014-09-03 11:17:50 +08:00
|
|
|
"yii\\composer\\Installer::postCreateProject": {
|
|
|
|
"setPermission": [
|
|
|
|
{
|
|
|
|
"runtime": "0777",
|
|
|
|
"web/assets": "0777",
|
|
|
|
"yii": "0755"
|
|
|
|
}
|
2017-08-10 03:07:23 +08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"yii\\composer\\Installer::postInstall": {
|
2014-09-03 11:17:50 +08:00
|
|
|
"generateCookieValidationKey": [
|
|
|
|
"config/web.php"
|
|
|
|
]
|
2017-08-10 03:07:23 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "composer",
|
|
|
|
"url": "https://asset-packagist.org"
|
2014-09-03 05:03:19 +08:00
|
|
|
}
|
2017-08-10 03:07:23 +08:00
|
|
|
]
|
2013-05-24 22:14:49 +08:00
|
|
|
}
|