菜谱项目

composer.json 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "tymon/jwt-auth",
  3. "description": "JSON Web Token Authentication for Laravel 4 and 5",
  4. "keywords": [
  5. "jwt",
  6. "auth",
  7. "authentication",
  8. "tymon",
  9. "laravel",
  10. "json web token"
  11. ],
  12. "homepage": "https://github.com/tymondesigns/jwt-auth",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "Sean Tymon",
  17. "email": "tymon148@gmail.com",
  18. "homepage": "http://tymondesigns.com",
  19. "role": "Developer"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=5.4.0",
  24. "illuminate/support": "~5.0",
  25. "illuminate/http": "~5.0",
  26. "namshi/jose": "^5.0 || ^7.0",
  27. "nesbot/carbon": "~1.0"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "4.*",
  31. "mockery/mockery": "0.9.*",
  32. "illuminate/auth": "~5.0",
  33. "illuminate/database": "~5.0",
  34. "illuminate/console" : "~5.0"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Tymon\\JWTAuth\\": "src"
  39. }
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "Tymon\\JWTAuth\\Test\\": "tests"
  44. }
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-develop": "0.5-dev"
  49. }
  50. }
  51. }