-
Notifications
You must be signed in to change notification settings - Fork 29
Next release #336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi! I haven't seen any activity from @cedriclombardot for quite some time in this repository, but I currently maintain this repository with @tobias-93. To answer you questions:
|
It took me all weekend to figure it out.
From what I noticed:
"to be continued" |
I do know about the benefits of AssetMapper, just don't know what would be blocking for this bundle. And as we are using webpack in our project that uses this bundle, it hasn't been an issue for us so far. By the way, while bower is still in the repo files, it is not required to use (we don't).
This is nice to hear, it has solved a lot of issues for us as well.
We have indeed removed that, so you decide for yourself where to put it. We are using something like this: return static function (RoutingConfigurator $routing): void {
$addAdminRouting = function (
string $name,
string $path,
string $controllerClass,
string $namespace,
?array $options = null,
) use ($routing): void {
$indexRoute = $routing->add($name, $path);
$indexRoute->controller([$controllerClass, 'indexAction']);
if ($options) {
$indexRoute->options($options);
}
$routing
->import($namespace, 'admingenerator')
->prefix($path);
};
$addAdminRouting(
'admingenerator_activity',
'/activity',
ListController::class,
'@IdbAdminGeneratorBundle/Controller/AdminActivity/',
);
}
Another thing we do not use at all :) The bundle could benefit from a complete overhaul (things such as routing configuration), but that would take a lot more work than we currently have the time for. It is basically in maintenance mode, and we make sure that it keeps working for at least our project. |
Oh, hmmm... Where does it, pardon me, needs to be inserted? ) Can't it be specified in the
|
I have similar goals to upgrade a live working project (300+ active users, database over 1000 tables) to current versions of php, Symfony, Doctrine and s2a and continue to maintain it.
|
That is an old project indeed! This is our installation with Symfony 6.4, which is actually a project that started with Symfony 2 as well.
No user-bundle though, no clue what the state of that one is...
Yes, that would still work. We have switched to php-only configuration, which made the generator crash due to not finding the |
NOT solved yet. WIP. Maybe it'll help someone. I'll leave it here. Add to your "repositories": [
{
"type": "vcs",
"url": "https://github.com/ksn135/BreadcrumbBundle"
}
], And run
|
Need to know that too, what's the answer please? |
As stated, you will need to add it to one of your routing definitions. |
Hi @bobvandevijver - just quick question: do you have some idea when is planned to bump Symfony version to 7? Thanks much! |
I have added it in #341, when @bobvandevijver approves we can release it. |
@TheCelavi v5.3.0 allows Symfony 7: it is not tested with a live project, but I do not expect any issues. If there are, you know where to find us ;) |
@bobvandevijver whenever someone say "you know where to find us/me", I always think "yeah, I know, and I know a perfect gift" https://pt.pinterest.com/pin/271553052502012110/ 😂 😂 😂 Thanks man! Will try it and let you know, we are migrating full fledged SF 3.4 project to 7 using GeneratorBundle. Hopefully, everything will go fine. |
Hi, everyone!
Haven't been here for a few years, but I'm back to my favorite bundle and want to build a new project on it.
A few questions, probably for @cedriclombardot
I have some free time right now and am willing to invest it in this project, what can I help with?
Just say.
The text was updated successfully, but these errors were encountered: