composer.json 703 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "qingbing/php-config",
  3. "description": "config 配置的设置和获取.",
  4. "type": "library",
  5. "license": "MIT",
  6. "keywords": [
  7. "php",
  8. "config"
  9. ],
  10. "homepage": "http://www.phpcorner.net",
  11. "authors": [
  12. {
  13. "name": "qingbing",
  14. "email": "780042175@qq.com"
  15. }
  16. ],
  17. "require": {
  18. "qingbing/php-helper": ">=1.0, <2.0"
  19. },
  20. "autoload": {
  21. "classmap": [
  22. "src/Config.php"
  23. ],
  24. "psr-4": {
  25. "Config\\": "src/lib"
  26. }
  27. },
  28. "autoload-dev": {
  29. "psr-4": {
  30. "TestCore\\": "test/core",
  31. "Test\\": "test/src"
  32. }
  33. }
  34. }