1.0.0 Alpha Release #59

Merged
netkas merged 213 commits from v1.0.0_alpha into master 2023-01-29 23:27:58 +00:00
Showing only changes of commit d154aa02ca - Show all commits

View file

@ -4,20 +4,6 @@
abstract class DefinedRemoteSourceType abstract class DefinedRemoteSourceType
{ {
/**
* The remote source is from a generic remote git server
* (Will search for packages with /group/package)
*
* For example if the host is git.example.com and the package is
* group/package, the package will be fetched from
* https://git.example.com/group/package.git
*
* The git client will be used to fetch the package
* but NCC will not be able to easily check for updates
* without having to pull the entire repository
*/
const Git = 'git';
/** /**
* THe remote source is from gitlab or a custom gitlab instance * THe remote source is from gitlab or a custom gitlab instance
* *
@ -41,7 +27,6 @@
const Github = 'github'; const Github = 'github';
const All = [ const All = [
self::Git,
self::Gitlab, self::Gitlab,
self::Github self::Github
]; ];