composer.json 743 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "qingbing/php-helper",
  3. "description": "Some common helpers and functions.",
  4. "type": "library",
  5. "license": "MIT",
  6. "keywords": [
  7. "php",
  8. "helper",
  9. "function"
  10. ],
  11. "homepage": "http://www.phpcorner.net",
  12. "authors": [
  13. {
  14. "name": "qingbing",
  15. "email": "780042175@qq.com"
  16. }
  17. ],
  18. "autoload": {
  19. "files": [
  20. "src/functions.php"
  21. ],
  22. "psr-4": {
  23. "Abstracts\\": "src/abstracts",
  24. "Helper\\": "src/lib"
  25. }
  26. },
  27. "autoload-dev": {
  28. "psr-4": {
  29. "TestClass\\": "test/classes",
  30. "TestCore\\": "test/core",
  31. "Test\\": "test/src"
  32. }
  33. }
  34. }