Răsfoiți Sursa

Corrections ManagerRegistry

François Drouhard 3 ani în urmă
părinte
comite
7f1eefed09

+ 6 - 3
composer.json

@@ -2,9 +2,13 @@
     "type": "project",
     "license": "proprietary",
     "require": {
-        "php": "^7.2",
+        "php": "^7.2|^8.0",
         "ext-ctype": "*",
         "ext-iconv": "*",
+        "composer/package-versions-deprecated": "1.11.99.2",
+        "doctrine/doctrine-bundle": "^2.3",
+        "doctrine/doctrine-migrations-bundle": "^3.1",
+        "doctrine/orm": "^2.9",
         "sensio/framework-extra-bundle": "^5.1",
         "symfony/apache-pack": "^1.0",
         "symfony/asset": "^5.1",
@@ -15,8 +19,8 @@
         "symfony/form": "^5.1",
         "symfony/framework-bundle": "^5.1",
         "symfony/monolog-bundle": "^3.1",
-        "symfony/orm-pack": "*",
         "symfony/process": "^5.1",
+        "symfony/proxy-manager-bridge": "5.1.*",
         "symfony/security-bundle": "^5.1",
         "symfony/serializer-pack": "*",
         "symfony/swiftmailer-bundle": "^3.1",
@@ -29,7 +33,6 @@
     },
     "require-dev": {
         "symfony/debug-pack": "^1.0",
-	    "ocramius/proxy-manager": "<2.1",
         "symfony/maker-bundle": "^1.0",
         "symfony/profiler-pack": "*",
         "symfony/test-pack": "*"

Fișier diff suprimat deoarece este prea mare
+ 431 - 202
composer.lock


+ 1 - 1
src/Entity/Film.php

@@ -99,7 +99,7 @@ class Film
     private $mediaVideo;
 
     /**
-     * @ORM\ManyToMany(targetEntity="App\Entity\Realisateur", inversedBy="films", cascade="persist")
+     * @ORM\ManyToMany(targetEntity="App\Entity\Realisateur", inversedBy="films", cascade={"persist"})
      * @var \Doctrine\Common\Collections\Collection
      */
     private $realisateurs;

+ 1 - 1
src/Entity/Realisateur.php

@@ -28,7 +28,7 @@ class Realisateur
     private $nomComplet;
 
     /**
-     * @ORM\ManyToMany(targetEntity="App\Entity\Film", mappedBy="realisateurs", cascade="persist")
+     * @ORM\ManyToMany(targetEntity="App\Entity\Film", mappedBy="realisateurs", cascade={"persist"})
      * @var \Doctrine\Common\Collections\Collection
      */
     private $films;

+ 1 - 1
src/Repository/CommentaireRepository.php

@@ -4,7 +4,7 @@ namespace App\Repository;
 
 use App\Entity\Commentaire;
 use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
-use Doctrine\Common\Persistence\ManagerRegistry;
+use Doctrine\Persistence\ManagerRegistry;
 
 /**
  * @method Commentaire|null find($id, $lockMode = null, $lockVersion = null)

+ 1 - 1
src/Repository/FilmRepository.php

@@ -4,7 +4,7 @@ namespace App\Repository;
 
 use App\Entity\Film;
 use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
-use Doctrine\Common\Persistence\ManagerRegistry;
+use Doctrine\Persistence\ManagerRegistry;
 
 /**
  * @method Film|null find($id, $lockMode = null, $lockVersion = null)

+ 1 - 1
src/Repository/RealisateurRepository.php

@@ -4,7 +4,7 @@ namespace App\Repository;
 
 use App\Entity\Realisateur;
 use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
-use Doctrine\Common\Persistence\ManagerRegistry;
+use Doctrine\Persistence\ManagerRegistry;
 
 /**
  * @method Realisateur|null find($id, $lockMode = null, $lockVersion = null)

Unele fișiere nu au fost afișate deoarece prea multe fișiere au fost modificate în acest diff