diff options
author | Remi Collet <remi@remirepo.net> | 2025-07-30 10:32:10 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-07-30 10:32:10 +0200 |
commit | 133813ea11d3163ff2b768c503ab8abf925f8027 (patch) | |
tree | fa70db1659f960083744056c8bf6c417f8c592bf | |
parent | bf8faf059c9d2b9584d4ca6be984bf143063623f (diff) |
-rw-r--r-- | composer.json | 18 | ||||
-rw-r--r-- | php-cs-fixer.spec | 9 |
2 files changed, 17 insertions, 10 deletions
diff --git a/composer.json b/composer.json index 02a3634..515ee88 100644 --- a/composer.json +++ b/composer.json @@ -25,17 +25,17 @@ "ext-hash": "*", "ext-json": "*", "ext-tokenizer": "*", - "clue/ndjson-react": "^1.0", + "clue/ndjson-react": "^1.3", "composer/semver": "^3.4", "composer/xdebug-handler": "^3.0.5", "fidry/cpu-core-counter": "^1.2", "react/child-process": "^0.6.6", - "react/event-loop": "^1.0", - "react/promise": "^2.11 || ^3.0", - "react/socket": "^1.0", - "react/stream": "^1.0", + "react/event-loop": "^1.5", + "react/promise": "^3.2", + "react/socket": "^1.16", + "react/stream": "^1.4", "sebastian/diff": "^4.0.6 || ^5.1.1 || ^6.0.2 || ^7.0", - "symfony/console": "^5.4.45 || ^6.4.13 || ^7.0", + "symfony/console": "^5.4.47 || ^6.4.13 || ^7.0", "symfony/event-dispatcher": "^5.4.45 || ^6.4.13 || ^7.0", "symfony/filesystem": "^5.4.45 || ^6.4.13 || ^7.0", "symfony/finder": "^5.4.45 || ^6.4.17 || ^7.0", @@ -121,7 +121,11 @@ ], "php-compatibility": "@php dev-tools/vendor/bin/phpcs -p --standard=dev-tools/php-compatibility/phpcs-php-compatibility.xml", "phpstan": "@php -d memory_limit=512M dev-tools/vendor/bin/phpstan analyse", - "phpstan:baseline": "@php -d memory_limit=512M dev-tools/vendor/bin/phpstan analyse --generate-baseline=./dev-tools/phpstan/baseline.php", + "phpstan:baseline": [ + "@php -d memory_limit=512M dev-tools/vendor/bin/phpstan analyse --generate-baseline=./dev-tools/phpstan/baseline/_loader.php", + "find ./dev-tools/phpstan/baseline/ -type f -not -name _loader.php -delete", + "@php dev-tools/vendor/bin/split-phpstan-baseline ./dev-tools/phpstan/baseline/_loader.php --no-error-count" + ], "qa": "@quality-assurance", "quality-assurance": [ "Composer\\Config::disableProcessTimeout", diff --git a/php-cs-fixer.spec b/php-cs-fixer.spec index 0b30371..027f755 100644 --- a/php-cs-fixer.spec +++ b/php-cs-fixer.spec @@ -11,14 +11,14 @@ # For compatibility with SCL %undefine __brp_mangle_shebangs -%global gh_commit 38dad0767bf2a9b516b976852200ae722fe984ca +%global gh_commit 2fb6d7f6c3398dca5786a1635b27405d73a417ba %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) -%global gh_date 2025-07-15 +%global gh_date 2025-07-29 %global gh_owner FriendsOfPHP %global gh_project PHP-CS-Fixer Name: php-cs-fixer -Version: 3.84.0 +Version: 3.85.1 Release: 1%{?dist} Summary: PHP Coding Standards Fixer @@ -106,6 +106,9 @@ PHP_CS_FIXER_IGNORE_ENV=1 ./%{name} --version | grep %{version} %changelog +* Wed Jul 30 2025 Remi Collet <remi@remirepo.net> - 3.85.1-1 +- update to 3.85.1 + * Wed Jul 16 2025 Remi Collet <remi@remirepo.net> - 3.84.0-1 - update to 3.84.0 |