Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. {
  2. "type": "project",
  3. "license": "proprietary",
  4. "require": {
  5. "php": "^7.1.3",
  6. "ext-ctype": "*",
  7. "ext-curl": "*",
  8. "ext-iconv": "*",
  9. "ext-json": "*",
  10. "symfony/console": "4.2.*",
  11. "symfony/dotenv": "4.2.*",
  12. "symfony/flex": "^1.1",
  13. "symfony/framework-bundle": "4.2.*",
  14. "symfony/maker-bundle": "^1.11",
  15. "symfony/orm-pack": "^1.0",
  16. "symfony/property-access": "4.2.*",
  17. "symfony/serializer": "4.2.*",
  18. "symfony/yaml": "4.2.*"
  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.2.*"
  63. }
  64. },
  65. "require-dev": {
  66. "doctrine/doctrine-fixtures-bundle": "^3.1",
  67. "symfony/browser-kit": "4.2.*",
  68. "symfony/css-selector": "4.2.*",
  69. "symfony/phpunit-bridge": "4.2.*",
  70. "symfony/web-server-bundle": "4.2.*"
  71. }
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement