4 * SQL linter (syntax checker) written in PHP
11 * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3
12 * @link http://cweiske.de/php-sqllint.htm
16 if (file_exists(__DIR__ . '/../vendor/autoload.php')) {
18 include_once __DIR__ . '/../vendor/autoload.php';
19 } else if (file_exists('vendor/autoload.php')) {
20 //dependency composer installation
21 include_once 'vendor/autoload.php';
24 if (file_exists(__DIR__ . '/../src/phpsqllint/Autoloader.php')) {
25 include_once __DIR__ . '/../src/phpsqllint/Autoloader.php';
26 Autoloader::register();