Guest User

Untitled

a guest
Jan 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. {
  2. "name": "symfony/framework-standard-edition",
  3. "license": "MIT",
  4. "type": "project",
  5. "description": "The "Symfony Standard Edition" distribution",
  6. "autoload": {
  7. "psr-4": {
  8. "AppBundle\": "src/AppBundle",
  9. "CarBundle\": "src/CarBundle"
  10. },
  11. "classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
  12. },
  13. "autoload-dev": {
  14. "psr-4": { "Tests\": "tests/" },
  15. "files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
  16. },
  17. "require": {
  18. "php": ">=5.5.9",
  19. "doctrine/doctrine-bundle": "^1.6",
  20. "doctrine/orm": "^2.5",
  21. "incenteev/composer-parameter-handler": "^2.0",
  22. "knplabs/knp-menu-bundle": "^2.0",
  23. "sensio/distribution-bundle": "^5.0.19",
  24. "sensio/framework-extra-bundle": "^5.0.0",
  25. "symfony/monolog-bundle": "^3.1.0",
  26. "symfony/polyfill-apcu": "^1.0",
  27. "symfony/swiftmailer-bundle": "^2.6.4",
  28. "symfony/symfony": "3.4.*",
  29. "twig/twig": "^1.0||^2.0"
  30. },
  31. "require-dev": {
  32. "sensio/generator-bundle": "^3.0",
  33. "symfony/phpunit-bridge": "^3.0"
  34. },
  35. "scripts": {
  36. "symfony-scripts": [
  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-install-cmd": [
  45. "@symfony-scripts"
  46. ],
  47. "post-update-cmd": [
  48. "@symfony-scripts"
  49. ]
  50. },
  51. "config": {
  52. "platform": {
  53. "php": "5.5.9"
  54. },
  55. "sort-packages": true
  56. },
  57. "extra": {
  58. "symfony-app-dir": "app",
  59. "symfony-bin-dir": "bin",
  60. "symfony-var-dir": "var",
  61. "symfony-web-dir": "web",
  62. "symfony-tests-dir": "tests",
  63. "symfony-assets-install": "relative",
  64. "incenteev-parameters": {
  65. "file": "app/config/parameters.yml"
  66. },
  67. "branch-alias": {
  68. "dev-master": "3.4-dev"
  69. }
  70. }
  71. }
Add Comment
Please, Sign In to add comment