Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 

85 Zeilen
2.3 KiB

  1. {
  2. "name": "symfony/skeleton",
  3. "type": "project",
  4. "license": "MIT",
  5. "description": "A minimal Symfony project recommended to create bare bones applications",
  6. "minimum-stability": "stable",
  7. "prefer-stable": true,
  8. "require": {
  9. "php": ">=8.2",
  10. "ext-ctype": "*",
  11. "ext-iconv": "*",
  12. "doctrine/doctrine-bundle": "^3.2.2",
  13. "doctrine/doctrine-migrations-bundle": "^4.0",
  14. "doctrine/orm": "^3.6.6",
  15. "symfony/console": "7.4.*",
  16. "symfony/dotenv": "7.4.*",
  17. "symfony/flex": "^2.10",
  18. "symfony/form": "7.4.*",
  19. "symfony/framework-bundle": "7.4.*",
  20. "symfony/mailer": "7.4.*",
  21. "symfony/monolog-bundle": "^4.0.2",
  22. "symfony/runtime": "7.4.*",
  23. "symfony/security-bundle": "7.4.*",
  24. "symfony/translation": "7.4.*",
  25. "symfony/twig-bundle": "7.4.*",
  26. "symfony/validator": "7.4.*",
  27. "symfony/webpack-encore-bundle": "^2.4",
  28. "symfony/yaml": "7.4.*"
  29. },
  30. "config": {
  31. "allow-plugins": {
  32. "php-http/discovery": true,
  33. "symfony/flex": true,
  34. "symfony/runtime": true
  35. },
  36. "bump-after-update": true,
  37. "sort-packages": true
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "App\\": "src/"
  42. }
  43. },
  44. "autoload-dev": {
  45. "psr-4": {
  46. "App\\Tests\\": "tests/"
  47. }
  48. },
  49. "replace": {
  50. "symfony/polyfill-ctype": "*",
  51. "symfony/polyfill-iconv": "*",
  52. "symfony/polyfill-php72": "*",
  53. "symfony/polyfill-php73": "*",
  54. "symfony/polyfill-php74": "*",
  55. "symfony/polyfill-php80": "*",
  56. "symfony/polyfill-php81": "*",
  57. "symfony/polyfill-php82": "*"
  58. },
  59. "scripts": {
  60. "auto-scripts": {
  61. "cache:clear": "symfony-cmd",
  62. "assets:install %PUBLIC_DIR%": "symfony-cmd"
  63. },
  64. "post-install-cmd": [
  65. "@auto-scripts"
  66. ],
  67. "post-update-cmd": [
  68. "@auto-scripts"
  69. ]
  70. },
  71. "conflict": {
  72. "symfony/symfony": "*"
  73. },
  74. "extra": {
  75. "symfony": {
  76. "allow-contrib": false,
  77. "require": "7.4.*",
  78. "docker": false
  79. }
  80. },
  81. "require-dev": {
  82. "symfony/maker-bundle": "^1.67"
  83. }
  84. }