You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.3 KiB

10 months ago
  1. {
  2. "name": "yiisoft/yii2-app-basic",
  3. "description": "Yii 2 Basic Project Template",
  4. "keywords": ["yii2", "framework", "basic", "project template"],
  5. "homepage": "https://www.yiiframework.com/",
  6. "type": "project",
  7. "license": "BSD-3-Clause",
  8. "support": {
  9. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  10. "forum": "https://www.yiiframework.com/forum/",
  11. "wiki": "https://www.yiiframework.com/wiki/",
  12. "irc": "ircs://irc.libera.chat:6697/yii",
  13. "source": "https://github.com/yiisoft/yii2"
  14. },
  15. "minimum-stability": "stable",
  16. "require": {
  17. "php": ">=7.4.0",
  18. "yiisoft/yii2": "~2.0.45",
  19. "yiisoft/yii2-bootstrap5": "~2.0.2",
  20. "yiisoft/yii2-symfonymailer": "~2.0.3"
  21. },
  22. "require-dev": {
  23. "yiisoft/yii2-debug": "~2.1.0",
  24. "yiisoft/yii2-gii": "~2.2.0",
  25. "yiisoft/yii2-faker": "~2.0.0",
  26. "phpunit/phpunit": "~9.5.0",
  27. "codeception/codeception": "^5.0.0 || ^4.0",
  28. "codeception/lib-innerbrowser": "^4.0 || ^3.0 || ^1.1",
  29. "codeception/module-asserts": "^3.0 || ^1.1",
  30. "codeception/module-yii2": "^1.1",
  31. "codeception/module-filesystem": "^3.0 || ^2.0 || ^1.1",
  32. "codeception/verify": "^3.0 || ^2.2",
  33. "symfony/browser-kit": "^6.0 || >=2.7 <=4.2.4"
  34. },
  35. "config": {
  36. "allow-plugins": {
  37. "yiisoft/yii2-composer" : true
  38. },
  39. "process-timeout": 1800,
  40. "fxp-asset": {
  41. "enabled": false
  42. }
  43. },
  44. "scripts": {
  45. "post-install-cmd": [
  46. "yii\\composer\\Installer::postInstall"
  47. ],
  48. "post-create-project-cmd": [
  49. "yii\\composer\\Installer::postCreateProject",
  50. "yii\\composer\\Installer::postInstall"
  51. ]
  52. },
  53. "extra": {
  54. "yii\\composer\\Installer::postCreateProject": {
  55. "setPermission": [
  56. {
  57. "runtime": "0777",
  58. "web/assets": "0777",
  59. "yii": "0755"
  60. }
  61. ]
  62. },
  63. "yii\\composer\\Installer::postInstall": {
  64. "generateCookieValidationKey": [
  65. "config/web.php"
  66. ]
  67. }
  68. },
  69. "repositories": [
  70. {
  71. "type": "composer",
  72. "url": "https://asset-packagist.org"
  73. }
  74. ]
  75. }