1545 search results for symfony bundle

Hey Dmitriy I'm not sure if that command exists but what you can do is to search for the file config definition of those services. Just open up a bundle directory and look inside `Resources/config`. For example `vendor/symfony/debug-bundle/Resources/config` Cheers! ...
MolloKhan
MolloKhan
Read Full Comment
... ) - here's the installation manual for it: https://github.com/symfony/webpack-encore-bundle - don't forget to register this bundle manually. Cheers!
... That's because Symfony4 uses Symfony Flex which leverage the "recipes" system. Ff a bundle has a recipe you will get a pretty default configuration automatically, plus, if the bundle is well designed, it will give you public services ready to use.
MolloKhan
MolloKhan
Read Full Comment
// ... lines 1 - 5
use AppBundle\Entity\RepLog;
// ... line 7
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
// ... line 10
use Symfony\Component\HttpFoundation\Response;
// ... lines 12 - 13
class RepLogController extends BaseController
{
// ... lines 16 - 46
/**
* @Route("/reps/{id}", name="rep_log_delete")
* @Method("DELETE")
*/
public function deleteRepLogAction(RepLog $repLog)
{
$this->denyAccessUnlessGranted('IS_AUTHENTICATED_REMEMBERED');
$em = $this->getDoctrine()->getManager();
$em->remove($repLog);
$em->flush();
return new Response(null, 204);
}
// ... lines 60 - 129
}
See Code Block in Script
... //github.com/symfony/monolog-bundle/blob/fabf1197f2ef9bde2220fa3cc875f8070eee1b7e/Resources/config/monolog.xml#L8-L13 2) The bundle also registers *other* logger services (as you mentioned) with our service ids. If the ...
weaverryan
weaverryan
Read Full Comment
... platform/core (v3.3.12) - Locking nelmio/cors-bundle (2.5.0) - Locking symfony/orm-pack (v2.4.1) - Locking symfony/serializer-pack (v1.3.0) - Locking willdurand/negotiation (3.1.0) Writing lock file ...
Rodrypaladin
Rodrypaladin
Read Full Comment
... ) and its output: ` $> docker exec -it app composer recipes:install --no-interaction symfony/twig-bundle --force -v Symfony operations: 1 recipe (a163a92832df72d8c7b4f86bf8da9837) - Configuring symfony/twig-bundle ...
... ./controllers', true, /\.[jt]sx?$/ )); app.load(definitionsFromContext(require.context( '@symfony/stimulus-bridge/lazy-controller-loader!../vendor/myname/bundle/Resources/assets/controller', true, /\.[jt ...
weaverryan
weaverryan
Read Full Comment
... deprecated since Symfony 6.2, you can use `Symfony\Bundle\SecurityBundle\Security` instead. see: https://github.com/symfony/security-core/blob/6.3/Security.php Hope it helps. Cheers!
62 lines | src/Kernel.php
// ... lines 1 - 2
namespace App;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
use Symfony\Component\Routing\RouteCollectionBuilder;
class Kernel extends BaseKernel
{
use MicroKernelTrait;
const CONFIG_EXTS = '.{php,xml,yaml,yml}';
public function getCacheDir()
{
// ... line 19
}
public function getLogDir()
{
// ... line 24
}
public function registerBundles()
{
// ... lines 29 - 34
}
protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader)
{
// ... lines 39 - 47
}
protected function configureRoutes(RouteCollectionBuilder $routes)
{
// ... lines 52 - 59
}
}
See Code Block in Script
... information Installing dependencies (including require-dev) from lock file Nothing to install or update Generating optimized autoload files > Incenteev\\ParameterHandler\\ScriptHandler::buildParameters > Sensio\\Bundle ...
sokphea chea
sokphea chea
Read Full Comment
... \FrameworkExtraBundle\Configuration\Route; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\Response; class GenusController extends Controller { /** * @Route("/genus/{genusName ...
... won't run, and it only happens when I install, it seemed very similar to another error posted which I tried the solution but it didn't work. I have done a completely fresh install of symfony as directed, then just added the database migration bundle. Can anyone give me advice on this?
Hi Ryan! Thanks a lot for your answer! I have run : `composer remove sensio/distribution-bundle` . After that, when I do `composer install` I am getting the following error : `PHP Fatal error: Uncaught Symfony ...
... I got it 'working' with composer require nexylan/slack-bundle:1.1.2 php-http/guzzle6-adapter 'working' means getting the same error as in the tutorial Unfortunately Http\HttplugBundle\HttplugBundle::class => ['all ...
Yo Chris! The bundle should work just fine with Symfony 3 as well :). Their composer.json supports Symfony 2 and 3: https://github.com/willdurand/BazingaHateoasBundle/blob/master/composer.json#L15 If you're having any issues, let us know! Cheers! ...
weaverryan
weaverryan
Read Full Comment
Installing the Stof extensions bundle gives errors because you need at least Symfony 5.2 and this project is on 5.1. Upgrade Symfony first, here is the docs for that: https://symfony.com/doc/current/setup/upgrade_minor.html ...
Hello, I had the same issue and that was in my FilterApiResponseEvent I was extending Symfony\Contracts\EventDispatcher\Event instead of Symfony\Component\EventDispatcher\Event; I also clear my var/cache in my Bundle I write it for future users ...
Helloy. Can you help? In my case symfony flex doesn't enable bundle in bundles.php. I can't understand why? Maybe you can suggest me a reason. I use symfony 4.4 ...
Vaceslav-L
Vaceslav-L
Read Full Comment
Hello Victor, After running composer update, i can install knptime bundle now. Otherwise, I have downloaded the source code and used start directory. I have Symfony version 4.4.2 ` bin/console --version Symfony 4.4.2 (env:dev, debug: true) ` Thanks you for help. ...
Xuan-hung L.
Xuan-hung L.
Read Full Comment