SensioFrameworkExtraBundle icon indicating copy to clipboard operation
SensioFrameworkExtraBundle copied to clipboard

An extension to Symfony FrameworkBundle that adds annotation configuration for Controller classes

Results 79 SensioFrameworkExtraBundle issues
Sort by recently updated
recently updated
newest added

This addition allows to manage several different security cases.

See - https://github.com/psalm/psalm-plugin-symfony/issues/213 - for more information

This PR introduces Doctrine MongoDB converter. Since `DoctrineParamConverter` relies on `Doctrine\Persistence\ManagerRegistry`, it can consume any persistence engine so we can simply replace the argument to make it work same as...

Add contributing documentation explaining how to run tests, code formatting, and anything else to be aware of when contributing. Might also be helpful to add composer commands like `composer test`...

Hey, We commonly use different database connections for different environments, e.g. sqlite for tests. As far as I know different connection means different entity manager in symfony. The question is,...

hello, i am trying to make DoctrineParamConverter follow `doctrine.orm.resolve_target_entities` config. afaik the only thing preventing DPC from loading those "resolved" entities is the `supports()` method, which returns ``` return !$em->getMetadataFactory()->isTransient($configuration->getClass());...

HI, The function "has_role" does not exist around position 1 for expression `has_role('ROLE_ADMIN')`

Hi! I don't know if you're interested in this kind of contribution but I needed a ParamConverter for DateInterval objects in a project lately and I thought it could be...

Doctrine ORM provides a way to use Interfaces e. g. in Association Mappings. Then [a config setting named `resolve_target_entities`](https://symfony.com/doc/current/doctrine/resolve_target_entity.html) can be used to supply an Interface-to-Classname mapping. Whenever Doctrine ORM...

**What is changed with this PR?** Enable allowing null subject in IsGranted annotation. **Why this feature was created?** In one of my projects I have nullable action argument and voter...