composer.json 476 B

123456789101112131415161718192021
  1. {
  2. "name": "webman/admin",
  3. "type": "project",
  4. "license": "MIT",
  5. "description": "Webman Admin",
  6. "require": {
  7. "workerman/webman-framework": ">=1.4",
  8. "illuminate/database": ">=7.30",
  9. "illuminate/pagination": ">=7.30",
  10. "illuminate/events": ">=7.30",
  11. "intervention/image": "^2.7",
  12. "webman/event": "^1.0",
  13. "webman/captcha": "^1.0.0",
  14. "guzzlehttp/guzzle": "^7.5"
  15. },
  16. "autoload": {
  17. "psr-4": {
  18. "Webman\\Admin\\": "src"
  19. }
  20. }
  21. }