composer.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "francois/mediatheque",
  3. "license": "proprietary",
  4. "type": "project",
  5. "autoload": {
  6. "psr-4": {
  7. "AppBundle\\": "src/AppBundle",
  8. "DocumentBundle\\": "src/DocumentBundle"
  9. },
  10. "classmap": [
  11. "app/AppKernel.php",
  12. "app/AppCache.php"
  13. ]
  14. },
  15. "autoload-dev": {
  16. "psr-4": {
  17. "Tests\\": "tests/"
  18. },
  19. "files": [
  20. "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php"
  21. ]
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "doctrine/doctrine-bundle": "^1.6",
  26. "doctrine/orm": "^2.5",
  27. "incenteev/composer-parameter-handler": "^2.0",
  28. "sensio/distribution-bundle": "^5.0.19",
  29. "sensio/framework-extra-bundle": "^5.0.0",
  30. "symfony/monolog-bundle": "^3.1.0",
  31. "symfony/polyfill-apcu": "^1.0",
  32. "symfony/swiftmailer-bundle": "^2.6.4",
  33. "symfony/symfony": "3.4.*",
  34. "twig/twig": "^1.0||^2.0"
  35. },
  36. "require-dev": {
  37. "sensio/generator-bundle": "^3.0",
  38. "symfony/phpunit-bridge": "^3.0"
  39. },
  40. "scripts": {
  41. "symfony-scripts": [
  42. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  43. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  44. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  45. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  46. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
  47. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
  48. ],
  49. "post-install-cmd": [
  50. "@symfony-scripts"
  51. ],
  52. "post-update-cmd": [
  53. "@symfony-scripts"
  54. ]
  55. },
  56. "config": {
  57. "sort-packages": true
  58. },
  59. "extra": {
  60. "symfony-app-dir": "app",
  61. "symfony-bin-dir": "bin",
  62. "symfony-var-dir": "var",
  63. "symfony-web-dir": "web",
  64. "symfony-tests-dir": "tests",
  65. "symfony-assets-install": "relative",
  66. "incenteev-parameters": {
  67. "file": "app/config/parameters.yml"
  68. },
  69. "branch-alias": null
  70. }
  71. }