composer.json 572 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. "topthink/think-container":"^2.0"
  18. },
  19. "suggest": {
  20. "topthink/think-cache": "Required to use query cache (^2.0)."
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "think\\": "src"
  25. },
  26. "files": []
  27. }
  28. }