12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "hyperf/config",
- "description": "An independent component that provides configuration container.",
- "license": "MIT",
- "keywords": [
- "php",
- "swoole",
- "hyperf",
- "config",
- "configuration"
- ],
- "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/collection": "~3.1.0",
- "hyperf/contract": "~3.1.0",
- "hyperf/support": "~3.1.0",
- "psr/container": "^1.0|^2.0",
- "symfony/finder": "^5.0|^6.0|^7.0"
- },
- "suggest": {
- "vlucas/phpdotenv": "Allows using enviroment value to override the config",
- "hyperf/di": "Allows using @Value annotation",
- "hyperf/event": "Allows using @Value annotation",
- "hyperf/framework": "Allows using @Value annotation",
- "hyperf/context": "Required to use config()"
- },
- "autoload": {
- "files": [
- "./src/Functions.php"
- ],
- "psr-4": {
- "Hyperf\\Config\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\Config\\": "tests/"
- }
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- },
- "hyperf": {
- "config": "Hyperf\\Config\\ConfigProvider"
- }
- }
- }
|