加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
composer.json 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
guanguans 提交于 2021-04-23 19:59 . chore: Adapt to PHP8 version
{
"name": "guanguans/music-php",
"description": "music search and download",
"keywords": [
"music",
"download songs",
"dl",
"search"
],
"support": {
"issues": "https://github.com/guanguans/music-php/issues",
"source": "https://github.com/guanguans/music-php"
},
"type": "library",
"authors": [
{
"name": "琯琯",
"email": "yzmguanguan@gmail.com"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3",
"jolicode/jolinotif": "^2.1",
"metowolf/meting": "^1.5",
"spatie/async": "dev-master",
"symfony/console": "^4.0||^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/stopwatch": "~5"
},
"require-dev": {
"phpunit/phpunit": "~7||~8",
"mockery/mockery": "^1.3"
},
"license": "MIT",
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Guanguans\\MusicPHP\\": "src"
},
"files": [
"src/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Guanguans\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"bin": [
"bin/music-php"
],
"scripts": {
"tests": "./vendor/bin/phpunit --coverage-text --color=always"
},
"scripts-descriptions": {
"tests": "Run the phpunit tests."
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化