summaryrefslogtreecommitdiff
path: root/bin/phpiac
blob: 21ff26bcb5d0ddb8b37581105766016f28f8efd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env php
<?php

$autoloadAsProjectPath = dirname(__DIR__) . '/vendor/autoload.php';
$autoloadAsDependencyPath = dirname(__DIR__) . '/../../autoload.php';
if (file_exists($autoloadAsProjectPath)) {
    require $autoloadAsProjectPath;
} else {
    require $autoloadAsDependencyPath;
}

new \PHPIAC\IAC();