2725 search results for Doctrine

yes, I think autogenerated namespace is wrong, in a (start) folder from Symfony Security tutorials AbstractMigration.php live in two places: ..\vendor\doctrine\migrations\lib\Doctrine\DBAL\Migrations ...
... \doctrine\dbal\lib\Doctrine\DBAL\Driver\PDOConnection.php:43 Stack trace: #0 C:\Bitnami\wampstack-7.3.11-0\apache2\htdocs\rest\vendor\doctrine\dbal\lib\Doctrine\DBAL\Driver\PDOConnection.php(43): PDO->__construct('sqlite:C ...
juantreses
juantreses
Read Full Comment
... from `/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOMySql/Driver.php Do you have an idea what could have happened? ` > ./bin/console messenger:consume Which transports/receivers do you want to consume ...
... ", "symfony/symfony": "3.1.*", "doctrine/orm": "^2.5", "doctrine/doctrine-bundle": "^1.6", "doctrine/doctrine-cache-bundle": "^1.2", "symfony/swiftmailer-bundle": "^2.3", "symfony ...
... 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 ...
... 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
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
... 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 ...