From 8704329a9f1259ed11d3f999b693d12dfd7e820c Mon Sep 17 00:00:00 2001 From: Eric Stern Date: Mon, 25 Nov 2024 09:23:37 -0800 Subject: [PATCH 1/3] Add 8.4 stable and 8.5-dev to test matrix --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a99f8bc..0a69c08 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,8 @@ jobs: - '8.1' - '8.2' - '8.3' - - '8.4-dev' + - '8.4' + - '8.5-dev' steps: - name: Check out code From a40e9ac5ddc9c1e760a3940ef3b07e181947b3a5 Mon Sep 17 00:00:00 2001 From: Eric Stern Date: Wed, 8 Jan 2025 09:46:58 -0800 Subject: [PATCH 2/3] Require ASN.1 lib with 8.4 patch --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c9be42a..28e0cd3 100644 --- a/composer.json +++ b/composer.json @@ -45,7 +45,7 @@ "ext-hash": "*", "ext-openssl": "*", "firehed/cbor": "^0.1.0", - "sop/asn1": "^4.1" + "sop/asn1": "^4.1.2" }, "require-dev": { "maglnet/composer-require-checker": "^4.1", From 02d65aec895bbb16dd0cc664048b49e057be5c5f Mon Sep 17 00:00:00 2001 From: Eric Stern Date: Wed, 8 Jan 2025 09:47:36 -0800 Subject: [PATCH 3/3] Bump PHPStan memory limit --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 28e0cd3..ac34a03 100644 --- a/composer.json +++ b/composer.json @@ -65,7 +65,7 @@ ], "autofix": "phpcbf", "phpunit": "phpunit", - "phpstan": "phpstan analyse", + "phpstan": "phpstan analyse --memory-limit=1G", "phpstan-baseline": "phpstan analyse --generate-baseline", "phpcs": "phpcs" }