composer.json 434 B

123456789101112131415161718192021
  1. {
  2. "name": "lizhichao/word",
  3. "description": "This is a participle library",
  4. "type": "library",
  5. "license": "Apache-2.0",
  6. "authors": [
  7. {
  8. "name": "tanszhe",
  9. "email": "1018595261@qq.com"
  10. }
  11. ],
  12. "require": {
  13. "php" : ">=5.6.0"
  14. },
  15. "minimum-stability" : "stable",
  16. "autoload" : {
  17. "psr-4" : {
  18. "Lizhichao\\Word\\" : "Lib"
  19. }
  20. }
  21. }