From 7f1a8557b3b668e5a30bb877236c7ebd82b4eb69 Mon Sep 17 00:00:00 2001 From: "reactphp-parallel-renovate-runner[bot]" <226772824+reactphp-parallel-renovate-runner[bot]@users.noreply.github.com> Date: Fri, 10 Oct 2025 10:03:09 +0000 Subject: [PATCH] Update dependency wyrihaximus/makefiles to ^0.7.8 --- Makefile | 3 +++ composer.json | 2 +- composer.lock | 14 +++++++------- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 7665160..25896de 100644 --- a/Makefile +++ b/Makefile @@ -151,6 +151,9 @@ migrations-php-set-phpstan-paths-in-config: #### Ensure PHPStan config has the e migrations-php-set-phpstan-level-max-in-config: #### Ensure PHPStan config has level set to max in etc/qa/phpstan.neon ##*I*## ($(DOCKER_RUN) php -r '$$phpStanConfigFIle = "etc/qa/phpstan.neon"; $$levelString = "\n\tlevel: max"; if (!file_exists($$phpStanConfigFIle)) {exit;} $$neon = file_get_contents($$phpStanConfigFIle); if (!is_string($$neon)) {exit;} if (strpos($$neon, $$levelString) !== false) {exit;} $$neon = str_replace("parameters:", "parameters:" . $$levelString, $$neon); file_put_contents($$phpStanConfigFIle, $$neon);' || true) +migrations-php-set-phpstan-uncomment-parameters: #### Ensure PHPStan config as parameters not commented out in etc/qa/phpstan.neon ##*I*## + ($(DOCKER_RUN) php -r '$$phpStanConfigFIle = "etc/qa/phpstan.neon"; if (!file_exists($$phpStanConfigFIle)) {exit;} $$neon = file_get_contents($$phpStanConfigFIle); if (!is_string($$neon)) {exit;} if (!str_starts_with($$neon, "#parameters:")) {exit;} $$neon = str_replace("#parameters:", "parameters:", $$neon); file_put_contents($$phpStanConfigFIle, $$neon);' || true) + migrations-github-codeowners: #### Ensure a CODEOWNERS file is present, create only if it doesn't exist yet ##*I*## ($(DOCKER_RUN) php -r '$$codeOwnersFile = ".github/CODEOWNERS"; if (file_exists($$codeOwnersFile)) {exit;} file_put_contents($$codeOwnersFile, "* @WyriHaximus" . PHP_EOL);' || true) diff --git a/composer.json b/composer.json index 9a4942d..24744b9 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "require-dev": { "react-parallel/stubs": "^1.2", "wyrihaximus/async-test-utilities": "^10.4.0", - "wyrihaximus/makefiles": "^0.7.7", + "wyrihaximus/makefiles": "^0.7.8", "wyrihaximus/ticking-promise": "^3.1.0" }, "autoload": { diff --git a/composer.lock b/composer.lock index a9a5e9d..95edba1 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": "b17998ada5c32ebd40bfdcf948394ffc", + "content-hash": "ac947ccc3a987223de0301535d5ebc7e", "packages": [ { "name": "lcobucci/clock", @@ -9128,16 +9128,16 @@ }, { "name": "wyrihaximus/makefiles", - "version": "0.7.7", + "version": "0.7.8", "source": { "type": "git", "url": "https://github.com/WyriHaximus/Makefiles.git", - "reference": "52360251718d59c27bbaf6a78e0ccbb365af1662" + "reference": "81933813817269f1be55d86789d4d305fb9d0b3c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/WyriHaximus/Makefiles/zipball/52360251718d59c27bbaf6a78e0ccbb365af1662", - "reference": "52360251718d59c27bbaf6a78e0ccbb365af1662", + "url": "https://api.github.com/repos/WyriHaximus/Makefiles/zipball/81933813817269f1be55d86789d4d305fb9d0b3c", + "reference": "81933813817269f1be55d86789d4d305fb9d0b3c", "shasum": "" }, "require": { @@ -9173,7 +9173,7 @@ "description": "🧱 Makefile building blocks", "support": { "issues": "https://github.com/WyriHaximus/Makefiles/issues", - "source": "https://github.com/WyriHaximus/Makefiles/tree/0.7.7" + "source": "https://github.com/WyriHaximus/Makefiles/tree/0.7.8" }, "funding": [ { @@ -9181,7 +9181,7 @@ "type": "github" } ], - "time": "2025-10-10T07:31:37+00:00" + "time": "2025-10-10T09:26:47+00:00" }, { "name": "wyrihaximus/phpstan-react",