Added Nosial Copyright
This commit is contained in:
parent
c6955b45c1
commit
c38b508ec7
14 changed files with 54 additions and 3 deletions
|
@ -5,6 +5,10 @@
|
||||||
use ncc\Exceptions\FileNotFoundException;
|
use ncc\Exceptions\FileNotFoundException;
|
||||||
use ncc\Exceptions\InvalidProjectConfigurationException;
|
use ncc\Exceptions\InvalidProjectConfigurationException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
abstract class ExceptionCodes
|
abstract class ExceptionCodes
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
namespace ncc\Abstracts;
|
namespace ncc\Abstracts;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
abstract class RegexPatterns
|
abstract class RegexPatterns
|
||||||
{
|
{
|
||||||
const UUIDv4 = '/[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-4[0-9A-Za-z]{3}-[89ABab][0-9A-Za-z]{3}-[0-9A-Za-z]{12}/m';
|
const UUIDv4 = '/[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-4[0-9A-Za-z]{3}-[89ABab][0-9A-Za-z]{3}-[0-9A-Za-z]{12}/m';
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
use ncc\Abstracts\ExceptionCodes;
|
use ncc\Abstracts\ExceptionCodes;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
class FileNotFoundException extends Exception
|
class FileNotFoundException extends Exception
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
use ncc\Abstracts\ExceptionCodes;
|
use ncc\Abstracts\ExceptionCodes;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
class InvalidProjectConfigurationException extends Exception
|
class InvalidProjectConfigurationException extends Exception
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,10 @@
|
||||||
use ncc\Objects\ProjectConfiguration\Project;
|
use ncc\Objects\ProjectConfiguration\Project;
|
||||||
use ncc\Utilities\Functions;
|
use ncc\Utilities\Functions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
class ProjectConfiguration
|
class ProjectConfiguration
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -9,6 +9,10 @@
|
||||||
use ncc\Utilities\Functions;
|
use ncc\Utilities\Functions;
|
||||||
use ncc\Utilities\Validate;
|
use ncc\Utilities\Validate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
class Assembly
|
class Assembly
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
|
|
||||||
use ncc\Utilities\Functions;
|
use ncc\Utilities\Functions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
class Build
|
class Build
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
|
|
||||||
use ncc\Utilities\Functions;
|
use ncc\Utilities\Functions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
class BuildConfiguration
|
class BuildConfiguration
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
|
|
||||||
use ncc\Utilities\Functions;
|
use ncc\Utilities\Functions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
class Compiler
|
class Compiler
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
|
|
||||||
use ncc\Utilities\Functions;
|
use ncc\Utilities\Functions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
class Dependency
|
class Dependency
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
|
|
||||||
use ncc\Utilities\Functions;
|
use ncc\Utilities\Functions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
class Project
|
class Project
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
namespace ncc\Utilities;
|
namespace ncc\Utilities;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
class Functions
|
class Functions
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -4,6 +4,10 @@
|
||||||
|
|
||||||
use ncc\Abstracts\RegexPatterns;
|
use ncc\Abstracts\RegexPatterns;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Zi Xing Narrakas
|
||||||
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
|
*/
|
||||||
class Validate
|
class Validate
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -3,9 +3,8 @@
|
||||||
namespace ncc;
|
namespace ncc;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* @author Zi Xing Narrakas
|
||||||
* @author netkas
|
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
class ncc
|
class ncc
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue