Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. {
  2. "name": "nelmio/api-doc-bundle",
  3. "description": "Generates documentation for your REST API from annotations",
  4. "keywords": ["api", "documentation", "doc", "rest"],
  5. "type": "symfony-bundle",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Nelmio",
  10. "homepage": "http://nelm.io"
  11. },
  12. {
  13. "name": "Symfony Community",
  14. "homepage": "https://github.com/nelmio/NelmioApiDocBundle/contributors"
  15. }
  16. ],
  17. "require": {
  18. "symfony/twig-bundle": "~2.1",
  19. "symfony/framework-bundle": "~2.1",
  20. "symfony/console": "~2.1",
  21. "michelf/php-markdown": "~1.4"
  22. },
  23. "conflict": {
  24. "jms/serializer": "<0.12",
  25. "jms/serializer-bundle": "<0.11"
  26. },
  27. "require-dev": {
  28. "symfony/css-selector": "~2.1",
  29. "symfony/browser-kit": "~2.1",
  30. "symfony/validator": "~2.1",
  31. "symfony/yaml": "~2.1",
  32. "symfony/form": "~2.1",
  33. "friendsofsymfony/rest-bundle": "~1.0",
  34. "jms/serializer-bundle": ">=0.11",
  35. "sensio/framework-extra-bundle": "~2.1"
  36. },
  37. "suggest": {
  38. "symfony/form": "For using form definitions as input.",
  39. "symfony/validator": "For making use of validator information in the doc.",
  40. "friendsofsymfony/rest-bundle": "For making use of REST information in the doc.",
  41. "jms/serializer": "For making use of serializer information in the doc."
  42. },
  43. "autoload": {
  44. "psr-0": { "Nelmio\\ApiDocBundle": "" }
  45. },
  46. "target-dir": "Nelmio/ApiDocBundle",
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "2.5.x-dev"
  50. }
  51. }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement