1545 search results for symfony bundle

68 lines | composer.json
{
// ... lines 2 - 15
"require": {
// ... lines 17 - 22
"symfony/monolog-bundle": "^3.1",
// ... lines 24 - 30
},
// ... lines 32 - 66
}
See Code Block in Script
... error: Fatal error: Uncaught Symfony\Component\Debug\Exception\ClassNotFoundException: Attempted to load class "ToolsBundle" from namespace "VisageFour\Bundle\ToolsBundle". is it better to just use symfony 3.4? There's ...
... and Symfony are running and other doctrine commands seem to work docker-composer.yml ``` version: '3' services: ###> doctrine/doctrine-bundle ### database: image: postgres:${POSTGRES_VERSION:-14}-alpine ...
... Hi, I'm having issues connecting to mysql : ` mysql -u symfony --password=ChangeMe --host=127.0.0.1 --port=52883 mysql: [Warning] Using a password on the command line interface can be insecure. ERROR 2013 (HY000): Lost ...
Tien dat L.
Tien dat L.
Read Full Comment
Hey Ganesh, Yes, FOSMessageBundle is a popular bundle for Symfony if you're looking for User-to-user messaging. I'm not sure, but probably this bundle is not a kind of chat application where you don't need to refresh ...
Hey Kribo , Well, the process is the same as for Symfony 3.x. Well, actually, you can look at any third-party Symfony bundle, like https://github.com/FriendsOfSymfony/FOSUserBundle and steal the skeleton from it. Also ...
Does this work for Symfony 3.2.8? it seems to be for symfony2 only? When I look at the packagist.org, the description of hautelook bundle is "Symfony2 Bundle to manage fixtures with Alice and Faker.". I tried following ...
Martin Bittner
Martin Bittner
Read Full Comment
... \Controller; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\Response; class BibliographyController extends Controller ...
Ross Nolan
Ross Nolan
Read Full Comment
... hello, I'm having a hard time following which packages require "--dev" addon. For example I see both the symfony/debug-bundle on docs and on packagist website recommended installation as "composer require symfony ...
Hey Frank, Did you try to follow the advice in the error message, i.e. running `composer require symfony/twig-bundle`? It might be a good idea to try to remove that bundle and install again, probably it was not ...
Hello, can i use **symfonycasts/verify-email-bundle** with Symfony 6.3? I installed it in a 6.3 project, but files that were generated are quite different to the files here in this tutorial or github or in the symfony ...
In case a bundle is what you need, you can create your own bundles without much hassle. Here's a tutorial about it https://symfonycasts.com/screencast/symfony-bundle But if what you really need is a component, well ...
MolloKhan
MolloKhan
Read Full Comment
... `DependencyInjection/Configuration` class. Now I'm trying to convert to Symfony 4.3. - Where should these internal bundle service definitions go? - And more importantly, how do I deal with bundle configuration of these internal bundles when internal bundles aren't supposed to exist anymore?
halifaxious
halifaxious
Read Full Comment
Oh I get it, then you could setup your dependencies using the pipe "|" operator, e.g. `"symfony/console": "3 | 4"`, of course, your bundle has to be flexible enough for working correctly on both versions. About ...
MolloKhan
MolloKhan
Read Full Comment
39 lines | .env
// ... lines 1 - 29
###> symfony/mercure-bundle ###
# See https://symfony.com/doc/current/mercure.html#configuration
# The URL of the Mercure hub, used by the app to publish updates (can be a local URL)
MERCURE_URL=https://127.0.0.1:8000/.well-known/mercure
# The public URL of the Mercure hub, used by the browser to connect
MERCURE_PUBLIC_URL=https://127.0.0.1:8000/.well-known/mercure
# The secret used to sign the JWTs
MERCURE_JWT_SECRET="!ChangeMe!"
###< symfony/mercure-bundle ###
See Code Block in Script
... It is: "symfony/webpack-encore-bundle": "^2.0" ...
38 lines | src/Controller/CommentAdminController.php
// ... lines 1 - 10
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
// ... lines 12 - 38
See Code Block in Script
104 lines | composer.json
{
// ... lines 2 - 3
"require": {
// ... lines 5 - 35
"symfony/webpack-encore-bundle": "^1.4",
// ... lines 37 - 40
},
// ... lines 42 - 102
}
See Code Block in Script
104 lines | composer.json
{
// ... lines 2 - 3
"require": {
// ... lines 5 - 35
"symfony/webpack-encore-bundle": "^1.4",
// ... lines 37 - 40
},
// ... lines 42 - 102
}
See Code Block in Script
92 lines | composer.json
{
// ... lines 2 - 84
"require-dev": {
// ... line 86
"symfony/maker-bundle": "^1.52",
// ... lines 88 - 89
}
}
See Code Block in Script