Skip to content

Commit a0c2867

Browse files
committed
Replace phpab with box
1 parent 42d71ad commit a0c2867

File tree

3 files changed

+36
-14
lines changed

3 files changed

+36
-14
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/build/
2+
/box.json
23
/composer.lock
34
/vendor/
45
/.php_cs.cache

Makefile

+18-14
Original file line numberDiff line numberDiff line change
@@ -45,25 +45,29 @@ phpunit: tools/phpunit
4545
tools/phpunit
4646
.PHONY: phpunit
4747

48-
tools: tools/php-cs-fixer tools/deptrac tools/infection tools/phpab
48+
tools: tools/php-cs-fixer tools/deptrac tools/infection tools/box
4949
.PHONY: tools
5050

5151
clean:
5252
rm -rf build
5353
.PHONY: clean
5454

55-
package: clean update-no-dev tools/phpab
55+
package: tools/box
5656
$(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
6771
.PHONY: package
6872

6973
vendor: install
@@ -85,5 +89,5 @@ tools/infection: tools/infection.pubkey
8589
tools/infection.pubkey:
8690
curl -Ls https://github.com/infection/infection/releases/download/0.8.1/infection.phar.pubkey -o tools/infection.pubkey
8791

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

box.json.dist

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"base-path": "build/phar",
3+
"output": "../zalas-phpunit-injector-extension.phar",
4+
"algorithm": "OPENSSL",
5+
"key": ".travis/phpunit-injector-extension-private.pem",
6+
"compression": "GZ",
7+
"directories": ["."],
8+
"dump-autoload": true,
9+
"exclude-composer-files": true,
10+
"check-requirements": false,
11+
"main": "vendor/autoload.php",
12+
"banner": [
13+
"This file is part of the zalas/phpunit-injector project.",
14+
"",
15+
"(c) Jakub Zalas <[email protected]>"
16+
]
17+
}

0 commit comments

Comments
 (0)