composer.json 737 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "toolkit/stdlib",
  3. "type": "library",
  4. "description": "some stdlib tool library of the php",
  5. "keywords": [
  6. "library",
  7. "tool",
  8. "array",
  9. "object",
  10. "string",
  11. "php"
  12. ],
  13. "homepage": "https://github.com/php-toolkit/stdlib",
  14. "license": "MIT",
  15. "authors": [
  16. {
  17. "name": "inhere",
  18. "email": "in.798@qq.com",
  19. "homepage": "https://github.com/inhere/"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=8.1",
  24. "ext-mbstring": "*"
  25. },
  26. "require-dev": {
  27. "psr/container": "^2.0"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Toolkit\\Stdlib\\": "src/"
  32. },
  33. "files": [
  34. "src/func.php"
  35. ]
  36. },
  37. "suggest": {
  38. "inhere/php-validate": "Very lightweight data validate tool"
  39. }
  40. }