first commit

This commit is contained in:
Mr.Qin
2022-08-19 19:48:37 +08:00
commit afdd648b65
3275 changed files with 631084 additions and 0 deletions

53
vendor/yansongda/supports/composer.json vendored Normal file
View File

@@ -0,0 +1,53 @@
{
"name": "yansongda/supports",
"description": "common components",
"keywords": ["support", "array", "collection", "config", "http", "guzzle", "throttle"],
"support": {
"issues": "https://github.com/yansongda/supports/issues",
"source": "https://github.com/yansongda/supports"
},
"authors": [
{
"name": "yansongda",
"email": "me@yansongda.cn"
}
],
"require": {
"php": ">=7.3"
},
"require-dev": {
"predis/predis": "^1.1",
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.4",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.1.0",
"symfony/console": "^5.1",
"guzzlehttp/guzzle": "^7.0",
"monolog/monolog": "^2.0"
},
"autoload": {
"files": [
"src/Functions.php"
],
"psr-4": {
"Yansongda\\Supports\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yansongda\\Supports\\Tests\\": "tests/"
}
},
"suggest": {
"predis/predis": "Allows to use throttle feature",
"symfony/console": "Use stdout logger",
"guzzlehttp/guzzle": "Use http trait",
"monolog/monolog": "Use logger"
},
"scripts": {
"test": "./vendor/bin/phpunit -c phpunit.xml --colors=always",
"cs-fix": "php-cs-fixer fix --dry-run --diff 1>&2",
"analyse": "phpstan analyse --memory-limit 300M -l 5 -c phpstan.neon ./src"
},
"license": "MIT"
}