composer.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "tymon/jwt-auth",
  3. "description": "JSON Web Token Authentication for Laravel and Lumen",
  4. "keywords": [
  5. "auth",
  6. "authentication",
  7. "json web token",
  8. "jwt",
  9. "laravel"
  10. ],
  11. "homepage": "https://github.com/tymondesigns/jwt-auth",
  12. "support": {
  13. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  14. "source": "https://github.com/tymondesigns/jwt-auth"
  15. },
  16. "license": "MIT",
  17. "authors": [
  18. {
  19. "name": "Sean Tymon",
  20. "email": "tymon148@gmail.com",
  21. "homepage": "https://tymon.xyz",
  22. "role": "Developer"
  23. }
  24. ],
  25. "require": {
  26. "php": "^7.4|^8.0",
  27. "illuminate/auth": "^5.2|^6|^7|^8|^9",
  28. "illuminate/contracts": "^5.2|^6|^7|^8|^9",
  29. "illuminate/http": "^5.2|^6|^7|^8|^9",
  30. "illuminate/support": "^5.2|^6|^7|^8|^9",
  31. "lcobucci/jwt": "^3.4|^4.0",
  32. "namshi/jose": "^7.0",
  33. "nesbot/carbon": "^1.0|^2.0"
  34. },
  35. "require-dev": {
  36. "illuminate/console": "^5.2|^6|^7|^8|^9",
  37. "illuminate/database": "^5.2|^6|^7|^8|^9",
  38. "illuminate/routing": "^5.2|^6|^7|^8|^9",
  39. "mockery/mockery": ">=0.9.9",
  40. "phpunit/phpunit": "^8.5|^9.4",
  41. "yoast/phpunit-polyfills": "^0.2.0"
  42. },
  43. "autoload": {
  44. "psr-4": {
  45. "Tymon\\JWTAuth\\": "src/"
  46. }
  47. },
  48. "autoload-dev": {
  49. "psr-4": {
  50. "Tymon\\JWTAuth\\Test\\": "tests/"
  51. }
  52. },
  53. "extra": {
  54. "branch-alias": {
  55. "dev-develop": "1.0-dev"
  56. },
  57. "laravel": {
  58. "aliases": {
  59. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  60. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  61. },
  62. "providers": [
  63. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  64. ]
  65. }
  66. },
  67. "funding": [
  68. {
  69. "type": "patreon",
  70. "url": "https://www.patreon.com/seantymon"
  71. }
  72. ],
  73. "config": {
  74. "sort-packages": true
  75. },
  76. "prefer-stable": true,
  77. "minimum-stability": "dev",
  78. "scripts": {
  79. "test": "phpunit --colors=always",
  80. "test:ci": "composer test -- --verbose --coverage-text --coverage-clover=coverage.xml"
  81. }
  82. }