Skip to content

Commit

Permalink
Fix build system by pulling in bleeding edge versions of dependencies…
Browse files Browse the repository at this point in the history
…. Should fix build
  • Loading branch information
ircmaxell committed Apr 17, 2019
1 parent f1b2195 commit ac058b8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "*",
"pre/plugin": "dev-develop",
"phan/phan": "dev-master"
"phan/phan": "dev-master",
"yay/yay": "dev-master#08c6490364e5f4c278c04d4eb331e0128290039d as 0.7.1"
},
"minimum-stability": "dev",
"autoload": {
Expand Down
24 changes: 16 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions script/rebuild.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
continue;
}
foreach (new GlobIterator($dir.'/*.pre', FilesystemIterator::CURRENT_AS_PATHNAME) as $file) {
$file = realpath($file);
echo "Compiling ${file}\n";
$destination = preg_replace('(\.pre$)', '.php', $file);
if ($onlyChanged && filemtime($destination) >= filemtime($file)) {
Expand Down

0 comments on commit ac058b8

Please sign in to comment.