69 lines
1.7 KiB
JSON
69 lines
1.7 KiB
JSON
{
|
|
"name": "zyimm/sms",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"php",
|
|
"hyperf",
|
|
"sms"
|
|
],
|
|
"description": "Based on a modified version of Hyperf SMS package.",
|
|
"authors": [
|
|
{
|
|
"name": "zyimm",
|
|
"email": "zyimm@qq.com"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Zyimm\\Sms\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"ZyimmTest\\Sms\\": "tests"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=7.4",
|
|
"ext-json": "*",
|
|
"ext-simplexml": "*",
|
|
"ext-swoole": ">=4.5",
|
|
"giggsey/libphonenumber-for-php": "^8.12",
|
|
"hyperf-ext/contract": "~2.2.0",
|
|
"hyperf/async-queue": "~2.2.0",
|
|
"hyperf/command": "~2.2.0",
|
|
"hyperf/config": "~2.2.0",
|
|
"hyperf/devtool": "~2.2.0",
|
|
"hyperf/di": "~2.2.0",
|
|
"hyperf/event": "~2.2.0",
|
|
"hyperf/framework": "~2.2.0",
|
|
"hyperf/guzzle": "~2.2.0",
|
|
"hyperf/logger": "~2.2.0",
|
|
"hyperf/validation": "^2.2"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^3.0",
|
|
"hyperf/testing": "~2.2.0",
|
|
"phpstan/phpstan": "^0.12",
|
|
"swoole/ide-helper": "dev-master",
|
|
"mockery/mockery": "^1.0"
|
|
},
|
|
"suggest": {
|
|
"hyperf/validation": "Required to use the validation."
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"scripts": {
|
|
"test": "co-phpunit --prepend tests/bootstrap.php -c phpunit.xml --colors=always",
|
|
"analyse": "phpstan analyse --memory-limit 1024M -l 0 ./src",
|
|
"cs-fix": "php-cs-fixer fix $1"
|
|
},
|
|
"extra": {
|
|
"hyperf": {
|
|
"config": "Zyimm\\Sms\\ConfigProvider"
|
|
}
|
|
}
|
|
}
|