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.

composer.json 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "type": "project",
  3. "license": "proprietary",
  4. "minimum-stability": "stable",
  5. "prefer-stable": true,
  6. "require": {
  7. "php": ">=8.2",
  8. "ext-ctype": "*",
  9. "ext-iconv": "*",
  10. "doctrine/dbal": "^3",
  11. "doctrine/doctrine-bundle": "^2.12",
  12. "doctrine/doctrine-migrations-bundle": "^3.3",
  13. "doctrine/orm": "^3.2",
  14. "secit-pl/imap-bundle": "^3.2",
  15. "symfony/console": "7.1.*",
  16. "symfony/dotenv": "7.1.*",
  17. "symfony/filesystem": "7.1.*",
  18. "symfony/flex": "^2",
  19. "symfony/framework-bundle": "7.1.*",
  20. "symfony/monolog-bundle": "^3.10",
  21. "symfony/notifier": "7.1.*",
  22. "symfony/runtime": "7.1.*",
  23. "symfony/telegram-notifier": "7.1.*",
  24. "symfony/yaml": "7.1.*"
  25. },
  26. "require-dev": {
  27. "symfony/maker-bundle": "^1.59"
  28. },
  29. "config": {
  30. "allow-plugins": {
  31. "php-http/discovery": true,
  32. "symfony/flex": true,
  33. "symfony/runtime": true
  34. },
  35. "sort-packages": true
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "App\\": "src/"
  40. }
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "App\\Tests\\": "tests/"
  45. }
  46. },
  47. "replace": {
  48. "symfony/polyfill-ctype": "*",
  49. "symfony/polyfill-iconv": "*",
  50. "symfony/polyfill-php72": "*",
  51. "symfony/polyfill-php73": "*",
  52. "symfony/polyfill-php74": "*",
  53. "symfony/polyfill-php80": "*",
  54. "symfony/polyfill-php81": "*",
  55. "symfony/polyfill-php82": "*"
  56. },
  57. "scripts": {
  58. "auto-scripts": {
  59. "cache:clear": "symfony-cmd",
  60. "assets:install %PUBLIC_DIR%": "symfony-cmd"
  61. },
  62. "post-install-cmd": [
  63. "@auto-scripts"
  64. ],
  65. "post-update-cmd": [
  66. "@auto-scripts"
  67. ]
  68. },
  69. "conflict": {
  70. "symfony/symfony": "*"
  71. },
  72. "extra": {
  73. "symfony": {
  74. "allow-contrib": false,
  75. "require": "7.1.*"
  76. }
  77. }
  78. }