composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "gedmo/doctrine-extensions",
  3. "type": "library",
  4. "description": "Doctrine2 behavioral extensions",
  5. "keywords": [
  6. "behaviors",
  7. "doctrine2",
  8. "extensions",
  9. "gedmo",
  10. "sluggable",
  11. "loggable",
  12. "translatable",
  13. "tree",
  14. "nestedset",
  15. "sortable",
  16. "timestampable",
  17. "blameable",
  18. "uploadable"
  19. ],
  20. "homepage": "http://gediminasm.org/",
  21. "license": "MIT",
  22. "authors": [
  23. {
  24. "name": "Gediminas Morkevicius",
  25. "email": "gediminas.morkevicius@gmail.com"
  26. },
  27. {
  28. "name": "Gustavo Falco",
  29. "email": "comfortablynumb84@gmail.com"
  30. },
  31. {
  32. "name": "David Buchmann",
  33. "email": "david@liip.ch"
  34. }
  35. ],
  36. "support": {
  37. "email": "gediminas.morkevicius@gmail.com",
  38. "wiki": "https://github.com/Atlantic18/DoctrineExtensions/tree/master/doc"
  39. },
  40. "require": {
  41. "php": ">=5.3.2",
  42. "behat/transliterator": "~1.2",
  43. "doctrine/common": "~2.4"
  44. },
  45. "require-dev": {
  46. "doctrine/mongodb-odm": ">=1.0.2",
  47. "doctrine/orm": ">=2.5.0",
  48. "doctrine/common": ">=2.5.0",
  49. "symfony/yaml": "~2.6|~3.0|~4.0",
  50. "phpunit/phpunit": "^4.8.35|^5.7|^6.5"
  51. },
  52. "conflict": {
  53. "doctrine/annotations": "<1.2"
  54. },
  55. "suggest": {
  56. "doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM",
  57. "doctrine/orm": "to use the extensions with the ORM"
  58. },
  59. "autoload": {
  60. "psr-4": { "Gedmo\\": "lib/Gedmo" }
  61. },
  62. "config": {
  63. "bin-dir": "bin"
  64. },
  65. "extra": {
  66. "branch-alias": {
  67. "dev-master": "2.4.x-dev"
  68. }
  69. }
  70. }