2022-03-29 19:28:25 +08:00
|
|
|
{
|
2022-04-28 22:04:04 +08:00
|
|
|
"name": "singularity/hyperf-saml",
|
|
|
|
|
"type": "library",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"keywords": [
|
|
|
|
|
"php",
|
|
|
|
|
"hyperf"
|
|
|
|
|
],
|
|
|
|
|
"description": "A SAML SDK for Hyperf framework",
|
|
|
|
|
"autoload": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"Singularity\\HyperfSaml\\": "src/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"autoload-dev": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"HyperfTest\\": "tests"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"require": {
|
2023-12-04 17:46:16 +08:00
|
|
|
"php": ">=8.1",
|
2023-12-25 17:10:21 +08:00
|
|
|
"ext-redis": "*",
|
2023-12-04 17:46:16 +08:00
|
|
|
"hyperf/config": "3.1.*",
|
|
|
|
|
"hyperf/constants": "3.1.*",
|
|
|
|
|
"hyperf/di": "3.1.*",
|
|
|
|
|
"hyperf/http-server": "3.1.*",
|
|
|
|
|
"hyperf/translation": "3.1.*",
|
|
|
|
|
"hyperf/validation": "3.1.*",
|
2022-05-30 21:47:56 +08:00
|
|
|
"litesaml/lightsaml": "~3.0.0",
|
2023-07-25 15:03:59 +08:00
|
|
|
"singularity/hdk-core": "^1.0.0",
|
|
|
|
|
"singularity/hdk-auth": "^1.0.0",
|
2023-12-25 17:10:21 +08:00
|
|
|
"teapot/status-code": "^1.1"
|
2022-04-28 22:04:04 +08:00
|
|
|
},
|
|
|
|
|
"require-dev": {
|
|
|
|
|
"friendsofphp/php-cs-fixer": "^3.0",
|
2023-12-04 17:46:16 +08:00
|
|
|
"friendsofhyperf/pest-plugin-hyperf": "3.1.*",
|
2022-04-28 22:04:04 +08:00
|
|
|
"mockery/mockery": "^1.0",
|
|
|
|
|
"phpstan/phpstan": "^1.0",
|
|
|
|
|
"swoole/ide-helper": "^4.5"
|
|
|
|
|
},
|
|
|
|
|
"suggest": {
|
|
|
|
|
"swow/swow": "Required to create swow components."
|
|
|
|
|
},
|
2023-10-23 20:04:30 +08:00
|
|
|
"minimum-stability": "alpha",
|
2022-04-28 22:04:04 +08:00
|
|
|
"prefer-stable": true,
|
|
|
|
|
"config": {
|
|
|
|
|
"optimize-autoloader": true,
|
2023-12-04 17:46:16 +08:00
|
|
|
"sort-packages": true,
|
|
|
|
|
"allow-plugins": {
|
|
|
|
|
"pestphp/pest-plugin": true
|
|
|
|
|
}
|
2022-04-28 22:04:04 +08:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2023-12-25 17:10:21 +08:00
|
|
|
"test": [
|
|
|
|
|
"rm -rf runtime",
|
|
|
|
|
"Composer\\Config::disableProcessTimeout",
|
|
|
|
|
"pest --coroutine --prepend tests/bootstrap.php --colors=always"
|
|
|
|
|
],
|
|
|
|
|
"cs-fix": "php-cs-fixer fix $1 --rules=@PSR12 --allow-risky=yes",
|
|
|
|
|
"analyse": "phpstan analyse $1",
|
|
|
|
|
"ci": [
|
|
|
|
|
"@analyse publish/ src/ tests/",
|
|
|
|
|
"@cs-fix",
|
|
|
|
|
"@test",
|
|
|
|
|
"echo CI Success"
|
|
|
|
|
]
|
2022-04-28 22:04:04 +08:00
|
|
|
},
|
|
|
|
|
"extra": {
|
|
|
|
|
"hyperf": {
|
|
|
|
|
"config": "Singularity\\HyperfSaml\\ConfigProvider"
|
|
|
|
|
}
|
|
|
|
|
},
|
2022-06-15 18:20:56 +08:00
|
|
|
"bin": [
|
|
|
|
|
"bin/generate-cert"
|
|
|
|
|
],
|
2022-04-28 22:04:04 +08:00
|
|
|
"repositories": {
|
2023-10-23 20:04:30 +08:00
|
|
|
"nest": {
|
2022-04-28 22:04:04 +08:00
|
|
|
"type": "composer",
|
2023-10-23 20:04:30 +08:00
|
|
|
"url": "https://nest.doylee.cn/api/packages/HDK/composer"
|
2022-04-24 18:02:23 +08:00
|
|
|
},
|
2023-10-23 20:04:30 +08:00
|
|
|
"packagist": {
|
2022-04-28 22:04:04 +08:00
|
|
|
"type": "composer",
|
2023-10-23 20:04:30 +08:00
|
|
|
"url": "https://mirrors.aliyun.com/composer/"
|
2022-03-29 19:28:25 +08:00
|
|
|
}
|
2023-03-15 02:02:59 +00:00
|
|
|
},
|
2023-12-27 03:41:17 +00:00
|
|
|
"version": "1.0.0-beta.1"
|
2022-03-29 19:28:25 +08:00
|
|
|
}
|