hyperf-captcha/vendor/hyperf-ext/encryption/composer.json

62 lines
1.5 KiB
JSON
Raw Normal View History

2022-03-02 09:19:47 +00:00
{
"name": "hyperf-ext/encryption",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"encryption"
],
"description": "The Hyperf Encryption package.",
"authors": [
{
"name": "Eric Zhu",
"email": "eric@zhu.email"
},
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
}
],
"autoload": {
"psr-4": {
"HyperfExt\\Encryption\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\": "tests"
}
},
"require": {
"php": ">=7.3",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-swoole": ">=4.5",
"hyperf/command": "~2.2.0",
"hyperf/di": "~2.2.0",
"hyperf/framework": "~2.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"hyperf/testing": "~2.2.0",
"limingxinleo/happy-join-hyperf": "^1.0",
"phpstan/phpstan": "^0.12",
"swoole/ide-helper": "dev-master"
},
"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": "HyperfExt\\Encryption\\ConfigProvider"
}
}
}