for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Chubbyphp\ApiSkeleton\Provider;
use Pimple\Container;
use Pimple\ServiceProviderInterface;
final class ConsoleProvider implements ServiceProviderInterface
{
/**
* @param Container $container
*/
public function register(Container $container)
$container['console.name'] = 'chubbyphp-api-slim-skeleton';
$container['console.version'] = '1.0';
$container['console.helpers'] = function () {
return [];
};
$container['console.commands'] = function () {
}