oauth2-server/tests/Bootstrap.php

12 lines
257 B
PHP
Raw Normal View History

2016-02-12 23:23:07 +05:30
<?php
2016-02-22 13:30:50 +05:30
if (!@include_once __DIR__ . '/../vendor/autoload.php') {
2016-03-15 05:40:47 +05:30
$message = <<<MSG
You must set up the project dependencies, run the following commands:
> wget http://getcomposer.org/composer.phar
> php composer.phar install
MSG;
exit($message);
2016-02-12 23:23:07 +05:30
}