12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "hyperf/load-balancer",
- "description": "A load balancer library for Hyperf.",
- "license": "MIT",
- "keywords": [
- "php",
- "swoole",
- "hyperf",
- "load-balancer"
- ],
- "homepage": "https://hyperf.io",
- "support": {
- "docs": "https://hyperf.wiki",
- "issues": "https://github.com/hyperf/hyperf/issues",
- "pull-request": "https://github.com/hyperf/hyperf/pulls",
- "source": "https://github.com/hyperf/hyperf"
- },
- "require": {
- "php": ">=8.1",
- "hyperf/coordinator": "~3.1.0",
- "hyperf/coroutine": "~3.1.0",
- "markrogoyski/math-php": "^2.0",
- "psr/log": "^1.0|^2.0|^3.0"
- },
- "autoload": {
- "psr-4": {
- "Hyperf\\LoadBalancer\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\LoadBalancer\\": "tests/"
- }
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- },
- "hyperf": {
- "config": "Hyperf\\LoadBalancer\\ConfigProvider"
- }
- }
- }
|