Advertisement
Guest User

Fresh symfony skeleton app composer.json

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