Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 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. "sensio/framework-extra-bundle": "^5.1",
  9. "symfony/asset": "4.4.*",
  10. "symfony/console": "4.4.*",
  11. "symfony/dotenv": "4.4.*",
  12. "symfony/error-handler": "4.4.*",
  13. "symfony/expression-language": "4.4.*",
  14. "symfony/flex": "^1.3.1",
  15. "symfony/form": "4.4.*",
  16. "symfony/framework-bundle": "4.4.*",
  17. "symfony/http-client": "4.4.*",
  18. "symfony/intl": "4.4.*",
  19. "symfony/mailer": "4.4.*",
  20. "symfony/monolog-bundle": "^3.1",
  21. "symfony/orm-pack": "*",
  22. "symfony/process": "4.4.*",
  23. "symfony/security-bundle": "4.4.*",
  24. "symfony/serializer-pack": "*",
  25. "symfony/translation": "4.4.*",
  26. "symfony/twig-pack": "*",
  27. "symfony/validator": "4.4.*",
  28. "symfony/web-link": "4.4.*",
  29. "symfony/yaml": "4.4.*"
  30. },
  31. "require-dev": {
  32. "symfony/debug-pack": "*",
  33. "symfony/maker-bundle": "^1.0",
  34. "symfony/profiler-pack": "*",
  35. "symfony/test-pack": "*"
  36. },
  37. "config": {
  38. "preferred-install": {
  39. "*": "dist"
  40. },
  41. "sort-packages": true
  42. },
  43. "autoload": {
  44. "psr-4": {
  45. "App\\": "src/"
  46. }
  47. },
  48. "autoload-dev": {
  49. "psr-4": {
  50. "App\\Tests\\": "tests/"
  51. }
  52. },
  53. "replace": {
  54. "paragonie/random_compat": "2.*",
  55. "symfony/polyfill-ctype": "*",
  56. "symfony/polyfill-iconv": "*",
  57. "symfony/polyfill-php71": "*",
  58. "symfony/polyfill-php70": "*",
  59. "symfony/polyfill-php56": "*"
  60. },
  61. "scripts": {
  62. "auto-scripts": {
  63. "cache:clear": "symfony-cmd",
  64. "assets:install %PUBLIC_DIR%": "symfony-cmd"
  65. },
  66. "post-install-cmd": [
  67. "@auto-scripts"
  68. ],
  69. "post-update-cmd": [
  70. "@auto-scripts"
  71. ]
  72. },
  73. "conflict": {
  74. "symfony/symfony": "*"
  75. },
  76. "extra": {
  77. "symfony": {
  78. "allow-contrib": false,
  79. "require": "4.4.*"
  80. }
  81. }
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement