Squashed 'seatmap-webapi/' content from commit 02d4bf7
git-subtree-dir: seatmap-webapi git-subtree-split: 02d4bf7404b8fcb788502ca45c813946b6c4f5b9
This commit is contained in:
11
install.php
Normal file
11
install.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
// download composer and install dependencies
|
||||
|
||||
if (!file_exists('composer.phar')) {
|
||||
$composer = file_get_contents('https://getcomposer.org/composer.phar');
|
||||
file_put_contents('composer.phar', $composer);
|
||||
}
|
||||
exec('php composer.phar install --ignore-platform-reqs');
|
||||
|
||||
include 'patch.php';
|
||||
Reference in New Issue
Block a user