| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "name": "qingbing/php-config",
- "description": "config 配置的设置和获取.",
- "type": "library",
- "license": "MIT",
- "keywords": [
- "php",
- "config"
- ],
- "homepage": "http://www.phpcorner.net",
- "authors": [
- {
- "name": "qingbing",
- "email": "780042175@qq.com"
- }
- ],
- "require": {
- "qingbing/php-helper": ">=1.0, <2.0"
- },
- "autoload": {
- "classmap": [
- "src/Config.php"
- ],
- "psr-4": {
- "Config\\": "src/lib"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "TestCore\\": "test/core",
- "Test\\": "test/src"
- }
- }
- }
|