1
0
Fork 1
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

13 lines
373 B
PHP

<?php
$PROJECT_ROOT = dirname(__FILE__);
while (!file_exists("$PROJECT_ROOT/.phpenv")) {
if ($PROJECT_ROOT == "/" || $PROJECT_ROOT == "")
throw new RuntimeException("Could not find .phpenv file.");
$PROJECT_ROOT = dirname($PROJECT_ROOT);
}
require_once "$PROJECT_ROOT/.phpenv";
// set_include_path(get_include_path() . PATH_SEPARATOR . $PROJECT_ROOT);
?>