EasyAdmin is a fast, beautiful and modern admin generator for Symfony applications.
Update Composer deps
minor #1411 Update Composer deps (javiereguiluz)
This PR was merged into the main branch.
Update Composer deps
4b8e40e Update Composer deps
Update Composer deps
minor #1411 Update Composer deps (javiereguiluz)
This PR was merged into the main branch.
Update Composer deps
4b8e40e Update Composer deps
Update recipes
feature #1410 Update recipes (fabpot)
This PR was merged into the main branch.
Update recipes
462f4da Update recipes
Update recipes
feature #1410 Update recipes (fabpot)
This PR was merged into the main branch.
Update recipes
462f4da Update recipes
Thanks @Pelagoss.
I've tested this locally ... and didn't work for me. First, I tried the search without this change: it works as expected. Then, I did this change to my local app ... and the search feature broke. Now I can't find any result.
I know the change of this PR looks intuitive, but for me it broke the profiler search. Can anyone please confirm this? Maybe I'm doing something wrong. Thanks!
update framework configuration reference for cache
minor #18138 [FrameworkBundle] Update framework configuration reference for cache (MrYamous)
This PR was merged into the 5.4 branch.
[FrameworkBundle] Update framework configuration reference for cache
1d32ad27a update framework configuration reference for cache
Minor tweak
Merge branch '5.4' into 6.2
Remove the unneeded versionadded directives
[FrameworkBundle] Update framework cache reference
minor #18139 [FrameworkBundle] Update framework cache reference (MrYamous)
This PR was squashed before being merged into the 6.2 branch.
[FrameworkBundle] Update framework cache reference
Following #18138
f3d727ca9 [FrameworkBundle] Update framework cache reference
Merge branch '6.2' into 6.3
update framework configuration reference for cache
minor #18138 [FrameworkBundle] Update framework configuration reference for cache (MrYamous)
This PR was merged into the 5.4 branch.
[FrameworkBundle] Update framework configuration reference for cache
1d32ad27a update framework configuration reference for cache
Minor tweak
Merge branch '5.4' into 6.2
Remove the unneeded versionadded directives
[FrameworkBundle] Update framework cache reference
minor #18139 [FrameworkBundle] Update framework cache reference (MrYamous)
This PR was squashed before being merged into the 6.2 branch.
[FrameworkBundle] Update framework cache reference
Following #18138
f3d727ca9 [FrameworkBundle] Update framework cache reference
Merge branch '6.2' into 6.3
[FrameworkBundle] Update framework cache reference
minor #18139 [FrameworkBundle] Update framework cache reference (MrYamous)
This PR was squashed before being merged into the 6.2 branch.
[FrameworkBundle] Update framework cache reference
Following #18138
f3d727ca9 [FrameworkBundle] Update framework cache reference
Following #18138
[FrameworkBundle] Update framework cache reference
minor #18139 [FrameworkBundle] Update framework cache reference (MrYamous)
This PR was squashed before being merged into the 6.2 branch.
[FrameworkBundle] Update framework cache reference
Following #18138
f3d727ca9 [FrameworkBundle] Update framework cache reference
update framework configuration reference for cache
minor #18138 [FrameworkBundle] Update framework configuration reference for cache (MrYamous)
This PR was merged into the 5.4 branch.
[FrameworkBundle] Update framework configuration reference for cache
1d32ad27a update framework configuration reference for cache
Minor tweak
Merge branch '5.4' into 6.2
Remove the unneeded versionadded directives
[FrameworkBundle] Update framework cache reference
And thanks for this PR too!
update framework configuration reference for cache
minor #18138 [FrameworkBundle] Update framework configuration reference for cache (MrYamous)
This PR was merged into the 5.4 branch.
[FrameworkBundle] Update framework configuration reference for cache
1d32ad27a update framework configuration reference for cache
Minor tweak
Merge branch '5.4' into 6.2
Remove the unneeded versionadded directives
update framework configuration reference for cache
minor #18138 [FrameworkBundle] Update framework configuration reference for cache (MrYamous)
This PR was merged into the 5.4 branch.
[FrameworkBundle] Update framework configuration reference for cache
1d32ad27a update framework configuration reference for cache
Minor tweak
Merge branch '5.4' into 6.2
Remove the unneeded versionadded directives
update framework configuration reference for cache
minor #18138 [FrameworkBundle] Update framework configuration reference for cache (MrYamous)
This PR was merged into the 5.4 branch.
[FrameworkBundle] Update framework configuration reference for cache
1d32ad27a update framework configuration reference for cache
Minor tweak
update framework configuration reference for cache
minor #18138 [FrameworkBundle] Update framework configuration reference for cache (MrYamous)
This PR was merged into the 5.4 branch.
[FrameworkBundle] Update framework configuration reference for cache
1d32ad27a update framework configuration reference for cache
Thanks Matthieu.
Hello
I may have missed something but when keep the option sensio_framework_extra.request.auto_convert
set to true and disable the doctrine.orm.controller_resolver.auto_mapping
it still getting data from the ParamConverter even though i have set the #[MapEntity]
. the EntityValueResolver does not fetch data because of the condition
if (\is_object($request->attributes->get($argument->getName()))) {
return [];
}
But when i disabled the sensio_framework_extra.request.auto_convert
data is fetched now with the MapEntity
.
Issam, you are right. However, this is "expected". I mean: the docs (of modern Symfony apps) expect that you don't have the SensioFrameworkExtraBundle enabled (or even installed) in your app. We've remove all references to that bundle in the docs, so we prefer to not mention here explicitly. That's why we're closing this without merging.
Let's just uninstall that bundle everywhere and we're good. Thanks for your understanding.
I'm sorry but I must close this as "won't merge" because this change was already made in a different PR. See the changed constructor argument in https://github.com/symfony/symfony-docs/blob/6.2/session.rst#creating-a-localesubscriber
We hope to merge your future pull requests. Thanks!
also, remove the $ so gitclip works.
@acsig I think there's been a misunderstanding. If you check the README of this repository, you'll see that to use this project to learn and teach Symfony, you only have to do this:
(1) Browse https://symfony.com/download
(2) Install "Symfony CLI" according to your operating system
(3) Open a terminal window
(4) Run this command: symfony new --demo my_project
(5) Run this command: cd my_project/
(6) Run this command: symfony serve
(or symfony serve -d
)
That's all you need to have this project working.
You don't need:
You don't have to install anything else. You don't have to run any commands to build assets. You don't need to configure any options.
I hope it's more clear now.