composer.json 904 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "topthink/think",
  3. "description": "the new thinkphp framework",
  4. "type": "project",
  5. "keywords": [
  6. "framework",
  7. "thinkphp",
  8. "ORM"
  9. ],
  10. "homepage": "http://thinkphp.cn/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "liu21st",
  15. "email": "liu21st@gmail.com"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.0.0",
  20. "topthink/framework": "5.1.*",
  21. "robmorgan/phinx": "^0.10.7",
  22. "ext-curl": "*",
  23. "ext-json": "*",
  24. "firebase/php-jwt": "^5.2",
  25. "guzzlehttp/guzzle": "^7.0"
  26. }
  27. ,
  28. "require-dev": {
  29. "roave/security-advisories": "dev-master"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "app\\": "application"
  34. }
  35. },
  36. "extra": {
  37. "think-path": "thinkphp"
  38. },
  39. "config": {
  40. "preferred-install": "dist"
  41. }
  42. }