Commit e64c2b24 authored by Thibaut Vallee's avatar Thibaut Vallee Committed by Bertrand Gauthier
Browse files

Suppression de la dépendance avec unicaen/app, et avec laminas/laminas-dependency-plugin.

parent 57234acf
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
Changelog
=========

7.2.0
-----
- Suppression de la dépendance avec unicaen/app, et avec laminas/laminas-dependency-plugin.

7.1.0
-----
- Rattrapage des évolutions réalisées dans la v6.2.0.
+0 −7
Original line number Diff line number Diff line
@@ -14,10 +14,8 @@
        "beberlei/assert": "^3.3",
        "doctrine/dbal": "^3.4",
        "guzzlehttp/guzzle": "^6.3 || ^7.0",
        "laminas/laminas-dependency-plugin": "^2.2",
        "monolog/monolog": "^2.8",
        "ramsey/uuid": "^3.0",
        "unicaen/app": "^6.0",
        "unicaen/livelog": "^4.0",
        "unicaen/privilege": "^6.0",
        "webmozart/assert": "^1.3"
@@ -39,10 +37,5 @@
        "psr-4": {
            "UnicaenDbImportUnitTest\\": "test/UnicaenDbImportUnitTest"
        }
    },
    "config": {
        "allow-plugins": {
            "laminas/laminas-dependency-plugin": true
        }
    }
}
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
namespace UnicaenDbImport\CodeGenerator;

use Doctrine\DBAL\Platforms\AbstractPlatform;
use UnicaenApp\Exception\RuntimeException;
use RuntimeException;
use UnicaenDbImport\CodeGenerator\Helper\LogTableHelper;
use UnicaenDbImport\CodeGenerator\Helper\TableHelper;
use UnicaenDbImport\CodeGenerator\Helper\TableValidationHelper;
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ namespace UnicaenDbImport\CodeGenerator;

use BadMethodCallException;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use UnicaenApp\Exception\RuntimeException;
use RuntimeException;

class CodeGeneratorException extends RuntimeException
{
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

namespace UnicaenDbImport\CodeGenerator;

use UnicaenApp\Exception\RuntimeException;
use RuntimeException;
use UnicaenDbImport\Domain\DestinationInterface;
use UnicaenDbImport\Domain\ResultInterface;
use UnicaenDbImport\Domain\SourceInterface;
Loading