composer.json 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "chamilo/chamilo-lms",
  3. "type": "project",
  4. "homepage": "http://www.chamilo.org",
  5. "license": "GPL-3.0",
  6. "support": {
  7. "forum": "http://www.chamilo.org/forum",
  8. "irc": "irc://irc.freenode.org/chamilo"
  9. },
  10. "autoload": {
  11. "psr-0": {
  12. "": "src/"
  13. },
  14. "classmap": [
  15. "main/auth",
  16. "main/admin",
  17. "main/cron/lang",
  18. "main/coursecopy",
  19. "main/exercice",
  20. "main/gradebook/lib",
  21. "main/newscorm",
  22. "main/inc/lib",
  23. "main/install",
  24. "main/inc/lib/getid3",
  25. "main/survey"
  26. ]
  27. },
  28. "repositories": [
  29. {
  30. "type": "package",
  31. "package": {
  32. "name": "jquery/jquery",
  33. "version": "1.10.2",
  34. "dist": {
  35. "url": "http://code.jquery.com/jquery-1.10.2.js",
  36. "type": "file"
  37. }
  38. }
  39. }
  40. ],
  41. "require": {
  42. "php": ">=5.3.3",
  43. "symfony/symfony": "~2.4",
  44. "doctrine/orm": "~2.2,>=2.2.3",
  45. "doctrine/doctrine-bundle": "~1.2",
  46. "twig/extensions": "~1.0",
  47. "symfony/assetic-bundle": "~2.3",
  48. "symfony/swiftmailer-bundle": "~2.3",
  49. "symfony/monolog-bundle": "~2.4",
  50. "sensio/distribution-bundle": "~2.3",
  51. "sensio/framework-extra-bundle": "~3.0",
  52. "sensio/generator-bundle": "~2.3",
  53. "incenteev/composer-parameter-handler": "~2.0",
  54. "braincrafted/bootstrap-bundle": "~2.0",
  55. "gedmo/doctrine-extensions": "~2.3",
  56. "twbs/bootstrap": "3.0.*",
  57. "jquery/jquery": "1.10.*",
  58. "oyejorge/less.php": "~1.5",
  59. "sonata-project/block-bundle": "~2.2",
  60. "knplabs/knp-menu-bundle": "~1.1",
  61. "white-october/pagerfanta-bundle": "dev-master"
  62. },
  63. "scripts": {
  64. "post-install-cmd": [
  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. ],
  71. "post-update-cmd": [
  72. "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
  73. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
  74. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
  75. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
  76. "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
  77. ]
  78. },
  79. "config": {
  80. "bin-dir": "bin"
  81. },
  82. "extra": {
  83. "symfony-app-dir": "app",
  84. "symfony-web-dir": "web",
  85. "incenteev-parameters": {
  86. "file": "app/config/parameters.yml"
  87. },
  88. "branch-alias": {
  89. "dev-master": "2.4-dev"
  90. }
  91. }
  92. }