Talesoft/tale-dev-tool

View on GitHub
bin/tale-dev

Summary

Maintainability
Test Coverage
#!/usr/bin/env php
<?php

use Tale\DevTool\Application;

//Check for autoload file
$cwd = getcwd();
$path = "$cwd/vendor/autoload.php";
if (file_exists($path)) {

    require $path;
} else {

    echo "Composer's autoload.php not found in $cwd.";
    exit(1);
}

(new Application)->run();