1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "hyperf/config-nacos",
- "description": "A nacos adapter for config center component.",
- "license": "MIT",
- "keywords": [
- "php",
- "swoole",
- "hyperf",
- "nacos"
- ],
- "type": "library",
- "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"
- },
- "autoload": {
- "psr-4": {
- "Hyperf\\ConfigNacos\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\ConfigNacos\\": "tests"
- }
- },
- "require": {
- "php": ">=8.1",
- "hyperf/codec": "~3.1.0",
- "hyperf/config-center": "~3.1.0",
- "hyperf/contract": "~3.1.0",
- "hyperf/guzzle": "~3.1.0",
- "hyperf/nacos": "~3.1.0",
- "hyperf/support": "~3.1.0",
- "hyperf/utils": "~3.1.0",
- "jetbrains/phpstorm-attributes": "^1.0"
- },
- "suggest": {
- "ext-json": "*",
- "ext-simplexml": "*",
- "ext-yaml": "*",
- "hyperf/event": "Required to use listeners. (~2.2.0)",
- "hyperf/process": "Required to use processes. (~2.2.0)",
- "hyperf/framework": "Required to use listeners. (~2.2.0)"
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- },
- "hyperf": {
- "config": "Hyperf\\ConfigNacos\\ConfigProvider"
- }
- }
- }
|