Advertisement
Guest User

Untitled

a guest
Dec 14th, 2024
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.15 KB | Software | 0 0
  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.         "doctrine/dbal": "^3",
  11.         "doctrine/doctrine-bundle": "^2.13",
  12.         "doctrine/doctrine-migrations-bundle": "^3.3",
  13.         "doctrine/orm": "^3.3",
  14.         "symfony/console": "7.1.*",
  15.         "symfony/dotenv": "7.1.*",
  16.         "symfony/flex": "^2",
  17.         "symfony/framework-bundle": "7.1.*",
  18.         "symfony/runtime": "7.1.*",
  19.         "symfony/yaml": "7.1.*"
  20.     },
  21.     "config": {
  22.         "allow-plugins": {
  23.             "php-http/discovery": true,
  24.             "symfony/flex": true,
  25.             "symfony/runtime": true
  26.         },
  27.         "sort-packages": true
  28.     },
  29.     "autoload": {
  30.         "psr-4": {
  31.             "App\\": "src/"
  32.         }
  33.     },
  34.     "autoload-dev": {
  35.         "psr-4": {
  36.             "App\\Tests\\": "tests/"
  37.         }
  38.     },
  39.     "replace": {
  40.         "symfony/polyfill-ctype": "*",
  41.         "symfony/polyfill-iconv": "*",
  42.         "symfony/polyfill-php72": "*",
  43.         "symfony/polyfill-php73": "*",
  44.         "symfony/polyfill-php74": "*",
  45.         "symfony/polyfill-php80": "*",
  46.         "symfony/polyfill-php81": "*",
  47.         "symfony/polyfill-php82": "*"
  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": "7.1.*"
  68.         }
  69.     },
  70.     "require-dev": {
  71.         "fakerphp/faker": "^1.24",
  72.         "friendsofphp/php-cs-fixer": "^3.65",
  73.         "phpunit/phpunit": "^11.5",
  74.         "rector/rector": "^2.0",
  75.         "symfony/browser-kit": "7.1.*",
  76.         "symfony/css-selector": "7.1.*",
  77.         "symfony/maker-bundle": "^1.61",
  78.         "symfony/phpunit-bridge": "^7.2"
  79.     }
  80. }
  81.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement