dcat-admin的数据中心员工后台权限系统

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "returnee/dcat-employee-auth",
  3. "description": "Use an employees table as the authentication source for Dcat Admin.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Returnee Team",
  9. "email": "dev@returnee.com"
  10. }
  11. ],
  12. "require": {
  13. "php": ">=8.1",
  14. "e282486518/dcat-admin": "2.*",
  15. "laravel/framework": "^9.0|^10.0|^11.0|^12.0"
  16. },
  17. "autoload": {
  18. "psr-4": {
  19. "Returnee\\DcatEmployeeAuth\\": "src/"
  20. }
  21. },
  22. "extra": {
  23. "laravel": {
  24. "providers": [
  25. "Returnee\\DcatEmployeeAuth\\EmployeeAuthServiceProvider"
  26. ]
  27. }
  28. },
  29. "minimum-stability": "stable",
  30. "prefer-stable": true
  31. }