Skip to content

Commit 27389ae

Browse files
committed
Update box
1 parent 5088f4a commit 27389ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
IS_PHP81:=$(shell php -r 'echo (int)version_compare(PHP_VERSION, "8.1", ">=");')
1+
IS_PHP82:=$(shell php -r 'echo (int)version_compare(PHP_VERSION, "8.2", ">=");')
22

33
default: build
44

@@ -27,7 +27,7 @@ test: vendor cs deptrac phpunit infection
2727
test-min: update-min cs deptrac phpunit infection
2828
.PHONY: test-min
2929

30-
ifeq ($(IS_PHP81),1)
30+
ifeq ($(IS_PHP82),1)
3131
test-package:
3232
else
3333
test-package: package test-package-tools
@@ -69,7 +69,7 @@ clean:
6969
find tests/phar/tools -not -path '*/\.*' -type f -delete
7070
.PHONY: clean
7171

72-
ifeq ($(IS_PHP81),1)
72+
ifeq ($(IS_PHP82),1)
7373
package:
7474
else
7575
package: tools/box
@@ -110,7 +110,7 @@ tools/infection.pubkey:
110110
curl -Ls https://github.com/infection/infection/releases/download/0.26.2/infection.phar.pubkey -o tools/infection.pubkey
111111

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

115115
tests/phar/tools/phpunit:
116116
curl -Ls https://phar.phpunit.de/phpunit-9.phar -o tests/phar/tools/phpunit && chmod +x tests/phar/tools/phpunit

0 commit comments

Comments
 (0)