diff --git a/composer.json b/composer.json index b814c06c8..240aa9a48 100644 --- a/composer.json +++ b/composer.json @@ -161,7 +161,7 @@ }, "require-dev": { "dama/doctrine-test-bundle": "^8.2.2", - "doctrine/data-fixtures": "^1.8.1", + "doctrine/data-fixtures": "^2.0.2", "doctrine/doctrine-fixtures-bundle": "^3.7.1", "ergebnis/composer-normalize": "^2.45.0", "friendsofphp/php-cs-fixer": "^3.70.2", diff --git a/composer.lock b/composer.lock index eea2f814b..e4ff06407 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "532d9dc956ba056ebe4df42708af73b0", + "content-hash": "0539a373c337ecafea0e7341fcc4f8d9", "packages": [ { "name": "babdev/pagerfanta-bundle", @@ -15464,23 +15464,22 @@ }, { "name": "doctrine/data-fixtures", - "version": "1.8.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/doctrine/data-fixtures.git", - "reference": "a367a09b7a2b4f63ed57f391bf5713e3e46c7c7b" + "reference": "f7f1e12d6bceb58c204b3e77210a103c1c57601e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/a367a09b7a2b4f63ed57f391bf5713e3e46c7c7b", - "reference": "a367a09b7a2b4f63ed57f391bf5713e3e46c7c7b", + "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/f7f1e12d6bceb58c204b3e77210a103c1c57601e", + "reference": "f7f1e12d6bceb58c204b3e77210a103c1c57601e", "shasum": "" }, "require": { - "doctrine/deprecations": "^0.5.3 || ^1.0", - "doctrine/persistence": "^2.0 || ^3.0", - "php": "^7.4 || ^8.0", - "symfony/polyfill-php80": "^1" + "doctrine/persistence": "^3.1 || ^4.0", + "php": "^8.1", + "psr/log": "^1.1 || ^2 || ^3" }, "conflict": { "doctrine/dbal": "<3.5 || >=5", @@ -15488,7 +15487,6 @@ "doctrine/phpcr-odm": "<1.3.0" }, "require-dev": { - "doctrine/annotations": "^1.12 || ^2", "doctrine/coding-standard": "^12", "doctrine/dbal": "^3.5 || ^4", "doctrine/mongodb-odm": "^1.3.0 || ^2.0.0", @@ -15496,10 +15494,9 @@ "ext-sqlite3": "*", "fig/log-test": "^1", "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^9.6.13 || ^10.4.2", - "psr/log": "^1.1 || ^2 || ^3", - "symfony/cache": "^5.4 || ^6.3 || ^7", - "symfony/var-exporter": "^5.4 || ^6.3 || ^7" + "phpunit/phpunit": "^10.5.3", + "symfony/cache": "^6.4 || ^7", + "symfony/var-exporter": "^6.4 || ^7" }, "suggest": { "alcaeus/mongo-php-adapter": "For using MongoDB ODM 1.3 with PHP 7 (deprecated)", @@ -15530,7 +15527,7 @@ ], "support": { "issues": "https://github.com/doctrine/data-fixtures/issues", - "source": "https://github.com/doctrine/data-fixtures/tree/1.8.1" + "source": "https://github.com/doctrine/data-fixtures/tree/2.0.2" }, "funding": [ { @@ -15546,7 +15543,7 @@ "type": "tidelift" } ], - "time": "2024-12-10T07:00:20+00:00" + "time": "2025-01-21T13:21:31+00:00" }, { "name": "doctrine/doctrine-fixtures-bundle", diff --git a/fixtures/AnnotationFixtures.php b/fixtures/AnnotationFixtures.php index 401d25db8..5a54303a5 100644 --- a/fixtures/AnnotationFixtures.php +++ b/fixtures/AnnotationFixtures.php @@ -43,7 +43,7 @@ class AnnotationFixtures extends Fixture implements DependentFixtureInterface $manager->flush(); } - public function getDependencies() + public function getDependencies(): array { return [ EntryFixtures::class, diff --git a/fixtures/ConfigFixtures.php b/fixtures/ConfigFixtures.php index 27f47a3da..cb6359fb5 100644 --- a/fixtures/ConfigFixtures.php +++ b/fixtures/ConfigFixtures.php @@ -55,7 +55,7 @@ class ConfigFixtures extends Fixture implements DependentFixtureInterface $manager->flush(); } - public function getDependencies() + public function getDependencies(): array { return [ UserFixtures::class, diff --git a/fixtures/EntryFixtures.php b/fixtures/EntryFixtures.php index 22b797122..b408efa61 100644 --- a/fixtures/EntryFixtures.php +++ b/fixtures/EntryFixtures.php @@ -155,7 +155,7 @@ class EntryFixtures extends Fixture implements DependentFixtureInterface $manager->flush(); } - public function getDependencies() + public function getDependencies(): array { return [ UserFixtures::class, diff --git a/fixtures/IgnoreOriginUserRuleFixtures.php b/fixtures/IgnoreOriginUserRuleFixtures.php index 6825a46d2..92b0652c4 100644 --- a/fixtures/IgnoreOriginUserRuleFixtures.php +++ b/fixtures/IgnoreOriginUserRuleFixtures.php @@ -21,7 +21,7 @@ class IgnoreOriginUserRuleFixtures extends Fixture implements DependentFixtureIn $manager->flush(); } - public function getDependencies() + public function getDependencies(): array { return [ UserFixtures::class, diff --git a/fixtures/SiteCredentialFixtures.php b/fixtures/SiteCredentialFixtures.php index 3f99f690a..5b95abe25 100644 --- a/fixtures/SiteCredentialFixtures.php +++ b/fixtures/SiteCredentialFixtures.php @@ -37,7 +37,7 @@ class SiteCredentialFixtures extends Fixture implements DependentFixtureInterfac $manager->flush(); } - public function getDependencies() + public function getDependencies(): array { return [ UserFixtures::class, diff --git a/fixtures/TaggingRuleFixtures.php b/fixtures/TaggingRuleFixtures.php index 2ab748b85..b66e5d3a0 100644 --- a/fixtures/TaggingRuleFixtures.php +++ b/fixtures/TaggingRuleFixtures.php @@ -58,7 +58,7 @@ class TaggingRuleFixtures extends Fixture implements DependentFixtureInterface $manager->flush(); } - public function getDependencies() + public function getDependencies(): array { return [ ConfigFixtures::class,