2708 search results for Doctrine

... of packages. Problem 1 - doctrine/orm is locked to version 2.8.1 and an update of this package was not requested. - doctrine/orm 2.8.1 requires doctrine/common ^3.0 -> found doctrine/common[3.0.0, ..., 3.1.0 ...
... the course code download. "require": { "php": ">=5.5.9", "symfony/symfony": "3.1.*", "doctrine/orm": "^2.5", "doctrine/doctrine-bundle": "^1.6", "doctrine/doctrine-cache ...
Neil Sweeney
Neil Sweeney
Read Full Comment
Hello there! HELP! Recently I've migrated from Symfony 5.4 to Symfony 6.4 (64.10), with this upgrade doctrine/orm and doctrine/doctrine-migrations-bundle also have been upgraded: ``` "doctrine/orm": "3.2.2 ...
SoftwareDevs
SoftwareDevs
Read Full Comment
Hi, I still get this deprecation: > The "Symfony\Bridge\Doctrine\Logger\DbalLogger" class implements "Doctrine\DBAL\Logging\SQLLogger" that is deprecated Use {@see \Doctrine\DBAL\Logging\Middleware} or implement ...
MattWelander
MattWelander
Read Full Comment
If you are running into an error with messages like `Can only install one of: doctrine/common[v2.9.0, 3.0.2].` while installing the stof-bundle, it is most likely because your doctrine version is too new. At the time of ...
Marcus S.
Marcus S.
Read Full Comment
... i'm sorry I am new with symfony but I’m sure that Doctrine migrations bundle is installed and everything was good until 14 - Registration Form. The whole message is: php ./bin/console make:migration Fatal error ...
... don't, then check if you have these 3 libraries installed ``` doctrine/orm doctrine/doctrine-bundle doctrine/doctrine-migrations-bundle ```
MolloKhan
MolloKhan
Read Full Comment
Hey AbelardoLG, Yes, according to this deprecation warning: https://github.com/doctrine/persistence/blob/99b196bbd4715a94fa100fac664a351ffa46d6a5/lib/Doctrine/Common/Persistence/ManagerRegistry.php#L11 - you ...
Thank you for the quick response. I have symfony/orm-pack installed and the following bundles relating to doctrine: ` ... Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle::class => ['all' => true], Doctrine ...
danielchadwick
danielchadwick
Read Full Comment
22 lines | .env.dist
// ... lines 1 - 15
###> doctrine/doctrine-bundle ###
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
# Configure your db driver and server_version in config/packages/doctrine.yaml
DATABASE_URL=mysql://root:@127.0.0.1:3306/symfony4_space_bar
###< doctrine/doctrine-bundle ###
See Code Block in Script
22 lines | .env.dist
// ... lines 1 - 15
###> doctrine/doctrine-bundle ###
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
# Configure your db driver and server_version in config/packages/doctrine.yaml
DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name
###< doctrine/doctrine-bundle ###
See Code Block in Script
At the moment I have to change php version in config -> platform -> php section from 5.5.9 to 7.2.5. Then, changed a version of Doctrine ORM to "~2.4,>=2.4.5" (found it here https://github.com/symfony/symfony/blob ...
toporovvv
toporovvv
Read Full Comment
... annotations to php8 attributes (though I could have converted the generated code back to annotations instead, I think). Now on it part 2! ``` api-platform/core v2.6.8 doctrine/annotations ...
Introduction

... next hour, we’re going to take things to the next level, aiming at some of the most difficult areas of Symfony, like security, forms, and some serious Doctrine topics. Some of this stuff will look pretty tough at first ...

0:44
Introduction

... is, find out more about the core Symfony services and create a few of our own. In Doctrine, we’ll create some ManyToOne and ManyToMany relationships. We’ll also talk about lifecycle callbacks and event listeners. And ...

1:00
Hey Michel! I think I know this error :). The Doctrine organization has recently been releasing some major versions of libraries, and it's been causing various problems like this. The problem isn't really what Doctrine ...
weaverryan
weaverryan
Read Full Comment
... (id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB'); //... ``` while the docker-compose file configures a postgresql container: ``` version: '3.7' services: ###> doctrine ...
... ="postgresql://db_user:db_password@127.0.0.1:5432/db_name?serverVersion=13&charset=utf8" ` docker-compose.yml von recipes `version: '3' services: ###> doctrine/doctrine-bundle ### database: image: postgres ...
Tien dat L.
Tien dat L.
Read Full Comment
... 2) `composer outdated` gave this result doctrine/dbal 2.13.8 3.3.4 Powerful PHP database abst... doctrine/doctrine-migrations-bundle 2.2.3 3.2.2 Symfony DoctrineMigrations... doctrine/migrations ...
Hey Farry7, Yes, sure! Docker and Doctrine are completely different things. You can avoid using Docker and connect to your local MySQL DB directly from your application. About Doctrine - yes, some websites even don't ...