From e6a41d1ec35f2e624af57023918cba72f56ff18f Mon Sep 17 00:00:00 2001 From: Artur Kyryliuk Date: Fri, 17 Jul 2026 12:55:05 +0200 Subject: [PATCH] Update minimal faker version to omit deprecated versions --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 93f150e..5d6bf94 100644 --- a/composer.json +++ b/composer.json @@ -33,9 +33,9 @@ "source": "https://github.com/Brain-WP/BrainFaker" }, "require": { - "php": ">=7.2", + "php": ">=7.4", "brain/monkey": "^2.3.1", - "fakerphp/faker": "^1.20" + "fakerphp/faker": "^1.23.1" }, "require-dev": { "phpunit/phpunit": "^9.5", @@ -61,8 +61,8 @@ "tests": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage", "tests:coverage": "@php ./vendor/phpunit/phpunit/phpunit --coverage-clover=coverage.xml", "phpcs": [ - "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -p . --ignore=*/vendor/* --extensions=php --basepath=./ --runtime-set testVersion 7.2-", - "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -p . --standard=PHPCompatibility --ignore=*/vendor/* --extensions=php --basepath=./ --runtime-set testVersion 7.2-" + "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -p . --ignore=*/vendor/* --extensions=php --basepath=./ --runtime-set testVersion 7.4-", + "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -p . --standard=PHPCompatibility --ignore=*/vendor/* --extensions=php --basepath=./ --runtime-set testVersion 7.4-" ] }, "config": {