-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.php
More file actions
executable file
·34 lines (29 loc) · 829 Bytes
/
build.php
File metadata and controls
executable file
·34 lines (29 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env php
<?php
chdir(__DIR__);
$autoload = (int)$argv[1];
$returnStatus = null;
$composerOriginalRaw = file_get_contents('composer.json');
if (!$autoload) {
// Modify composer to not autoload WonderPush
$composer = json_decode($composerOriginalRaw, true);
unset($composer['autoload']);
file_put_contents('composer.json', json_encode($composer));
}
passthru('composer install', $returnStatus);
if (!$autoload) {
// Revert rewrite
file_put_contents('composer.json', $composerOriginalRaw);
}
if ($returnStatus !== 0) {
exit(1);
}
$config = $autoload ? 'phpunit.xml' : 'phpunit.no_autoload.xml';
passthru("./vendor/bin/phpunit -c $config", $returnStatus);
if (!$autoload) {
// Revert autoloader modifications made earlier
passthru('composer dump-autoload');
}
if ($returnStatus !== 0) {
exit(1);
}