We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f466a33 commit 25c10f0Copy full SHA for 25c10f0
install.php
@@ -1,5 +1,7 @@
1
<?php
2
3
+// download composer and install dependencies
4
+
5
if (!file_exists('composer.phar')) {
6
$composer = file_get_contents('https://getcomposer.org/composer.phar');
7
file_put_contents('composer.phar', $composer);
@@ -8,6 +10,8 @@
8
10
exec('php composer.phar install');
9
11
}
12
13
+// patch files for PHP 7.0 compatibility
14
15
function patchDir(string $base, string $dir): int
16
{
17
$count = 0;
0 commit comments