1536 search results for symfony bundle

... '..../vendor/symfony/symfony/src/Symfony/Bundle/WebServerBundle/Resources/router.php' (include_path='.:/usr/local/php5/lib/php') in Unknown on line 0 ` After googling I found out that I have exactly this issue: https ...
... /doctrine-bridge": "^5.2.7", "symfony/dotenv": "5.4.*", "symfony/flex": "^2", "symfony/form": "5.4.*", "symfony/framework-bundle": "5.4.*", "symfony/http-foundation": "5.4 ...
Hey Dushyant, Ah, sure! We create that bundle class, i.e. KnpULoremIpsumBundle in the 2nd chapter: https://symfonycasts.com/screencast/symfony-bundle/bundle-services#creating-the-bundle-class . And later in https ...
Well, Here is my composer.json "require": { "php": ">=5.5.9", "symfony/symfony": "3.2.*", "doctrine/orm": "^2.5", "doctrine/doctrine-bundle": "^1.6", "doctrine/doctrine ...
Martin Bittner
Martin Bittner
Read Full Comment
67 lines | composer.json
{
// ... lines 2 - 3
"require": {
"php": "^7.2.5",
"ext-ctype": "*",
"ext-iconv": "*",
"sensio/framework-extra-bundle": "^5.5",
"symfony/console": "5.0.*",
"symfony/dotenv": "5.0.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "5.0.*",
"symfony/yaml": "5.0.*"
},
// ... lines 15 - 44
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
// ... lines 50 - 55
},
// ... lines 57 - 65
}
See Code Block in Script
KnpTimeBundle Install the Bundle Get its Service

... files. Let's open that. Down here, we can see that KnpTimeBundle was added to this array. That's where Symfony activates this bundle in our application. Remember, bundles give us services, and this one's no exception. But ...

4:50
Functional Tests

... add one line to config_test.yml. If you're using Symfony Flex, these steps should eventually be done for you. I say eventually, because - at this moment - Symfony 4 support is still being added to the bundle. Ok! Let's ...

7:00
I had a problem with installing `symfony/stimulus-bundle` using composer - the composer.lock locked `twig` on uncompatible version 3.6.1: ``` Problem 1 - symfony/stimulus-bundle[v2.18.0, ..., v2.18.1] require ...
10 lines | src/AppBundle/AppBundle.php
// ... lines 1 - 4
use Symfony\Component\HttpKernel\Bundle\Bundle;
class AppBundle extends Bundle
{
}
See Code Block in Script
... [] = new Symfony\Bundle\DebugBundle\DebugBundle(); $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle ...
31 lines | .gitignore
// ... lines 1 - 22
###> symfony/webpack-encore-bundle ###
/node_modules/
/public/build/
// ... lines 26 - 27
###< symfony/webpack-encore-bundle ###
// ... lines 29 - 31
See Code Block in Script
18 lines | .gitignore
// ... lines 1 - 11
###> symfony/webpack-encore-bundle ###
/node_modules/
/public/build/
npm-debug.log
yarn-error.log
###< symfony/webpack-encore-bundle ###
See Code Block in Script
31 lines | importmap.php
// ... lines 1 - 15
return [
// ... lines 17 - 23
'@hotwired/stimulus' => [
'version' => '3.2.2',
],
'@symfony/stimulus-bundle' => [
'path' => './vendor/symfony/stimulus-bundle/assets/dist/loader.js',
],
];
See Code Block in Script
32 lines | .env
// ... lines 1 - 15
###> symfony/framework-bundle ###
// ... lines 17 - 18
#TRUSTED_PROXIES=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
#TRUSTED_HOSTS='^(localhost|example\.com)$'
###< symfony/framework-bundle ###
// ... lines 22 - 32
See Code Block in Script
Hey Jennifer, OK, what version of Symfony you're on? And what exactly version of WebpackEncoreBundle is installed? You can check it with Composer: $ composer info symfony/webpack-encore-bundle Actually, "Symfony ...
Howdy Steve, `symfony/webpack-encore` is the JavaScript library for Symfony Webpack Encore. Whereas `symfony/webpack-encore-bundle` is the PHP library, in the form of a Symfony Bundle, that configures a Symfony ...
Jesse-Rushlow
Jesse-Rushlow
Read Full Comment
... ", "symfony/console": "4.3.*", "symfony/dotenv": "4.3.*", "symfony/flex": "^1.3.1", "symfony/framework-bundle": "4.3.*", "symfony/twig-bundle": "4.3.*", "symfony/web-server ...
69 lines | composer.json
{
// ... lines 2 - 3
"require": {
"php": "^7.2.5",
"ext-ctype": "*",
"ext-iconv": "*",
"sensio/framework-extra-bundle": "^5.5",
"sensiolabs/security-checker": "^6.0",
"symfony/console": "5.0.*",
"symfony/dotenv": "5.0.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "5.0.*",
"symfony/yaml": "5.0.*"
},
// ... lines 16 - 67
}
See Code Block in Script
71 lines | composer.json
{
// ... lines 2 - 15
"require-dev": {
"easycorp/easy-log-handler": "^1.0.2",
// ... line 18
"symfony/debug-bundle": "^3.3|^4.0",
// ... line 20
"symfony/monolog-bundle": "^3.0",
"symfony/phpunit-bridge": "^3.3|^4.0",
"symfony/profiler-pack": "^1.0",
"symfony/var-dumper": "^3.3|^4.0"
},
// ... lines 26 - 69
}
See Code Block in Script
MakerBundle Autoconfiguration

Congrats, team! We are done with the heavy stuff in this tutorial! So it's time for a victory lap. Let's install one of my favorite Symfony bundles: MakerBundle. Find your terminal and run ...

4:27