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.

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