1545 search results for symfony bundle

8 lines | assets/bootstrap.js
import { startStimulusApp } from '@symfony/stimulus-bundle';
// ... lines 2 - 8
See Code Block in Script
6 lines | assets/bootstrap.js
import { startStimulusApp } from '@symfony/stimulus-bundle';
// ... lines 2 - 6
See Code Block in Script
49 lines | src/Controller/VinylController.php
// ... lines 1 - 4
use App\Repository\VinylMixRepository;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use function Symfony\Component\String\u;
class VinylController extends AbstractController
{
public function __construct(
private bool $isDebug
)
// ... lines 16 - 47
}
See Code Block in Script
GenusController.php: namespace AppBundle\Controller; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Symfony\Bundle\FrameworkBundle ...
Oskaras Serelis
Oskaras Serelis
Read Full Comment
Hey Rufnex, That warning about executing a recipe from a contrib repo? That should be OK, it means that the bundle will add more files to your project or may change some files in it... but if you trust the bundle ...
... should: A) In `composer.json`, update the `symfony/symfony` requirement to `3.4.*` B) Run `composer update` That will, among other libraries, update doctrine-bundle to a version without the bug. I can't promise ...
weaverryan
weaverryan
Read Full Comment
... //github.com/symfony/symfony/blob/2e87d3033afc6fd98a0b4494c784a5ef21b74570/src/Symfony/Component/HttpKernel/Bundle/Bundle.php#L63-L88 - to see what's going on. Let me know what you find out :). Cheers!
weaverryan
weaverryan
Read Full Comment
Hey Marco, First of all, commit all the changes in the project to have a clear repo. Then, upgrade your symfony/webpack-encore-bundle to the latest available version. You can do it with Composer, execute: $ composer ...
... - Conclusion: don't install doctrine/doctrine-bundle 2.0.7 - twig/twig v2.0.0 conflicts with doctrine/doctrine-bundle[2.0.7]. then more conflicts up to - twig/twig v1.42.5 conflicts with symfony/http-kernel[v5.0.4]. and - Conclusion: don't install twig/twig v3.0.3|install twig/twig v1.27.0|install twig/twig v1.28.0 ...
Robert V.
Robert V.
Read Full Comment
... \Composer\ScriptHandler::buildBootstrap > Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache and after I have this error : [Symfony\Component\Debug\Exception\ContextErrorException ...
Yan patrick L.
Yan patrick L.
Read Full Comment
Hey Tess Hsu! Great questions :). First, to find bundles, yea... it seems simple, but I mostly use Google or search GitHub as you mentioned :). It's easy to find bundle (e.g. "Symfony markdown bundle"). The more ...
weaverryan
weaverryan
Read Full Comment
... [] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(); $bundles[] = new Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle(); ``` Now, for me at least, ./bin/console doctrine:fixtures:load finally works ...
using Symfony 4.1.7 I get the following error after composer require nexylan/slack-bundle php-http/guzzle6-adapter Using version ^2.0 for nexylan/slack-bundle Using version ^2.0 for php-http/guzzle6-adapter ...
... about the service being abstract: https://github.com/symfony/symfony/blob/b4d215c96fee8e208cdc82945b657a62913f9320/src/Symfony/Bundle/FrameworkBundle/Resources/config/messenger.php#L157 However, you should be able to ...
weaverryan
weaverryan
Read Full Comment
Pagination

... Though, I usually install another library that adds more features on top of those from Doctrine. Find your terminal and run: This installs a Pagerfanta bundle, which is a wrapper around a really nice library called ...

9:19
2 Factor Authentication Authentication Tokens

... phone... or it could be a code from an authenticator app like Google authenticator or Authy. Once the user fills in the code and submits, then they are finally logged in. In the Symfony world, we're super lucky to have ...

8:33
Dependency Injection Extensions

... anyways? Take out that journey code. The answer lives in the bundle classes. Open up AppBundle: This is empty, but it extends Symfony's base Bundle class. The key method is getContainerExtension(): When Symfony boots, it ...

7:08
Verify Email after Registration

... for that. Run: symfony console make:entity Update User, add an isVerified property, boolean type, not nullable and... perfect! Head over to the class. Let's see... here we go ...

7:57
Hey Honey, There's a third-party bundle: DoctrineMongoDBBundle. It helps you to use Symfony with Mongo DB. You have to install this bundle with Composer. Unfortunately, we have not had a screencast about this bundle ...
Loving Stimulus, and using it in places where I had been using jQuery for just a bit of interactivity. What's the proper way to load stimulus controllers from a Symfony bundle? I'm assuming that in the bundle I can ...
Tac-Tacelosky
Tac-Tacelosky
Read Full Comment