composer.json 395 B

12345678910111213141516
  1. {
  2. "name": "mdsills/cccedict",
  3. "type": "library",
  4. "description": "Parser for CC-CEDICT Chinese-English dictionary",
  5. "keywords": ["cc-cedict", "dictionary", "chinese"],
  6. "homepage": "https://github.com/mdsills/cccedict",
  7. "license": "MIT",
  8. "require": {
  9. "php": ">=7.0"
  10. },
  11. "autoload": {
  12. "psr-4": {
  13. "CcCedict\\": "src/"
  14. }
  15. }
  16. }