File tree 3 files changed +3
-15
lines changed
3 files changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
15
15
name : Build and test
16
16
strategy :
17
17
matrix :
18
- php : ['8.0']
18
+ php : ['8.0', '8.1' ]
19
19
deps : [high]
20
20
include :
21
- - php : ' 8.0 '
21
+ - php : ' 8.1 '
22
22
deps : low
23
23
24
24
steps :
Original file line number Diff line number Diff line change @@ -36,32 +36,20 @@ endif
36
36
.PHONY : test-package
37
37
38
38
39
- ifeq ($(IS_PHP81 ) ,1)
40
- cs :
41
- else
42
39
cs : tools/php-cs-fixer
43
40
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --dry-run --allow-risky=yes --no-interaction --ansi --diff fix
44
- endif
45
41
.PHONY : cs
46
42
47
- ifeq ($(IS_PHP81 ) ,1)
48
- cs-fix :
49
- else
50
43
cs-fix : tools/php-cs-fixer
51
44
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer --allow-risky=yes --no-interaction --ansi fix
52
- endif
53
45
.PHONY : cs-fix
54
46
55
47
deptrac : tools/deptrac
56
48
tools/deptrac --no-interaction --ansi
57
49
.PHONY : deptrac
58
50
59
- ifeq ($(IS_PHP81 ) ,1)
60
- infection :
61
- else
62
51
infection : tools/infection tools/infection.pubkey
63
52
phpdbg -qrr ./tools/infection --no-interaction --formatter=progress --min-msi=100 --min-covered-msi=100 --only-covered --ansi
64
- endif
65
53
.PHONY : infection
66
54
67
55
phpunit : tools/phpunit
Original file line number Diff line number Diff line change 3
3
"description" : " Injects services from a PSR-11 dependency injection container to PHPUnit test cases" ,
4
4
"type" : " library" ,
5
5
"require" : {
6
- "php" : " ~8.0.0" ,
6
+ "php" : " ~8.0.0 || ~8.1.0 " ,
7
7
"phpunit/phpunit" : " ^9.0" ,
8
8
"psr/container" : " ^1.0" ,
9
9
"zalas/injector" : " ^2.0"
You can’t perform that action at this time.
0 commit comments