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.

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