for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Moodle component manager.
*
* @author Luke Carrier <[email protected]>
* @copyright 2016 Luke Carrier
* @license GPL-3.0+
*/
namespace ComponentManager\Console;
use ComponentManager\DependencyInjection\ContainerAwareTrait;
use Symfony\Component\Console\Application as ConsoleApplication;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
* Component manager application entry point.
class Application extends ConsoleApplication
implements ContainerAwareInterface {
use ContainerAwareTrait;
* Release name.
* @var string
const VERSION = '0.5.0';
* Initialiser.
public function __construct() {
parent::__construct('Component Manager', static::VERSION);
}