2022-03-29 19:28:25 +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": {
|
2022-04-24 18:05:38 +08:00
|
|
|
"php": "~8.0",
|
2022-04-24 19:19:00 +08:00
|
|
|
"hyperf/config": "^2.2",
|
2022-04-25 18:12:00 +08:00
|
|
|
"hyperf/constants": "^2.2",
|
2022-03-29 22:02:08 +08:00
|
|
|
"hyperf/di": "2.2.*",
|
2022-04-24 19:19:00 +08:00
|
|
|
"hyperf/http-server": "2.2.*",
|
2022-04-25 18:12:00 +08:00
|
|
|
"hyperf/translation": "^2.2",
|
|
|
|
|
"hyperf/validation": "^2.2",
|
2022-04-24 18:02:23 +08:00
|
|
|
"lightsaml/lightsaml": "^2.1",
|
2022-04-26 15:40:48 +08:00
|
|
|
"singularity/hyperf-development-kit": "dev-main",
|
2022-04-24 19:19:00 +08:00
|
|
|
"teapot/status-code": "^1.1"
|
2022-03-29 19:28:25 +08:00
|
|
|
},
|
|
|
|
|
"require-dev": {
|
|
|
|
|
"friendsofphp/php-cs-fixer": "^3.0",
|
|
|
|
|
"mockery/mockery": "^1.0",
|
|
|
|
|
"phpstan/phpstan": "^1.0",
|
|
|
|
|
"phpunit/phpunit": ">=7.0",
|
|
|
|
|
"swoole/ide-helper": "^4.5"
|
|
|
|
|
},
|
|
|
|
|
"suggest": {
|
|
|
|
|
"swow/swow": "Required to create swow components."
|
|
|
|
|
},
|
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
|
"prefer-stable": true,
|
|
|
|
|
"config": {
|
|
|
|
|
"optimize-autoloader": true,
|
2022-04-24 18:02:23 +08:00
|
|
|
"sort-packages": true,
|
|
|
|
|
"secure-http": false
|
2022-03-29 19:28:25 +08:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"test": "phpunit -c phpunit.xml --colors=always",
|
|
|
|
|
"analyse": "phpstan analyse --memory-limit 1024M -l 0 ./src",
|
|
|
|
|
"cs-fix": "php-cs-fixer fix $1"
|
|
|
|
|
},
|
|
|
|
|
"extra": {
|
|
|
|
|
"hyperf": {
|
|
|
|
|
"config": "Singularity\\HyperfSaml\\ConfigProvider"
|
|
|
|
|
}
|
2022-04-24 18:02:23 +08:00
|
|
|
},
|
|
|
|
|
"repositories": {
|
|
|
|
|
"packagist": {
|
|
|
|
|
"type": "composer",
|
|
|
|
|
"url": "https://mirrors.aliyun.com/composer/"
|
|
|
|
|
},
|
|
|
|
|
"lux-map": {
|
|
|
|
|
"type": "composer",
|
|
|
|
|
"url": "https://satis.luxcreo.cn/"
|
|
|
|
|
}
|
2022-03-29 19:28:25 +08:00
|
|
|
}
|
|
|
|
|
}
|