Advertisement
Guest User

composer.json

a guest
Nov 15th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. {
  2. "name" : "foo/barbaz",
  3. "description" : "unpleasant composer experience",
  4. "config": {
  5. "preferred-install": "dist",
  6. "platform": {
  7. "php": "5.6.38"
  8. }
  9. },
  10. "require" : {
  11. "php": ">=5.6.38",
  12. "symfony/symfony" : "~3.0.0",
  13. "symfony/framework-bundle" : "~3.3.0",
  14. "doctrine/doctrine-migrations-bundle" : "~1.3",
  15. "symfony/swiftmailer-bundle" : "~2.3.7",
  16. "doctrine/orm" : "~2.5.0",
  17. "jms/security-extra-bundle" : "~1.6.1",
  18. "doctrine/migrations" : "~1.0",
  19. "twig/extensions" : "~1.0.1",
  20. "sensio/generator-bundle" : "~3.0.0",
  21. "symfony/monolog-bundle" : "~2.8.0",
  22. "sensio/framework-extra-bundle" : "~3.0.2",
  23. "sensio/distribution-bundle" : "~5.0.0",
  24. "doctrine/doctrine-bundle" : "~1.6.0"
  25. },
  26. "require-dev" : {
  27. "phpunit/phpunit" : "~5.0.0"
  28. },
  29. "autoload" : {
  30. "psr-0" : {
  31. "Foo" : "src/"
  32. }
  33. },
  34. "scripts" : {
  35. "post-install-cmd" : [
  36. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  37. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  38. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  39. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  40. ],
  41. "post-update-cmd" : [
  42. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  43. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  44. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  45. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  46. ]
  47. }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement