Skip to content

Commit f2cb43a

Browse files
authored
Merge pull request #30 from samsonasik/bump-requirement-php82
Version 2: bump requirement to php 8.2
2 parents 3f7be10 + 525482d commit f2cb43a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php-versions: ['8.1', '8.2']
16+
php-versions: ['8.2', '8.3', '8.4']
1717
steps:
1818
- name: Setup PHP Action
1919
uses: shivammathur/setup-php@v2

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
}
2323
],
2424
"require": {
25-
"php": "^8.1",
25+
"php": "^8.2",
2626
"webmozart/assert": "^1.11"
2727
},
2828
"require-dev": {
2929
"laminas/laminas-coding-standard": "^2.4",
3030
"phpstan/phpstan": "^2.0",
3131
"phpstan/phpstan-webmozart-assert": "^2.0",
32-
"phpunit/phpunit": "^10.0",
32+
"phpunit/phpunit": "^11.0",
3333
"rector/rector": "dev-main"
3434
},
3535
"config": {

phpunit.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" executionOrder="defects" cacheDirectory=".phpunit.cache">
3-
<coverage includeUncoveredFiles="true">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" executionOrder="defects" cacheDirectory=".phpunit.cache">
3+
<coverage>
44
<report>
55
<clover outputFile="build/logs/clover.xml"/>
66
<html outputDirectory="build/logs/html"/>

0 commit comments

Comments
 (0)