composer.json 838 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. "ext-pdo": "*",
  19. "psr/simple-cache": "^1.0",
  20. "psr/log": "~1.0",
  21. "topthink/think-helper":"^3.1"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^7|^8|^9.5"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "think\\": "src"
  29. },
  30. "files": [
  31. "stubs/load_stubs.php"
  32. ]
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "tests\\": "tests"
  37. }
  38. },
  39. "config": {
  40. "sort-packages": true
  41. }
  42. }