All Questions
2 questions
1
vote
3
answers
2k
views
Silex Controller Dependency Injection
I'm trying to inject a dependency into my Silex Controller, because I need an object of type user in my controller and handle some stuff with it.
$app->mount("/users", new \MyApp\Controller\...
4
votes
0
answers
3k
views
Silex security firewall to authenticate against a REST API via form
I am trying to set my app's security layer without any success. What I am trying to do is setting a security firewall via a form authentication listener but customized for authenticating the user ...