composer.json 560 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "topthink/think-orm",
  3. "description": "think orm",
  4. "keywords": [
  5. "orm",
  6. "database"
  7. ],
  8. "license": "Apache-2.0",
  9. "authors": [
  10. {
  11. "name": "liu21st",
  12. "email": "liu21st@gmail.com"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=7.1.0",
  17. "ext-json": "*",
  18. "psr/simple-cache": "^1.0",
  19. "psr/log": "~1.0",
  20. "topthink/think-helper":"^3.1"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "think\\": "src"
  25. },
  26. "files": []
  27. }
  28. }