composer.json 823 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "sizeg/yii2-jwt",
  3. "description": "JWT based on Icobucci",
  4. "type": "yii2-extension",
  5. "keywords": ["yii2", "yii 2", "jwt"],
  6. "authors": [
  7. {
  8. "name": "Dmitriy Demin",
  9. "email": "sizemail@gmail.com",
  10. "homepage": "https://sizeg.tk"
  11. }
  12. ],
  13. "license": "BSD-3-Clause",
  14. "require": {
  15. "php": ">=5.6.0",
  16. "lcobucci/jwt": "~3.3.0",
  17. "yiisoft/yii2": "~2.0.0"
  18. },
  19. "require-dev": {
  20. "phpunit/phpunit": "^4.8"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "sizeg\\jwt\\": ""
  25. }
  26. },
  27. "autoload-dev": {
  28. "psr-4": {
  29. "sizeg\\jwt\\tests\\": "tests/"
  30. }
  31. },
  32. "repositories": [
  33. {
  34. "type": "composer",
  35. "url": "https://asset-packagist.org"
  36. }
  37. ]
  38. }