@@ -45,25 +45,29 @@ phpunit: tools/phpunit
45
45
tools/phpunit
46
46
.PHONY : phpunit
47
47
48
- tools : tools/php-cs-fixer tools/deptrac tools/infection tools/phpab
48
+ tools : tools/php-cs-fixer tools/deptrac tools/infection tools/box
49
49
.PHONY : tools
50
50
51
51
clean :
52
52
rm -rf build
53
53
.PHONY : clean
54
54
55
- package : clean update-no-dev tools/phpab
55
+ package : tools/box
56
56
$(eval VERSION=$(shell git describe --abbrev=0 --tags 2> /dev/null | sed -e 's/^v//' || echo 'dev') )
57
- @mkdir -p build/phar
58
- @cp LICENSE build/phar/
59
- @sed -e ' s/@@version@@/$(VERSION)/g' manifest.xml.in > build/phar/manifest.xml
60
- @mkdir -p build/phar/zalas-phpunit-injector-extension && cp -r src build/phar/zalas-phpunit-injector-extension/
61
- @composer show -N -D | grep -v phpunit/phpunit | tr -d ' ' \
62
- | xargs -IXXX composer show XXX -t | grep / | sed -e ' s/^[| `-]*\([^ ]*\) .*/\1/' | sort -u \
63
- | xargs -IXXX rsync -a --relative vendor/XXX build/phar/zalas-phpunit-injector-extension/
64
- [ -f .travis/phpunit-injector-extension-private.pem ] \
65
- && tools/phpab --all --static --once --phar --key .travis/phpunit-injector-extension-private.pem --output build/zalas-phpunit-injector-extension.phar build/phar \
66
- || tools/phpab --all --static --once --phar --output build/zalas-phpunit-injector-extension-$(VERSION ) .phar build/phar
57
+ @rm -rf build/phar && mkdir -p build/phar
58
+
59
+ cp -r src LICENSE composer.json build/phar
60
+ sed -e 's/@@version@@/$(VERSION)/g' manifest.xml.in > build/phar/manifest.xml
61
+ [ -f .travis/phpunit-injector-extension-private.pem ] || cat box.json.dist | sed -e '/\"key\": \".*\",/d' -e '/\"algorithm\": \".*\",/d' > box.json
62
+
63
+ cd build/phar && \
64
+ composer remove phpunit/phpunit --no-update && \
65
+ composer config platform.php 7.1 && \
66
+ composer update --no-dev -o -a
67
+
68
+ tools/box compile
69
+
70
+ @rm -rf build/phar
67
71
.PHONY : package
68
72
69
73
vendor : install
@@ -85,5 +89,5 @@ tools/infection: tools/infection.pubkey
85
89
tools/infection.pubkey :
86
90
curl -Ls https://github.com/infection/infection/releases/download/0.8.1/infection.phar.pubkey -o tools/infection.pubkey
87
91
88
- tools/phpab :
89
- curl -Ls https://github.com/theseer/Autoload /releases/download/1.24.1/phpab-1.24.1. phar -o tools/phpab && chmod +x tools/phpab
92
+ tools/box :
93
+ curl -Ls https://github.com/humbug/box /releases/download/3.0.0-beta.0/box. phar -o tools/box && chmod +x tools/box
0 commit comments