tuupola / slim-basic-auth

PSR-7 and PSR-15 HTTP Basic Authentication Middleware
MIT License
440 stars 66 forks source link

Doctrine instead of pdo? #29

Closed ChoiZ closed 7 years ago

ChoiZ commented 7 years ago

Is it easy to implement doctrine instead of pdo connector?

tuupola commented 7 years ago

Yes. Just check if given user exist in database and the password is correct. If yes then return boolean true. If no return boolean false.

ChoiZ commented 7 years ago

Ok thanks for your help ;-)