Skip to content

Commit 62eb7f8

Browse files
committed
Add PHP 8.1 support
1 parent 6f70e63 commit 62eb7f8

File tree

3 files changed

+3
-15
lines changed

3 files changed

+3
-15
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
name: Build and test
1616
strategy:
1717
matrix:
18-
php: ['8.0']
18+
php: ['8.0', '8.1']
1919
deps: [high]
2020
include:
21-
- php: '8.0'
21+
- php: '8.1'
2222
deps: low
2323

2424
steps:

Makefile

-12
Original file line numberDiff line numberDiff line change
@@ -36,32 +36,20 @@ endif
3636
.PHONY: test-package
3737

3838

39-
ifeq ($(IS_PHP81),1)
40-
cs:
41-
else
4239
cs: tools/php-cs-fixer
4340
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi --diff fix
44-
endif
4541
.PHONY: cs
4642

47-
ifeq ($(IS_PHP81),1)
48-
cs-fix:
49-
else
5043
cs-fix: tools/php-cs-fixer
5144
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
52-
endif
5345
.PHONY: cs-fix
5446

5547
deptrac: tools/deptrac
5648
tools/deptrac --no-interaction --ansi
5749
.PHONY: deptrac
5850

59-
ifeq ($(IS_PHP81),1)
60-
infection:
61-
else
6251
infection: tools/infection tools/infection.pubkey
6352
phpdbg -qrr ./tools/infection --no-interaction --formatter=progress --min-msi=100 --min-covered-msi=100 --only-covered --ansi
64-
endif
6553
.PHONY: infection
6654

6755
phpunit: tools/phpunit

composer.json

+1-1
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.0.0",
6+
"php": "~8.0.0 || ~8.1.0",
77
"phpunit/phpunit": "^9.0",
88
"psr/container": "^1.0",
99
"zalas/injector": "^2.0"

0 commit comments

Comments
 (0)