Added added third-party library 'php-school/cli-menu'

This commit is contained in:
Zi Xing 2022-04-16 18:26:46 -04:00
parent 91eb808664
commit e9a36ab9a7
52 changed files with 8109 additions and 0 deletions

View file

@ -1 +1,8 @@
<?php
$SourceDirectory = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'ncc';
if(file_exists($SourceDirectory . DIRECTORY_SEPARATOR . 'autoload.php') == false)
throw new RuntimeException('The autoload file was not found in \'' . $SourceDirectory . '\'');
require($SourceDirectory . DIRECTORY_SEPARATOR . 'autoload.php');

View file

@ -1 +1,3 @@
<?php
require(__DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'autoload.php');