Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. {
  2. "name": "pcmagas/symphotest",
  3. "license": "proprietary",
  4. "type": "project",
  5. "autoload": {
  6. "psr-4": {
  7. "": "src/"
  8. },
  9. "classmap": [
  10. "app/AppKernel.php",
  11. "app/AppCache.php"
  12. ]
  13. },
  14. "autoload-dev": {
  15. "psr-4": {
  16. "Tests\\": "tests/"
  17. }
  18. },
  19. "require": {
  20. "php": ">=5.4.0",
  21. "symfony/symfony": "3.0.*",
  22. "doctrine/orm": "^2.5",
  23. "doctrine/doctrine-bundle": "^1.6",
  24. "doctrine/doctrine-cache-bundle": "^1.2",
  25. "symfony/swiftmailer-bundle": "^2.3",
  26. "symfony/monolog-bundle": "^2.8",
  27. "sensio/distribution-bundle": "^5.0",
  28. "sensio/framework-extra-bundle": "^3.0.2",
  29. "incenteev/composer-parameter-handler": "^2.0"
  30. },
  31. "require-dev": {
  32. "sensio/generator-bundle": "^3.0",
  33. "symfony/phpunit-bridge": "^2.7"
  34. },
  35. "scripts": {
  36. "post-install-cmd": [
  37. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  38. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  39. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  40. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  41. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
  42. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
  43. ],
  44. "post-update-cmd": [
  45. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  46. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  47. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  48. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  49. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
  50. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
  51. ]
  52. },
  53. "config": {
  54. "platform": {
  55. "php": "5.4.0"
  56. }
  57. },
  58. "extra": {
  59. "symfony-app-dir": "app",
  60. "symfony-bin-dir": "bin",
  61. "symfony-var-dir": "var",
  62. "symfony-web-dir": "web",
  63. "symfony-tests-dir": "tests",
  64. "symfony-assets-install": "relative",
  65. "incenteev-parameters": {
  66. "file": "app/config/parameters.yml"
  67. }
  68. }
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement