composer.json 583 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "mpociot/laravel-apidoc-generator",
  3. "license": "MIT",
  4. "description": "Generate beautiful API documentation from your Laravel / Lumen application",
  5. "keywords": ["API","Documentation","Laravel"],
  6. "homepage": "http://github.com/mpociot/apidoc",
  7. "authors": [
  8. {
  9. "name": "Marcel Pociot",
  10. "email": "m.pociot@gmail.com"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=7.0.0",
  15. "laravel/framework": "~5.0",
  16. "phpdocumentor/reflection-docblock": "~2.0"
  17. },
  18. "require-dev": {
  19. },
  20. "autoload": {
  21. "psr-0": {
  22. "Mpociot\\ApiDoc": "src/"
  23. }
  24. }
  25. }