mirror of
http://124.126.16.154:8888/singularity/hyperf-saml.git
synced 2026-01-15 07:15:05 +08:00
77 lines
1.7 KiB
JSON
77 lines
1.7 KiB
JSON
{
|
|
"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": {
|
|
"php": "~8.0",
|
|
"hyperf/config": "^2.2",
|
|
"hyperf/constants": "^2.2",
|
|
"hyperf/di": "2.2.*",
|
|
"hyperf/http-server": "2.2.*",
|
|
"hyperf/translation": "^2.2",
|
|
"hyperf/validation": "^2.2",
|
|
"litesaml/lightsaml": "~3.0.0",
|
|
"singularity/hyperf-development-kit": "^0.1.0",
|
|
"teapot/status-code": "^1.1",
|
|
"ext-redis": "*"
|
|
},
|
|
"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,
|
|
"sort-packages": true,
|
|
"secure-http": false
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit -c phpunit.xml --colors=always",
|
|
"analyse": "phpstan analyse --memory-limit 1024M -l 0 ./src",
|
|
"cs-fix": "php-cs-fixer fix $1",
|
|
"post-autoload-dump": [
|
|
"chown -R 1000:1000 ."
|
|
]
|
|
},
|
|
"extra": {
|
|
"hyperf": {
|
|
"config": "Singularity\\HyperfSaml\\ConfigProvider"
|
|
}
|
|
},
|
|
"bin": [
|
|
"bin/generate-cert"
|
|
],
|
|
"repositories": {
|
|
"packagist": {
|
|
"type": "composer",
|
|
"url": "https://mirrors.aliyun.com/composer/"
|
|
},
|
|
"lux-map": {
|
|
"type": "composer",
|
|
"url": "https://satis.luxcreo.cn/"
|
|
}
|
|
}
|
|
}
|