composer.json 999 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "topthink/think-orm",
  3. "description": "the PHP Database&ORM Framework",
  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": ">=8.0.0",
  17. "ext-json": "*",
  18. "ext-pdo": "*",
  19. "psr/log": ">=1.0",
  20. "psr/simple-cache": "^3.0",
  21. "topthink/think-helper": "^3.1",
  22. "topthink/think-validate": "^3.0"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^9.6|^10"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "think\\": "src"
  30. },
  31. "files": [
  32. "src/helper.php",
  33. "stubs/load_stubs.php"
  34. ]
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "tests\\": "tests"
  39. }
  40. },
  41. "suggest": {
  42. "ext-mongodb": "provide mongodb support"
  43. },
  44. "config": {
  45. "sort-packages": true
  46. }
  47. }