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.
 
 
 
 
 

95 line
2.7 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. "api-platform/doctrine-orm": "^4.0",
  11. "api-platform/symfony": "^4.0",
  12. "doctrine/dbal": "^3",
  13. "doctrine/doctrine-bundle": "^2.13",
  14. "doctrine/doctrine-migrations-bundle": "^3.3",
  15. "doctrine/orm": "^3.2",
  16. "lexik/jwt-authentication-bundle": "^3.1",
  17. "nelmio/cors-bundle": "^2.5",
  18. "phpdocumentor/reflection-docblock": "^5.4",
  19. "phpstan/phpdoc-parser": "^1.32",
  20. "symfony/asset": "7.1.*",
  21. "symfony/console": "7.1.*",
  22. "symfony/dotenv": "7.1.*",
  23. "symfony/expression-language": "7.1.*",
  24. "symfony/flex": "^2",
  25. "symfony/form": "7.1.*",
  26. "symfony/framework-bundle": "7.1.*",
  27. "symfony/http-client": "7.1.*",
  28. "symfony/property-access": "7.1.*",
  29. "symfony/property-info": "7.1.*",
  30. "symfony/runtime": "7.1.*",
  31. "symfony/security-bundle": "7.1.*",
  32. "symfony/serializer": "7.1.*",
  33. "symfony/twig-bundle": "7.1.*",
  34. "symfony/validator": "7.1.*",
  35. "symfony/yaml": "7.1.*",
  36. "symfonycasts/micro-mapper": "^0.2.0",
  37. "vich/uploader-bundle": "^2.4"
  38. },
  39. "config": {
  40. "allow-plugins": {
  41. "php-http/discovery": true,
  42. "symfony/flex": true,
  43. "symfony/runtime": true
  44. },
  45. "sort-packages": true
  46. },
  47. "autoload": {
  48. "psr-4": {
  49. "App\\": "src/"
  50. }
  51. },
  52. "autoload-dev": {
  53. "psr-4": {
  54. "App\\Tests\\": "tests/"
  55. }
  56. },
  57. "replace": {
  58. "symfony/polyfill-ctype": "*",
  59. "symfony/polyfill-iconv": "*",
  60. "symfony/polyfill-php72": "*",
  61. "symfony/polyfill-php73": "*",
  62. "symfony/polyfill-php74": "*",
  63. "symfony/polyfill-php80": "*",
  64. "symfony/polyfill-php81": "*",
  65. "symfony/polyfill-php82": "*"
  66. },
  67. "scripts": {
  68. "auto-scripts": {
  69. "cache:clear": "symfony-cmd",
  70. "assets:install %PUBLIC_DIR%": "symfony-cmd"
  71. },
  72. "post-install-cmd": [
  73. "@auto-scripts"
  74. ],
  75. "post-update-cmd": [
  76. "@auto-scripts"
  77. ]
  78. },
  79. "conflict": {
  80. "symfony/symfony": "*"
  81. },
  82. "extra": {
  83. "symfony": {
  84. "allow-contrib": true,
  85. "require": "7.1.*",
  86. "docker": false
  87. }
  88. },
  89. "require-dev": {
  90. "doctrine/doctrine-fixtures-bundle": "^3.6",
  91. "symfony/maker-bundle": "^1.61",
  92. "zenstruck/foundry": "^2.0"
  93. }
  94. }