diff options
| -rw-r--r-- | composer.json | 12 | ||||
| -rw-r--r-- | php-tecnickcom-tc-lib-color.spec | 10 |
2 files changed, 12 insertions, 10 deletions
diff --git a/composer.json b/composer.json index 936003a..9ba02be 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ } ], "require": { - "php": ">=8.1", + "php": ">=8.2", "ext-pcre": "*" }, "minimum-stability": "dev", @@ -44,9 +44,7 @@ }, "require-dev": { "pdepend/pdepend": "^2.16", - "phpmd/phpmd": "^2.15", - "phpunit/phpunit": "^13.1 || ^12.5 || ^11.5 || ^10.5", - "squizlabs/php_codesniffer": "^4.0", + "phpunit/phpunit": "^13.1 || ^12.5 || ^11.5", "phpcompatibility/php-compatibility": "^10.0.0@dev" }, "autoload": { @@ -63,8 +61,8 @@ }, "scripts": { "test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --stderr test", - "cs-check": "./vendor/bin/phpcs --standard=phpcs.xml", - "cs-fix": "./vendor/bin/phpcbf --ignore=\"./vendor/\" --standard=psr12 src test", - "analyse": "./vendor/phpstan.phar analyse" + "cs-check": "./vendor/bin/mago --config ./mago.src.toml lint src && ./vendor/bin/mago --config ./mago.test.toml lint test", + "cs-fix": "./vendor/bin/mago fmt src test", + "analyse": "./vendor/bin/mago --config ./mago.src.toml analyze src && ./vendor/bin/mago --config ./mago.test.toml analyze test" } } diff --git a/php-tecnickcom-tc-lib-color.spec b/php-tecnickcom-tc-lib-color.spec index da86b0a..49fe760 100644 --- a/php-tecnickcom-tc-lib-color.spec +++ b/php-tecnickcom-tc-lib-color.spec @@ -19,7 +19,7 @@ Name: php-%{gh_owner}-%{gh_project} Summary: PHP library to manipulate various color representations License: LGPL-3.0-or-later -Version: 2.5.3 +Version: 2.6.0 Release: 1%{?dist} %forgemeta URL: %{forgeurl} @@ -36,9 +36,9 @@ BuildRequires: php-pcre BuildRequires: php-fedora-autoloader-devel # From composer.json, "require": { -# "php": ">=8.1", +# "php": ">=8.2", # "ext-pcre": "*" -Requires: php(language) >= 8.1 +Requires: php(language) >= 8.2 Requires: php-pcre # From phpcompatinfo report for version 1.12.4 # none @@ -113,6 +113,10 @@ exit $ret %changelog +* Wed May 13 2026 Remi Collet <remi@remirepo.net> - 2.6.0-1 +- update to 2.6.0 +- raise dependency on PHP 8.2 + * Sun May 3 2026 Remi Collet <remi@remirepo.net> - 2.5.3-1 - update to 2.5.3 |
