We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2178681 + 5285841 commit 4141bd6Copy full SHA for 4141bd6
dist/box.json
@@ -20,5 +20,6 @@
20
],
21
"main": "vendor/autoload.php",
22
"output": "defuse-crypto.phar",
23
+ "shebang": false,
24
"stub": true
25
}
test.sh
@@ -1,4 +1,4 @@
1
-#!/bin/bash
+#!/bin/sh
2
set -e
3
4
BIG_GENERATED_FILE=./test/unit/File/big-generated-file
@@ -14,5 +14,9 @@ else
14
BOOTSTRAP="vendor/autoload.php"
15
fi
16
17
+# loading bootstrap should output nothing
18
+load=$(php -r "require '$BOOTSTRAP';")
19
+test -z "$load"
+
./test/phpunit.sh "$BOOTSTRAP"
echo ""
0 commit comments