composer.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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": "^5.5.9 || ^7.0",
  27. "illuminate/auth": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  28. "illuminate/contracts": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  29. "illuminate/http": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  30. "illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  31. "lcobucci/jwt": "^3.2",
  32. "namshi/jose": "^7.0",
  33. "nesbot/carbon": "^1.0"
  34. },
  35. "require-dev": {
  36. "cartalyst/sentinel": "2.0.*",
  37. "illuminate/console": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  38. "illuminate/database": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  39. "illuminate/routing": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.*",
  40. "mockery/mockery": ">=0.9.9",
  41. "phpunit/phpunit": "~4.8 || ~6.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. "config": {
  68. "sort-packages": true
  69. },
  70. "prefer-stable": true,
  71. "minimum-stability": "dev",
  72. "scripts": {
  73. "test": "phpunit --colors=always",
  74. "test:ci": "composer test -- --verbose --coverage-text --coverage-clover=coverage.xml"
  75. }
  76. }