composer.json 410 B

123456789101112131415161718192021
  1. {
  2. "name": "topthink/think-log",
  3. "description": "think log",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "liu21st",
  8. "email": "liu21st@gmail.com"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=7.1.0",
  13. "psr/log": "~1.0",
  14. "topthink/think-container": "^2.0"
  15. },
  16. "autoload": {
  17. "psr-4": {
  18. "think\\": "src"
  19. }
  20. }
  21. }