13 lines
232 B
PHP
13 lines
232 B
PHP
|
<?php
|
||
|
|
||
|
namespace Lean\Console;
|
||
|
|
||
|
use Psr\Container\ContainerInterface;
|
||
|
|
||
|
abstract class Lean
|
||
|
{
|
||
|
public static function definitions() : array
|
||
|
{
|
||
|
return require(dirname(__DIR__) . "/meta/definitions/software.php");
|
||
|
}
|
||
|
}
|