for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace phptaskman\core;
use phptaskman\core\Services\Composer;
/**
* Class Taskman.
*/
final class Taskman
{
* @param string $path
* The directory
*
* @return \phptaskman\core\Services\Composer
* The composer object.
public static function getComposerFromDirectory($path)
return new Composer($path);
}