您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

composer.json 656 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "orpheusnet/logchecker",
  3. "description": "Logchecker for validating logs generated from supported ripping programs (like EAC and XLD)",
  4. "version": "0.5.0",
  5. "license": "Unlicense",
  6. "type": "library",
  7. "authors": [
  8. {
  9. "name": "Orpheus",
  10. "email": "no-reply@orpheus.network"
  11. }
  12. ],
  13. "autoload": {
  14. "psr-4": {
  15. "OrpheusNET\\Logchecker\\": "src/"
  16. }
  17. },
  18. "require": {
  19. "php": ">=7",
  20. "ext-mbstring": "*",
  21. "symfony/console": "^4.1"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^6|^7"
  25. },
  26. "bin": ["bin/logchecker"]
  27. }