mirror of
https://github.com/yiisoft/app.git
synced 2026-03-03 06:44:04 +01:00
112 lines
3.3 KiB
JSON
112 lines
3.3 KiB
JSON
{
|
|
"name": "yiisoft/app",
|
|
"type": "project",
|
|
"description": "Yii 3 application template",
|
|
"keywords": [
|
|
"yii3",
|
|
"app"
|
|
],
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"serve": [
|
|
"Composer\\Config::disableProcessTimeout",
|
|
"./yii serve"
|
|
],
|
|
"test": "codecept run",
|
|
"test-watch": "phpunit-watcher watch",
|
|
"post-install-cmd": [
|
|
"App\\Installer::postUpdate",
|
|
"App\\Installer::copyEnvFile"
|
|
],
|
|
"post-update-cmd": [
|
|
"App\\Installer::postUpdate",
|
|
"App\\Installer::copyEnvFile"
|
|
],
|
|
"post-create-project-cmd": [
|
|
"App\\Installer::copyEnvFile"
|
|
]
|
|
},
|
|
"require": {
|
|
"php": "^8.0",
|
|
"ext-intl": "*",
|
|
"httpsoft/http-message": "^1.1",
|
|
"psr/container": "^2.0",
|
|
"psr/http-message": "^1.1|^2.0",
|
|
"psr/http-server-handler": "^1.0",
|
|
"symfony/console": "^6.0",
|
|
"vlucas/phpdotenv": "^5.3",
|
|
"yiisoft/aliases": "^3.0",
|
|
"yiisoft/assets": "^4.0",
|
|
"yiisoft/cache": "^3.0",
|
|
"yiisoft/cache-file": "^3.0",
|
|
"yiisoft/config": "^1.1",
|
|
"yiisoft/csrf": "^2.0",
|
|
"yiisoft/data-response": "^2.0",
|
|
"yiisoft/definitions": "^3.0",
|
|
"yiisoft/di": "^1.2",
|
|
"yiisoft/error-handler": "^3.0",
|
|
"yiisoft/factory": "^1.0",
|
|
"yiisoft/files": "^2.0",
|
|
"yiisoft/html": "^3.0",
|
|
"yiisoft/http": "^1.2",
|
|
"yiisoft/i18n": "^1.1",
|
|
"yiisoft/log": "^2.0",
|
|
"yiisoft/log-target-file": "^3.0",
|
|
"yiisoft/router": "^3.0",
|
|
"yiisoft/router-fastroute": "^3.0",
|
|
"yiisoft/translator": "^3.0",
|
|
"yiisoft/translator-message-php": "^1.1",
|
|
"yiisoft/view": "^8.0",
|
|
"yiisoft/yii-console": "^2.0",
|
|
"yiisoft/yii-debug": "dev-master|dev-php80",
|
|
"yiisoft/yii-event": "^2.0",
|
|
"yiisoft/yii-http": "^1.0",
|
|
"yiisoft/yii-middleware": "^1.0",
|
|
"yiisoft/yii-runner-console": "^2.0",
|
|
"yiisoft/yii-runner-http": "^2.0",
|
|
"yiisoft/yii-view": "^6.0"
|
|
},
|
|
"require-dev": {
|
|
"codeception/c3": "^2.7",
|
|
"codeception/codeception": "^5.0",
|
|
"codeception/module-asserts": "^3.0",
|
|
"codeception/module-cli": "^2.0",
|
|
"codeception/module-phpbrowser": "^3.0",
|
|
"phpunit/phpunit": "^9.5",
|
|
"rector/rector": "^0.19.0",
|
|
"roave/infection-static-analysis-plugin": "^1.25",
|
|
"roave/security-advisories": "dev-master",
|
|
"spatie/phpunit-watcher": "^1.23",
|
|
"vimeo/psalm": "^4.30|^5.4",
|
|
"yiisoft/yii-debug-api": "3.0.x-dev",
|
|
"yiisoft/yii-debug-viewer": "^3.0@dev",
|
|
"yiisoft/yii-testing": "dev-master"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"App\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.0.x-dev"
|
|
},
|
|
"config-plugin-file": "configuration.php"
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"yiisoft/config": true,
|
|
"infection/extension-installer": true,
|
|
"codeception/c3": true,
|
|
"composer/installers": true
|
|
}
|
|
}
|
|
}
|