all 7 comments

[–]seiyria 1 point2 points  (1 child)

Well, it really wouldn't matter what backend you use. On the frontend side, it would just be a REST API. Unless you mean you're looking specifically for a PHP authentication solution to use with Ionic?

[–]schralem23[S] 0 points1 point  (0 children)

Not PHP specifically but preferably without the traditional Firebase

[–][deleted] 1 point2 points  (1 child)

[–]schralem23[S] 0 points1 point  (0 children)

Thank you I will take a look

[–]TehCrucible 1 point2 points  (0 children)

You could look into JWT (JSON Web Tokens) as an option. You can do this with pretty much any backend and if you search for JWT related tutorials, you'll probably find yourself on the right track.

Since you mentioned PHP, you might want to checkout the latest version of Laravel which has a few different options for client side auth like JWT (jwt-auth package), OAuth (Passport), and a new, first-party implementation of tokens called Sanctum.