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.

74 lines
1.8 KiB

  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. "symfony/asset": "7.1.*",
  11. "symfony/console": "7.1.*",
  12. "symfony/dotenv": "7.1.*",
  13. "symfony/flex": "^2",
  14. "symfony/framework-bundle": "7.1.*",
  15. "symfony/runtime": "7.1.*",
  16. "symfony/twig-bundle": "7.1.*",
  17. "symfony/yaml": "7.1.*",
  18. "twig/extra-bundle": "^2.12|^3.0",
  19. "twig/twig": "^2.12|^3.0"
  20. },
  21. "require-dev": {
  22. "symfony/debug-bundle": "7.1.*",
  23. "symfony/maker-bundle": "^1.60"
  24. },
  25. "config": {
  26. "allow-plugins": {
  27. "php-http/discovery": true,
  28. "symfony/flex": true,
  29. "symfony/runtime": true
  30. },
  31. "sort-packages": true
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "App\\": "src/"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "App\\Tests\\": "tests/"
  41. }
  42. },
  43. "replace": {
  44. "symfony/polyfill-ctype": "*",
  45. "symfony/polyfill-iconv": "*",
  46. "symfony/polyfill-php72": "*",
  47. "symfony/polyfill-php73": "*",
  48. "symfony/polyfill-php74": "*",
  49. "symfony/polyfill-php80": "*",
  50. "symfony/polyfill-php81": "*",
  51. "symfony/polyfill-php82": "*"
  52. },
  53. "scripts": {
  54. "auto-scripts": {
  55. "cache:clear": "symfony-cmd",
  56. "assets:install %PUBLIC_DIR%": "symfony-cmd"
  57. },
  58. "post-install-cmd": [
  59. "@auto-scripts"
  60. ],
  61. "post-update-cmd": [
  62. "@auto-scripts"
  63. ]
  64. },
  65. "conflict": {
  66. "symfony/symfony": "*"
  67. },
  68. "extra": {
  69. "symfony": {
  70. "allow-contrib": false,
  71. "require": "7.1.*"
  72. }
  73. }
  74. }