1545 search results for symfony bundle

I have installed just the code from the course in the start folder and on running composer install this is what I get: - Installing symfony/web-profiler-bundle (v4.0.6): Loading from cache - Installing symfony/twig ...
andradacrisan
andradacrisan
Read Full Comment
``` ...Package sensio/framework-extra-bundle is abandoned, you should avoid using it. Use Symfony instead.  Generating optimized autoload files  78 packages you are using are looking for funding.  Use the `composer ...
... //knpuniversity.com/screencast/symfony-bundle/extracting-bundle#using-a-path-repository B) Double-check the name of your library in your new composer.json that lives in the bundle. Is it exactly `knpuniversity/lorem-ipsum-bundle ...
weaverryan
weaverryan
Read Full Comment
... the string `'@SymfonyCastsTemplate/products/checkout.html.twig'`. Yep, it's literally the `@` symbol, then the name of your bundle, but without the Bundle word on the end. Symfony will know to look in the Resources/views ...
weaverryan
weaverryan
Read Full Comment
One more note: In the video, "app" gets autocompleted by Symfony\Bundle\FrameworkBundle\Templa.. but in my case app gets autcompleted by \Symfony\Bridge\Twig\AppVariables And of course Ive installed the symfony plugin, on every video before this one autocompletion worked as expected ...
Hey Ryan, great stuff!!! I have some questions. Couldn't we use Symfony\Bundle\FrameworkBundle\Client instead of Guzzle? Like the Symfony documentation says in the functional tests section. Don't those tools supposed to do the same thing? Is there any advantage of using Guzzle instead of Symfony Client?? ...
achilleskal
achilleskal
Read Full Comment
... Array to string conversion in /var/www/html/test/vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/Debug/TimedTwigEngine.php line 50
Hi Theirno! Hmm! That error comes from inside the KernelTestCase class: https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/FrameworkBundle/Test/KernelTestCase.php#L57. Basically, it is looking for your ...
weaverryan
weaverryan
Read Full Comment
Hey Jorg, Hm, could you tell me what command exactly do you run? :) Btw, what Symfony version do you have? Looks like the stof/doctrine-extensions-bundle^1.6 requires symfony/config ^4.4 || ^5.2 - if you have a lower version, you would probably need to upgrade symfony/config first. I hope this helps! Cheers! ...
Hey CharlES, See my another reply above: https://symfonycasts.com/screencast/symfony-bundle#comment-5062961532 Btw, I'd recommend you to look at https://github.com/symfony-cmf/standard-edition - it's a CMF based on ...
Hey Griff P. I guess you're on Symfony5, if that's the case, the webserver-bundle does not come by default, you can whether install it or spin up the webserver by using the Symfony CLI. If you already have it installed, then just run `symfony --help` to check all the commands (you'll have to run `symfony serve -d`) Cheers! ...
MolloKhan
MolloKhan
Read Full Comment
// ... lines 1 - 2
namespace AppBundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class StylesPlayCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
->setName('styles:play');
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$output->writeln('boring...');
}
}
See Code Block in Script
Environment Variables

... before, it's a cloud-based error monitoring tool: it's a really great way to track and debug errors on production. Not that those ever happen. Ahem. They also have excellent integration with Symfony. If you don't already have ...

8:29
Eagerly awaiting this too, in the meantime, check this out https://codereviewvideos.com/course/how-to-code-a-symfony-2-restful-api-with-fos-rest-bundle ...
twomartoe
twomartoe
Read Full Comment
Thank you , but could u please tell me if i can Enable the league/oauth1-client library in symfony as bundle ?? ...
Boran Alsaleh
Boran Alsaleh
Read Full Comment
ok, now I see I think the easiest way to fix it will be to run `composer require symfony/stimulus-bundle` that should help Cheers! ...
Hey, I get at using this bundle the exception **ClassNotFoundError** in the file **mixed_vinyl\vendor\symfony\translation\LocaleSwitcher.php** at line 37. ...
Hey SymfonyDev, Could you double-check that you imported the correct trait? The one from `Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;` Cheers! ...
MolloKhan
MolloKhan
Read Full Comment
i use code from this lesson and have the same issue. i updated version of symfony/maker-bundle to ^1.21.1 and it works greate. ...
Антон С.
Антон С.
Read Full Comment
for Symfony 4.4 you need to install these packages to make it work: `composer require nexylan/slack-bundle php-http/guzzle6-adapter nyholm/psr7` ...
Mykola M.
Mykola M.
Read Full Comment