Skip to content

Commit 0957968

Browse files
authored
Merge pull request #56 from shochdoerfer/feature/php82
PHP 8.2 compatibility
2 parents ecaffcd + e37c95a commit 0957968

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
strategy:
1212
matrix:
1313
operating-system: ['ubuntu-latest']
14-
php-versions: ['7.4', '8.0', '8.1']
14+
php-versions: ['8.0', '8.1', '8.2']
1515
coveralls: [false]
1616
include:
1717
- operating-system: 'ubuntu-latest'
18-
php-versions: '8.1'
18+
php-versions: '8.2'
1919
composer-prefer-lowest: false
2020
coveralls: true
2121
steps:
@@ -61,5 +61,5 @@ jobs:
6161
env:
6262
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6363
run: |
64-
composer require php-coveralls/php-coveralls
65-
./vendor/bin/php-coveralls --coverage_clover=clover.xml -v
64+
composer require php-coveralls/php-coveralls --with-all-dependencies
65+
php ./vendor/bin/php-coveralls -v

composer.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.4.0|^8.0.0|^8.1.0",
15-
"captainhook/captainhook": "^5.10.8"
14+
"php": "^8.0.0|^8.1.0|^8.2.0",
15+
"captainhook/captainhook": "^5.12.0"
1616
},
1717
"require-dev": {
18-
"bitexpert/captainhook-infection": "^0.5.0",
18+
"bitexpert/captainhook-infection": "^0.7.0",
1919
"captainhook/plugin-composer": "^5.3.3",
20-
"infection/infection": "^0.21.5",
21-
"madewithlove/license-checker": "^0.10.0",
22-
"phly/keep-a-changelog": "^2.11",
23-
"phpstan/extension-installer": "^1.1",
24-
"phpstan/phpstan": "^1.5.4",
25-
"phpstan/phpstan-phpunit": "^1.1.0",
26-
"phpstan/phpstan-strict-rules": "^1.1.0",
27-
"phpunit/phpunit": "^9.5.20",
20+
"infection/infection": "^0.26.16",
21+
"madewithlove/license-checker": "^1.3",
22+
"phly/keep-a-changelog": "^2.12.1",
23+
"phpstan/extension-installer": "^1.2.0",
24+
"phpstan/phpstan": "^1.9.4",
25+
"phpstan/phpstan-phpunit": "^1.3.3",
26+
"phpstan/phpstan-strict-rules": "^1.4.4",
27+
"phpunit/phpunit": "^9.5.27",
2828
"roave/security-advisories": "dev-latest",
29-
"squizlabs/php_codesniffer": "^3.6.2"
29+
"squizlabs/php_codesniffer": "^3.7.1"
3030
},
3131
"autoload": {
3232
"psr-4": {

infection.json.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
},
77
"logs": {
88
"text": "infection.log",
9-
"badge": {
10-
"branch": "master"
9+
"stryker": {
10+
"badge": "master"
1111
}
1212
},
1313
"mutators": {

0 commit comments

Comments
 (0)