Advertisement
Guest User

Untitled

a guest
Nov 14th, 2018
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.58 KB | None | 0 0
  1. {
  2.     "type": "project",
  3.     "license": "proprietary",
  4.     "require": {
  5.         "php": "^7.1.3",
  6.         "ext-ctype": "*",
  7.         "ext-iconv": "*",
  8.         "symfony/console": "4.1.*",
  9.         "symfony/flex": "^1.1",
  10.         "symfony/framework-bundle": "4.1.*",
  11.         "symfony/yaml": "4.1.*"
  12.     },
  13.     "require-dev": {
  14.         "symfony/browser-kit": "4.1.*",
  15.         "symfony/css-selector": "4.1.*",
  16.         "symfony/dotenv": "4.1.*",
  17.         "symfony/maker-bundle": "^1.9",
  18.         "symfony/phpunit-bridge": "4.1.*"
  19.     },
  20.     "config": {
  21.         "preferred-install": {
  22.             "*": "dist"
  23.         },
  24.         "sort-packages": true
  25.     },
  26.     "autoload": {
  27.         "psr-4": {
  28.             "App\\": "src/"
  29.         }
  30.     },
  31.     "autoload-dev": {
  32.         "psr-4": {
  33.             "App\\Tests\\": "tests/"
  34.         }
  35.     },
  36.     "replace": {
  37.         "paragonie/random_compat": "2.*",
  38.         "symfony/polyfill-ctype": "*",
  39.         "symfony/polyfill-iconv": "*",
  40.         "symfony/polyfill-php71": "*",
  41.         "symfony/polyfill-php70": "*",
  42.         "symfony/polyfill-php56": "*"
  43.     },
  44.     "scripts": {
  45.         "auto-scripts": {
  46.             "cache:clear": "symfony-cmd",
  47.             "assets:install %PUBLIC_DIR%": "symfony-cmd"
  48.         },
  49.         "post-install-cmd": [
  50.             "@auto-scripts"
  51.         ],
  52.         "post-update-cmd": [
  53.             "@auto-scripts"
  54.         ]
  55.     },
  56.     "conflict": {
  57.         "symfony/symfony": "*"
  58.     },
  59.     "extra": {
  60.         "symfony": {
  61.             "allow-contrib": false,
  62.             "require": "4.1.*"
  63.         }
  64.     }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement