composer.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "loconox/exegetes-doc-web",
  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.5.9",
  21. "symfony/symfony": "3.2.*",
  22. "doctrine/orm": "^2.5",
  23. "doctrine/doctrine-bundle": "^1.6",
  24. "doctrine/doctrine-cache-bundle": "^1.2",
  25. "symfony/swiftmailer-bundle": "^2.3.10",
  26. "symfony/monolog-bundle": "^3.0.2",
  27. "symfony/polyfill-apcu": "^1.0",
  28. "sensio/distribution-bundle": "^5.0",
  29. "sensio/framework-extra-bundle": "^3.0.2",
  30. "incenteev/composer-parameter-handler": "^2.0",
  31. "twig/twig": "^1.0||^2.0",
  32. "hasbridge/json-schema-validator": "^0.2.0",
  33. "seboettg/citeproc-php": "^2.0",
  34. "phpdocumentor/reflection-docblock": "^3.1",
  35. "twig/extensions": "^1.5"
  36. },
  37. "require-dev": {
  38. "sensio/generator-bundle": "^3.0",
  39. "symfony/phpunit-bridge": "^3.0"
  40. },
  41. "scripts": {
  42. "symfony-scripts": [
  43. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  44. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  45. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  46. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  47. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
  48. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
  49. ],
  50. "csl-vendors": [
  51. "vendor/seboettg/citeproc-php/install.sh styles-distribution",
  52. "vendor/seboettg/citeproc-php/install.sh locales"
  53. ],
  54. "post-install-cmd": [
  55. "@symfony-scripts",
  56. "@csl-vendors"
  57. ],
  58. "post-update-cmd": [
  59. "@symfony-scripts",
  60. "@csl-vendors"
  61. ]
  62. },
  63. "extra": {
  64. "symfony-app-dir": "app",
  65. "symfony-bin-dir": "bin",
  66. "symfony-var-dir": "var",
  67. "symfony-web-dir": "web",
  68. "symfony-tests-dir": "tests",
  69. "symfony-assets-install": "relative",
  70. "incenteev-parameters": {
  71. "file": "app/config/parameters.yml"
  72. },
  73. "branch-alias": null
  74. },
  75. "repository": [
  76. {
  77. "type": "cvs",
  78. "url": "/Users/loconox/PhpstormProjects/citeproc-php"
  79. }
  80. ]
  81. }