Page MenuHomePhabricator

bootstrap.php
No OneTemporary

bootstrap.php

<?php
set_include_path(__DIR__ . '/../lib/' . PATH_SEPARATOR . __DIR__ . PATH_SEPARATOR . get_include_path());
$autoLoader = include __DIR__ . '/../vendor/autoload.php';
// SabreDAV tests auto loading
$autoLoader->add('Sabre\\', __DIR__);
// VObject tests auto loading
$autoLoader->addPsr4('Sabre\\VObject\\',__DIR__ . '/../vendor/sabre/vobject/tests/VObject');
date_default_timezone_set('UTC');
$config = [
'SABRE_TEMPDIR' => dirname(__FILE__) . '/temp/',
'SABRE_HASSQLITE' => in_array('sqlite',PDO::getAvailableDrivers()),
'SABRE_HASMYSQL' => in_array('mysql',PDO::getAvailableDrivers()),
'SABRE_MYSQLDSN' => 'mysql:host=127.0.0.1;dbname=sabredav',
'SABRE_MYSQLUSER' => 'root',
'SABRE_MYSQLPASS' => '',
];
foreach($config as $key=>$value) {
if (!defined($key)) define($key, $value);
}
if (!file_exists(SABRE_TEMPDIR)) mkdir(SABRE_TEMPDIR);
if (file_exists('.sabredav')) unlink('.sabredav');

File Metadata

Mime Type
text/x-php
Expires
Sun, Dec 22, 1:35 AM (6 d, 2 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
914776
Default Alt Text
bootstrap.php (932 B)

Event Timeline