diff --git a/.github/workflows/buildcheck.yml b/.github/workflows/buildcheck.yml index a34e2b9..36c3507 100644 --- a/.github/workflows/buildcheck.yml +++ b/.github/workflows/buildcheck.yml @@ -11,21 +11,13 @@ jobs: fail-fast: false matrix: php: - - 7.2 - - 7.3 - - 7.4 - - 8.0 + - "7.2" + - "7.3" + - "7.4" + - "8.0" composer: - "" - "--prefer-lowest" - include: - - php: 8.0 - composer: "--ignore-platform-reqs" - exclude: - - php: 8.0 - composer: "" - - php: 8.0 - composer: "--prefer-lowest" steps: - uses: actions/checkout@v1 diff --git a/composer.json b/composer.json index 203deea..ea91db1 100644 --- a/composer.json +++ b/composer.json @@ -37,5 +37,10 @@ "vendor/bin/composer-require-checker", "@composer validate --strict" ] + }, + "config": { + "allow-plugins": { + "ocramius/package-versions": true + } } } diff --git a/tests/Ape/Test.php b/tests/Ape/Test.php index 16338ff..0ad6e49 100644 --- a/tests/Ape/Test.php +++ b/tests/Ape/Test.php @@ -78,7 +78,7 @@ public function testRead2(): void * tag. If the ape tag declares its length is something * like 999,999,999 then we need to be able to handle it. */ - $ini->set("memory_limit", "1M"); + $ini->set("memory_limit", "8M"); $result = $ini->call(function () { $module = $this->getModule("invalid_item_length");