composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "mpociot/laravel-apidoc-generator",
  3. "license": "MIT",
  4. "description": "Generate beautiful API documentation from your Laravel application",
  5. "keywords": [
  6. "API",
  7. "Documentation",
  8. "Laravel"
  9. ],
  10. "homepage": "http://github.com/mpociot/laravel-apidoc-generator",
  11. "authors": [
  12. {
  13. "name": "Marcel Pociot",
  14. "email": "m.pociot@gmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.0.0",
  19. "fzaninotto/faker": "~1.8",
  20. "illuminate/routing": "5.5.* || 5.6.* || 5.7.* || 5.8.*",
  21. "illuminate/support": "5.5.* || 5.6.* || 5.7.* || 5.8.*",
  22. "illuminate/console": "5.5.* || 5.6.* || 5.7.* || 5.8.*",
  23. "mpociot/documentarian": "^0.2.0",
  24. "mpociot/reflection-docblock": "^1.0.1",
  25. "ramsey/uuid": "^3.8"
  26. },
  27. "require-dev": {
  28. "orchestra/testbench": "3.5.* || 3.6.* || 3.7.*",
  29. "phpunit/phpunit": "^6.0.0 || ^7.4.0",
  30. "dingo/api": "2.0.0-alpha1",
  31. "mockery/mockery": "^1.2.0",
  32. "league/fractal": "^0.17.0"
  33. },
  34. "suggest": {
  35. "league/fractal": "Required for transformers support"
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "Mpociot\\ApiDoc\\": "src/"
  40. }
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "Mpociot\\ApiDoc\\Tests\\": "tests/"
  45. }
  46. },
  47. "scripts": {
  48. "test-ci": "phpunit --coverage-clover=coverage.xml"
  49. },
  50. "extra": {
  51. "laravel": {
  52. "providers": [
  53. "Mpociot\\ApiDoc\\ApiDocGeneratorServiceProvider"
  54. ]
  55. }
  56. }
  57. }