Skip to content

Commit

Permalink
Remove the caveats around PHP 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
duncan3dc committed Nov 3, 2022
1 parent fa3773b commit 4342d60
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/buildcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,10 @@
"vendor/bin/composer-require-checker",
"@composer validate --strict"
]
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
}
}
2 changes: 1 addition & 1 deletion tests/Ape/Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 4342d60

Please sign in to comment.