composer.json 568 B

123456789101112131415161718192021222324
  1. {
  2. "name": "overtrue/chinese-calendar",
  3. "description": "中国农历转换与查询工具",
  4. "keywords": ["chinese", "calendar", "lunar", "solar", "solar2lunar", "lunar2solar"],
  5. "type": "library",
  6. "require": {
  7. "php":">=5.5.9"
  8. },
  9. "require-dev": {
  10. "phpunit/phpunit": "^6.0"
  11. },
  12. "autoload": {
  13. "psr-4": {
  14. "Overtrue\\ChineseCalendar\\": "src"
  15. }
  16. },
  17. "license": "MIT",
  18. "authors": [
  19. {
  20. "name": "overtrue",
  21. "email": "anzhengchao@gmail.com"
  22. }
  23. ]
  24. }