Advertisement
Guest User

Untitled

a guest
Jan 6th, 2022
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.90 KB | None | 0 0
  1. {
  2.     "type": "project",
  3.     "license": "proprietary",
  4.     "minimum-stability": "stable",
  5.     "prefer-stable": true,
  6.     "require": {
  7.         "php": ">=7.2.5",
  8.         "ext-ctype": "*",
  9.         "ext-iconv": "*",
  10.         "friendsofsymfony/rest-bundle": "^3.2",
  11.         "jms/serializer-bundle": "^4.0",
  12.         "nelmio/api-doc-bundle": "^4.8",
  13.         "symfony/console": "5.4.*",
  14.         "symfony/dotenv": "5.4.*",
  15.         "symfony/flex": "^1.17|^2",
  16.         "symfony/form": "^6.0",
  17.         "symfony/framework-bundle": "5.4.*",
  18.         "symfony/runtime": "5.4.*",
  19.         "symfony/twig-bundle": "^6.0",
  20.         "symfony/yaml": "5.4.*"
  21.     },
  22.     "config": {
  23.         "allow-plugins": {
  24.             "composer/package-versions-deprecated": true,
  25.             "symfony/flex": true,
  26.             "symfony/runtime": true
  27.         },
  28.         "optimize-autoloader": true,
  29.         "preferred-install": {
  30.             "*": "dist"
  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.     },
  49.     "scripts": {
  50.         "auto-scripts": {
  51.             "cache:clear": "symfony-cmd",
  52.             "assets:install %PUBLIC_DIR%": "symfony-cmd"
  53.         },
  54.         "post-install-cmd": [
  55.             "@auto-scripts"
  56.         ],
  57.         "post-update-cmd": [
  58.             "@auto-scripts"
  59.         ]
  60.     },
  61.     "conflict": {
  62.         "symfony/symfony": "*"
  63.     },
  64.     "extra": {
  65.         "symfony": {
  66.             "allow-contrib": false,
  67.             "require": "5.4.*"
  68.         }
  69.     },
  70.     "require-dev": {
  71.         "symfony/phpunit-bridge": "^6.0",
  72.         "symfony/web-profiler-bundle": "^6.0"
  73.     }
  74. }
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement