Skip to content

Commit 7007cc1

Browse files
authored
Merge pull request #46 from grossmannmartin/php-83
Added PHP 8.3 support
2 parents 6be4d50 + f674f2a commit 7007cc1

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/build.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ jobs:
1515
name: Build and test
1616
strategy:
1717
matrix:
18-
php: ['8.1', '8.2']
18+
php: ['8.1', '8.2', '8.3']
1919
deps: [high]
2020
include:
2121
- php: '8.2'
2222
deps: low
23+
- php: '8.3'
24+
deps: low
2325

2426
steps:
2527
- uses: actions/checkout@v3

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ tools/deptrac:
104104
curl -Ls https://github.com/sensiolabs-de/deptrac/releases/download/1.0.2/deptrac.phar -o tools/deptrac && chmod +x tools/deptrac
105105

106106
tools/infection: tools/infection.pubkey
107-
curl -Ls https://github.com/infection/infection/releases/download/0.26.16/infection.phar -o tools/infection && chmod +x tools/infection
107+
curl -Ls https://github.com/infection/infection/releases/download/0.26.21/infection.phar -o tools/infection && chmod +x tools/infection
108108

109109
tools/infection.pubkey:
110-
curl -Ls https://github.com/infection/infection/releases/download/0.26.16/infection.phar.pubkey -o tools/infection.pubkey
110+
curl -Ls https://github.com/infection/infection/releases/download/0.26.21/infection.phar.pubkey -o tools/infection.pubkey
111111

112112
tools/box:
113113
curl -Ls https://github.com/humbug/box/releases/download/3.16.0/box.phar -o tools/box && chmod +x tools/box

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Injects services from a PSR-11 dependency injection container to PHPUnit test cases",
44
"type": "library",
55
"require": {
6-
"php": "~8.1.0 || ~8.2.0",
6+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
77
"phpunit/phpunit": "^9.0",
88
"psr/container": "^1.0 || ^2.0",
99
"zalas/injector": "^2.0"
@@ -14,7 +14,7 @@
1414
"symfony/http-kernel": "^4.4.12 || ^5.3 || ^6.0",
1515
"zalas/phpunit-globals": "^2.0",
1616
"symfony/framework-bundle": "^4.4.12 || ^5.3 || ^6.0",
17-
"zalas/phpunit-doubles": "^1.5",
17+
"zalas/phpunit-doubles": "^1.9.2",
1818
"phpspec/prophecy": "^1.9",
1919
"phpspec/prophecy-phpunit": "^2.0"
2020
},

0 commit comments

Comments
 (0)