菜谱项目

composer.json 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "dingo/api",
  3. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  4. "keywords": [
  5. "api",
  6. "dingo",
  7. "laravel",
  8. "restful"
  9. ],
  10. "license": "BSD-3-Clause",
  11. "authors": [
  12. {
  13. "name": "Jason Lewis",
  14. "email": "jason.lewis1991@gmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": "^5.5.9 || ^7.0",
  19. "dingo/blueprint": "0.2.*",
  20. "illuminate/routing": "^5.1",
  21. "illuminate/support": "^5.1",
  22. "league/fractal": ">=0.12.0"
  23. },
  24. "require-dev": {
  25. "illuminate/auth": "^5.1",
  26. "illuminate/cache": "^5.1",
  27. "illuminate/console": "^5.1",
  28. "illuminate/database": "^5.1",
  29. "illuminate/events": "^5.1",
  30. "illuminate/filesystem": "^5.1",
  31. "illuminate/log": "^5.1",
  32. "illuminate/pagination": "^5.1",
  33. "laravel/lumen-framework": "5.1.* || 5.2.*",
  34. "lucadegasperi/oauth2-server-laravel": "5.0.*",
  35. "mockery/mockery": "~0.9",
  36. "phpunit/phpunit": "^4.8 || ^5.0",
  37. "squizlabs/php_codesniffer": "~2.0",
  38. "tymon/jwt-auth": "1.0.*"
  39. },
  40. "suggest": {
  41. "lucadegasperi/oauth2-server-laravel": "Protect your API with OAuth 2.0.",
  42. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Dingo\\Api\\": "src/"
  47. },
  48. "files": [
  49. "src/helpers.php"
  50. ]
  51. },
  52. "autoload-dev": {
  53. "psr-4": {
  54. "Dingo\\Api\\Tests\\": "tests/"
  55. }
  56. },
  57. "extra": {
  58. "branch-alias": {
  59. "dev-master": "1.0-dev"
  60. }
  61. },
  62. "minimum-stability": "dev",
  63. "prefer-stable": true
  64. }