You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zhishifufei_php/vendor/topthink/think-helper/composer.json

37 lines
720 B

10 months ago
{
"name": "topthink/think-helper",
8 months ago
"description": "The ThinkPHP6 Helper Package",
10 months ago
"license": "Apache-2.0",
"authors": [
{
"name": "yunwuxin",
"email": "448901948@qq.com"
}
],
8 months ago
"require": {
"php": ">=7.1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
10 months ago
"autoload": {
"psr-4": {
8 months ago
"think\\": "src"
10 months ago
},
"files": [
"src/helper.php"
]
8 months ago
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --colors"
},
"scripts-descriptions": {
"test": "Run all tests."
10 months ago
}
}