composer.json 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "root/ftth",
  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. "repositories": [
  20. {
  21. "type": "vcs",
  22. "url": "ssh://git@200.50.168.30:222/VendorSoftwareFlowdat3/BaseAdmin.git",
  23. "options": {
  24. "local_pk": "./keys/bitbucket.id_rsa"
  25. }
  26. },
  27. {
  28. "type": "vcs",
  29. "url": "ssh://git@200.50.168.30:222/VendorSoftwareFlowdat3/Webservice.git",
  30. "options": {
  31. "local_pk": "./keys/bitbucket.id_rsa"
  32. }
  33. }
  34. ],
  35. "config":{
  36. "secure-http": false
  37. },
  38. "require": {
  39. "php": ">=5.5.9",
  40. "symfony/symfony": "3.2.*",
  41. "doctrine/orm": "^2.5",
  42. "doctrine/doctrine-bundle": "^1.6",
  43. "doctrine/doctrine-cache-bundle": "^1.2",
  44. "symfony/swiftmailer-bundle": "^2.3.10",
  45. "symfony/monolog-bundle": "^3.0.2",
  46. "symfony/polyfill-apcu": "^1.0",
  47. "sensio/distribution-bundle": "^5.0",
  48. "sensio/framework-extra-bundle": "^3.0.2",
  49. "incenteev/composer-parameter-handler": "^2.0",
  50. "sonata-project/admin-bundle": "^3.12",
  51. "sonata-project/doctrine-orm-admin-bundle": "^3.1",
  52. "jms/serializer-bundle": "^1.1",
  53. "phpunit/phpunit": "5.5.*",
  54. "stof/doctrine-extensions-bundle": "^1.2",
  55. "voryx/restgeneratorbundle": "dev-master",
  56. "base-admin": "dev-master",
  57. "webservice": "dev-master"
  58. },
  59. "require-dev": {
  60. "sensio/generator-bundle": "^3.0",
  61. "symfony/phpunit-bridge": "^3.0"
  62. },
  63. "scripts": {
  64. "symfony-scripts": [
  65. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  66. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  67. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  68. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  69. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
  70. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
  71. ],
  72. "post-install-cmd": [
  73. "@symfony-scripts"
  74. ],
  75. "post-update-cmd": [
  76. "@symfony-scripts"
  77. ]
  78. },
  79. "extra": {
  80. "symfony-app-dir": "app",
  81. "symfony-bin-dir": "bin",
  82. "symfony-var-dir": "var",
  83. "symfony-web-dir": "web",
  84. "symfony-tests-dir": "tests",
  85. "symfony-assets-install": "relative",
  86. "incenteev-parameters": {
  87. "file": "app/config/parameters.yml"
  88. },
  89. "branch-alias": null
  90. }
  91. }