Be able to serve the website simply with the phar archive
Cette révision appartient à :
Parent
932fab5a84
révision
a7962839d0
BIN
daux.phar
BIN
daux.phar
Fichier binaire non affiché.
@ -75,7 +75,14 @@ if (php_sapi_name() === 'cli-server') {
|
||||
$_SERVER['SCRIPT_NAME'] = '/index.php';
|
||||
}
|
||||
|
||||
require_once("vendor/autoload.php");
|
||||
if (file_exists('vendor/autoload.php')) {
|
||||
require_once('vendor/autoload.php');
|
||||
} elseif (file_exists('daux.phar')) {
|
||||
define('PHAR_DIR', __DIR__);
|
||||
require_once("phar://" . __DIR__ . "/daux.phar/vendor/autoload.php");
|
||||
} else {
|
||||
throw new Exception("Impossible to load Daux, missing vendor and phar");
|
||||
}
|
||||
|
||||
\Todaymade\Daux\Daux::initConstants();
|
||||
|
||||
|
Chargement…
Référencer dans un nouveau ticket
Block a user