| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "name": "toolkit/stdlib",
- "type": "library",
- "description": "some stdlib tool library of the php",
- "keywords": [
- "library",
- "tool",
- "array",
- "object",
- "string",
- "php"
- ],
- "homepage": "https://github.com/php-toolkit/stdlib",
- "license": "MIT",
- "authors": [
- {
- "name": "inhere",
- "email": "in.798@qq.com",
- "homepage": "https://github.com/inhere/"
- }
- ],
- "require": {
- "php": ">=8.1",
- "ext-mbstring": "*"
- },
- "require-dev": {
- "psr/container": "^2.0"
- },
- "autoload": {
- "psr-4": {
- "Toolkit\\Stdlib\\": "src/"
- },
- "files": [
- "src/func.php"
- ]
- },
- "suggest": {
- "inhere/php-validate": "Very lightweight data validate tool"
- }
- }
|