1546 search results for symfony bundle

... abandoned, are these deprecations the trigger to replace KNP Markdown Bundle with twig/markdown-extra (or can I upgrade to Symfony 6 without removing those deprecations)? The second source is BabDev\PagerfantaBundle. That ...
Hey, Mickael! Assetic bundle just was excluded from the Symfony Standard Edition due to its low usage. I mean, Symfony SE could be used for creating API, etc. where Assetic bundle doesn't need entirely. Many devs used ...
... of stof/doctrine-extensions-bundle which is v1.6.0 you need to have symfony/config 5.2, but if you're using project code from this course you most probably have 5,1 installed. So, to be able to upgrade "stof/doctrine ...
Hey Jack! Not every bundle should have a Symfony Flex recipe. Even without any recipe, the bundle will be anyway configured by Symfony Flex: installed and registered in your bundles.php. So, if the bundle does not need ...
... i'm using php 7.4, composer 1.9.1 and symfony cli 4.10.2 on microsofts linux sub system at the moment. and i have to update the doctrine/annotations package and the framework-extra-bundle perhaps you can add "version ...
... compile .env files for production use (requires symfony/flex >=1.2). # https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration ###> symfony/framework-bundle ### APP_ENV ...
Hello I have tried the updated as well but still i am getting following errors - C:\wamp64\www\Symfony001\Symfony-Doctrine>composer require stof/doctrine-extensions-bundle Using version ^1.6 for stof/doctrine ...
Jayant B.
Jayant B.
Read Full Comment
... class Symfony operations: 1 recipe (6ec0990e709b57a3882c12230b5c20a8) - Configuring doctrine/doctrine-fixtures-bundle (>=3.0): From github.com/symfony/recipes:master Executing script cache:clear [KO] [KO] Script ...
... progress it in the symfony/symfony-docs repo, I hope you understand it's not an easy process upgrading docs. Why Symfony goes this way about bundle-less architecture - there're a lot of reasons behind it, well, which also ...
When trying to install doctrine-fixtures-bundle I get an error. I'm with Symfony version 3.1.10 and I need to install it adding "^2.0.0" like this: composer require --dev "doctrine/doctrine-fixtures-bundle:^2.0.0" Hope that helps someone! Cheers! ...
Lluís Puig Ferrer
Lluís Puig Ferrer
Read Full Comment
In case anyone didn't notice, and you're on Symfony 2.2.*, you need to add "doctrine/doctrine-fixtures-bundle": "dev-master" to your composer.json and new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle() to your bundles to use the fixtures. ...
Hey Sherri, Yeah, the latest v1.6.0 of the bundle requires Symfony 5.2, but you can install the previous one v1.5.0 instead that fits for ^5.0. You can do it: $ composer require "stof/doctrine-extensions-bundle:^1.5.0" Cheers! ...
Hey Ahmed, Could you clarify what exactly "Doctrine extension Bundle"? Yes, StofDoctrineExtensionsBundle requires "gedmo/doctrine-extensions" package as the bundle is just a wrapper for that library that has integration with Symfony if you mean this. Cheers! ...
Hey Amin A. I believe you haven't installed the Doctrine migrations bundle. Once you install it you should not have this error anymore (unless I'm missing something :p) ``` composer require symfony/maker-bundle --dev `` ...
MolloKhan
MolloKhan
Read Full Comment
... Class 'PHPUnit\Framework\TestCase' not found in C:\xampp\htdocs\doki\dev2\vendor\symfony\symfony\src\Symfony\Bundle\FrameworkBundle\Test\KernelTestCase.php:24 Stack trace: #0 C:\xampp\htdocs\doki\dev2\vendor\composer ...
Sebastian R.
Sebastian R.
Read Full Comment
Hey Didi, What exactly version of `sentry/sentry-symfony` did you install? The `composer require sentry/sentry-symfony` finished well without any errors? The latest version should execute this recipe: https ...
... Using version ^1.14 for symfony/webpack-encore-bundle ./composer.json has been updated Running composer update symfony/webpack-encore-bundle Loading composer repositories with package information Updating dependencies ...
Fatal error: Unknown: Failed opening required 'D:\SymfonyProjects\myBlog\vendor\symfony\symfony\src\Symfony\Bundle\WebServerBundle/Resources/router.php' (include_path='.;C:\php\pear') in Unknown on line 0 ...
Hamdi Ali
Hamdi Ali
Read Full Comment
34 lines | LoremIpsumBundle/composer.json
// ... lines 1 - 11
"require": {
// ... line 13
"symfony/config": "^3.4 || ^4.0",
"symfony/dependency-injection": "^3.4 || ^4.0",
"symfony/http-kernel": "^3.4 || ^4.0"
},
"require-dev": {
"symfony/framework-bundle": "^3.4 || ^4.0",
"symfony/phpunit-bridge": "^3.4 || ^4.0",
"symfony/browser-kit": "^3.4 || ^4.0"
},
// ... lines 23 - 34
See Code Block in Script
18 lines | .gitignore
// ... line 1
###> symfony/framework-bundle ###
/.env.local
// ... lines 4 - 18
See Code Block in Script