Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
19 views

Receiving definition has no class error when trying to work with custom bundle I tried this command with namespace of my bundle: bin/console debug:container NotificationBundle No services found that ...
tonbari's user avatar
  • 41
0 votes
0 answers
126 views

I need to add new features to a custom Symfony bundle that my colleague had previously developed. To work with this bundle, I installed it in the Symfony base_app via composer. There was an error ...
tonbari's user avatar
  • 41
1 vote
0 answers
98 views

I've created a simple admin system with login/logout and user CRUD functionality in Symfony. I want to make this into a bundle so that I can re-use it in other applications. I've now got it working as ...
Marleen's user avatar
  • 2,916
0 votes
0 answers
42 views

I try to figure out how to get a Bundle Template inheritation/override with Symfony. I am aware about the Documentation. Thats´s so far clear and works as expected. But, I create a own Bundle which ...
Michael's user avatar
  • 11
-1 votes
1 answer
757 views

I'm currently struggling to override Symfony Flex recipes locally for testing purposes. Here's what I've done: Implemented a Symfony bundle for Symfony 5.4 and up. Published it on Packagist. Read ...
Wolf's user avatar
  • 1
0 votes
0 answers
206 views

In converting an existing Symfony app (version 7.0) to a custom bundle I'm encountering an error caused by custom entity repositories not getting loaded in the container. Debugging the container seems ...
Adam Richard's user avatar
0 votes
0 answers
329 views

Symfony official documentation says: "Don't Create any Bundle to Organize your Application Logic" https://symfony.com/doc/current/best_practices.html And: In Symfony versions prior to 4.0,...
fico7489's user avatar
  • 8,650
-1 votes
1 answer
233 views

I am creating a Symfony 6 bundle that provides a service that depends on the utilizing application to implement a provided interface as a service. This bundle provides a service called MyBundleService....
Lukman's user avatar
  • 19.3k
-1 votes
1 answer
42 views

I'm just looking for a way to further configure an application after the installation of a bundle. Imagine you have an entity called Permission. I want to add a new permission entry to the database ...
Corepex's user avatar
  • 115
0 votes
1 answer
1k views

private EmailVerifier $emailVerifier; public function __construct(EmailVerifier $emailVerifier, EntityManagerInterface $entityManager) { $this->emailVerifier = $emailVerifier; }...
aayush vyas's user avatar
0 votes
1 answer
803 views

A so far working bundle now needs its own configuration file inside the projects using the bundle, to manage bundle settings individually. However, no matter which approach I use (the old one before ...
Jonathan's user avatar
  • 2,107
0 votes
0 answers
37 views

So a little context: I have an old project in symfony 2.8 and php 5.6 Composer have been abandonned by the previous developper and i'm trying to make it work again. I had a bunch of conflicting ...
Folar's user avatar
  • 1
0 votes
0 answers
262 views

In a Bundle I try to add a Twig-Global variable to be available in the app where the bundle is used. But it seems I am not allowed or miss something. Why can't I access the twig parameters and add ...
Jonathan's user avatar
  • 2,107
2 votes
1 answer
1k views

I am developing a bundle JohnCorpFormsBundle for my own symfony projects to share extended form logic. However, when implementing the bundle in a project myproject I always get an error when I load a ...
Jonathan's user avatar
  • 2,107