Merge commit '1392bd3a96045302b60d845a90901a4b2234c475' as 'seatmap-webapi'

This commit is contained in:
zino
2021-01-20 12:59:59 +01:00
261 changed files with 39680 additions and 0 deletions

11
seatmap-webapi/update.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
// download composer and update 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 update --ignore-platform-reqs');
include 'patch.php';