]> git.mxchange.org Git - friendica-addons.git/blob - curweather/vendor/cmfcmf/openweathermap-php-api/tests/bootstrap.php
minor additions to the README
[friendica-addons.git] / curweather / vendor / cmfcmf / openweathermap-php-api / tests / bootstrap.php
1 <?php
2
3 call_user_func(function () {
4     if (!is_file($autoloadFile = __DIR__ . '/../vendor/autoload.php')) {
5         throw new \RuntimeException('Did not find vendor/autoload.php. Did you run "composer install --dev"?');
6     }
7
8     /** @noinspection PhpIncludeInspection */
9     require_once $autoloadFile;
10
11     ini_set('date.timezone', 'Europe/Berlin');
12 });