1545 search results for symfony bundle

... - Root composer.json requires stof/doctrine-extensions-bundle ^1.6 -> satisfiable by stof/doctrine-extensions-bundle[v1.6.0]. - stof/doctrine-extensions-bundle v1.6.0 requires symfony/config ^4.4 || ^5.2 -> found symfony ...
Upgrading to Symfony 7

... composer up Brace yourselves because this might not work. Yup! Something is blocking the update! The first thing I see is babdev/pagerfanta-bundle. Apparently, it works with Symfony 4, 5 and 6 ...

5:05
victor Thnx for the links, I've one question, which isn't true but lets start @#1... -1-How does one go to work in creating the shareable bundle? A) I create a new symfony/skeleton project and in the src/AcmeBundle ...
... many features for database schema introspection and management. doctrine/doctrine-bundle 1.10.3 Symfony DoctrineBundle doctrine/doctrine-cache-bundle 1.3.5 Symfony Bundle for Doctrine Cache ...
julien_bonnier
julien_bonnier
Read Full Comment
... \ProfilerListener::onKernelRequest". [] [] [2013-12-19 13:43:07] event.DEBUG: Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\SessionListener::onKernelRequest". [] [] [2013-12-19 ...
Mathias Strasser
Mathias Strasser
Read Full Comment
Themed Pagination Links

... You can totally customize them as much as you want, including with a custom template. But there are several built-in, sort of "themes"... including one for Bootstrap 5. Back on the bundle documentation, click on "Default ...

7:07
Installation and First Admin

... baking a positively mind-blowing admin interface in Symfony with the wonderful EasyAdminBundle. Wait, but what about SonataAdminBundle? SonataAdminBundle is super powerful... more powerful than EasyAdminBundle. But it's ...

5:56
104 lines | composer.json
{
// ... lines 2 - 3
"require": {
// ... lines 5 - 24
"symfony/framework-bundle": "^4.0",
"symfony/mailer": "4.3.*",
// ... lines 27 - 40
},
// ... lines 42 - 102
}
See Code Block in Script
72 lines | composer.json
{
// ... lines 2 - 5
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/console": "7.0.*",
"symfony/dotenv": "7.0.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "7.0.*",
"symfony/runtime": "7.0.*",
"symfony/yaml": "7.0.*"
},
// ... lines 17 - 70
}
See Code Block in Script
... things that make the web debug toolbar work (and normally they're all handled automatically for you with the recipes, but maybe something went wrong): 1) You need to have `symfony/web-profiler-bundle` installed. Check ...
weaverryan
weaverryan
Read Full Comment
... recipe, see: https://github.com/symfony/recipes/tree/master/symfony/twig-bundle , so it should create a config file for you in the config/packages/twig.yaml path where you need to write its configuration instead of app ...
... set of packages. Problem 1 - Installation request for liip/imagine-bundle ^2.3 -> satisfiable by liip/imagine-bundle[2.3.0]. - liip/imagine-bundle 2.3.0 requires symfony/asset ^3.4|^4.3|^5.0 -> no matching ...
Charlotte M.
Charlotte M.
Read Full Comment
... \FrameworkExtraBundle\Configuration\Route; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Response; class GenusController extends ...
Halil Yaman
Halil Yaman
Read Full Comment
104 lines | composer.json
{
// ... lines 2 - 41
"require-dev": {
// ... lines 43 - 45
"symfony/browser-kit": "4.4.*",
"symfony/debug-bundle": "4.4.*",
"symfony/dotenv": "4.4.*",
// ... lines 49 - 50
"symfony/phpunit-bridge": "4.4.*",
// ... line 52
"symfony/var-dumper": "4.4.*"
},
// ... lines 55 - 102
}
See Code Block in Script
... .. - Root composer.json requires symfony/framework-bundle ^4.0 ->satisfiable by symfony/framework-bundle[v4.4.0, ..., v4.4.25]. - Root composer.json requires symfony/messenger 4.3.* -> satisfiable by symfony/messenger[v4.3.0, ..., v4.3.11]. What next?
esskayaitch
esskayaitch
Read Full Comment
... /menu-bundle/src/ /** * BhamMenuBundle */ namespace Bham\MenuBundle; use Symfony\Component\HttpKernel\Bundle\Bundle; /** * Class BhamMenuBundle * @package Bham\MenuBundle */ class BhamMenuBundle extends Bundle ...
Installing Turbo

... does. And it's a huge step towards making our app feel like a single page application. Turbo itself is... just a JavaScript library! It has nothing to do with Symfony. But Symfony does have a package that makes it ...

3:41
Aliases When Autowiring Fails

... just like we were doing before. Or, as the error suggests, we can create an alias. Let's do that: alias Knp\Bundle\MarkdownBundle\MarkdownParserInterface to @markdown.parser: We just told Symfony exactly what service to ...

3:46
Upgrade Outdated Libraries

... library name - symfony/assetic-bundle. Since we only want to upgrade this library right now, find your terminal and run: In general, if a library is giving you deprecation warnings like this one, you do need to upgrade ...

2:57
Dependency Inject All the Things

... it actually does: // vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php // ... public function generateUrl($route, $parameters = array(), $referenceType = UrlGeneratorInterface ...

3:14