1545 search results for symfony bundle

Hi there, I am starting this track and i get some trouble during composer install, i get this error : ` Script Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache handling the symfony-scripts event ...
Hello Why we use: $bundles[] = new \Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); And not put new \Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); шnto an existing array $bundles in the AppKernel.php ...
Yo Nash! Yep - unfortunately this screencast is for a (now) very old version of the bundle (like 0.15)! When version 2.0 of the bundle comes out (which should be very soon), we're planning on an update! For version 1.x ...
weaverryan
weaverryan
Read Full Comment
Hey there! Hi back to you from (currently) sunny Grand Rapids, MI :). Hmm. This function is a new feature in WebpackEncoreBundle v1.11.0. Check what version you have with `composer show symfony/webpack-encore-bundle ...
weaverryan
weaverryan
Read Full Comment
Hey Oda You need to update these two libraries `sensio/distribution-bundle & sensio/framework-extra-bundle`, and copy-paste the "config" section from this composer.json version https://github.com/symfony/symfony-standard/blob/2.8/composer.json Ryan pointed you for the Symfony3 and you are on Symfony2 Cheers! ...
MolloKhan
MolloKhan
Read Full Comment
I cloned the repository https://github.com/knpuniversity/symfony-bundle from where I found this page. Since that, I deleted the project and I followed the tutorial by implementing a bundle in my own project (and it ...
AmalricBzh
AmalricBzh
Read Full Comment
Hey Victor, thanks a lot for your fast reaction. Using the symfony server did solve the issue. But could you point me somewhere, where I can find a way to configure liip bundle with project in subdirectories? I already tried the section at the Symfony Liip Bundle Configuration Page but without any luck. ...
Hi! As of this moment, Symfony 3.3.10 is not supported any more by the latest version of doctrine/doctrine-fixtures-bundle. The version 3.0.4 does support Symfony 3.3.10. So to get this to work, `composer require --dev doctrine/doctrine-fixtures-bundle:3.0.4` should be the full command. ...
Bojan Đ.
Bojan Đ.
Read Full Comment
Hey Steve, Looks like we have "symfony/translation" package due to "knplabs/knp-time-bundle" that requires it to be installed :) If you don't have "knplabs/knp-time-bundle" in your project - then it makes sense that you have to install "symfony/translation" manually :) I hope this clarify things for you. Cheers! ...
15 lines | .env.dist
# This file is a "template" of which env vars need to be defined for your application
# Copy this file to .env file for development, create environment variables when deploying to production
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
### CUSTOM VARS
SLACK_WEBHOOK_ENDPOINT=https://hooks.slack.com/...
### END CUSTOM VARS
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=5ea3114a349591bd131296e00f21c20a
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
#TRUSTED_HOSTS=localhost,example.com
###< symfony/framework-bundle ###
See Code Block in Script
25 lines | .env.dist
# This file is a "template" of which env vars need to be defined for your application
# Copy this file to .env file for development, create environment variables when deploying to production
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=12c008ecf65c043dc2b14b5eb9a115ef
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
#TRUSTED_HOSTS=localhost,example.com
###< symfony/framework-bundle ###
// ... lines 11 - 25
See Code Block in Script
... /assets/bootstrap.js 2. That import for `@symfony/stimulus-bundle` references a new entry in your `importmap.php` file - https://github.com/symfony/demo/blob/main/importmap.php#L47-L49. As you can see, what you're ...
weaverryan
weaverryan
Read Full Comment
... //flex.symfony.com/r/github.com/symfony/recipes-contrib/1099 # ... and so on ... ``` So, I've set env var, removed and installed back my bundle. Next I run: `composer recipes boolean-type/lorem-ipsum-bundle` Result is: ``` Using ...
Boolean T.
Boolean T.
Read Full Comment
... /LoadDataFixturesDoctrineCommand.php:159 Doctrine\Bundle\FixturesBundle\Command\LoadDataFixturesDoctrineCommand->execute() at /home/cam/php/robotGL2/vendor/symfony/console/Command/Command.php:326 Symfony\Component ...
... bundle,symfony/property-access and when i try for exmple ` composer update nexylan/slack-bundle ` I get the same error msg and when i try ` composer update nexylan/slack-bundle --ignore-platform-reqs ` I get Script ...
``` namespace App\Controller; use App\Service\MarkdownHelper; use Psr\Log\LoggerInterface; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController ...
... service class directly, it should be "\Symfony\Bundle\TwigBundle\TwigEngine" as I know: ``` /** @var \Symfony\Bundle\TwigBundle\TwigEngine $templating */ $templating = $this->container->get('templating'); // And you will get autocompletion here $templating->render(); ``` Cheers!
Hey Lampje, Nope, Symfony doesn't has such feature out-of-the-box. Probably there's a bundle for that, but I don't now such, sorry. If you don't find any bundle, I think you could try to write it by yourself - Symfony ...
... extra-bundle` library). Anyways, the fix is to update one Symfony package: ``` composer up symfony/framework-bundle ``` That should fix the issue :). I'm running that on our course code right now so that the downloaded code works for everyone again without issues. Cheers!
weaverryan
weaverryan
Read Full Comment
... Hey Victor, I'm using this [link](https://symfony.com/doc/5.4/frontend/encore/installation.html#installing-encore-in-symfony-applications) to install encore(symfony/webpack-encore-bundle) After running `yarn install ...