This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/library/urlify/tests/bootstrap.php

10 lines
198 B
PHP

<?php
set_error_handler(function () {
echo file_get_contents(dirname(__DIR__).'/INSTALL');
exit(1);
}, E_ALL);
require_once dirname(__DIR__) . '/vendor/autoload.php';
restore_error_handler();