From 91a25390fa9a0f8d532f6df6b95fdaf015b0f426 Mon Sep 17 00:00:00 2001 From: netkas Date: Thu, 19 Sep 2024 13:42:56 -0400 Subject: [PATCH] Rename 'semver' directory to 'Semver' in composer package --- .gitignore | 2 +- src/ncc/ThirdParty/composer/{semver => Semver}/CHANGELOG.md | 0 src/ncc/ThirdParty/composer/{semver => Semver}/Comparator.php | 0 .../ThirdParty/composer/{semver => Semver}/CompilingMatcher.php | 0 .../ThirdParty/composer/{semver => Semver}/Constraint/Bound.php | 0 .../composer/{semver => Semver}/Constraint/Constraint.php | 0 .../{semver => Semver}/Constraint/ConstraintInterface.php | 0 .../{semver => Semver}/Constraint/MatchAllConstraint.php | 0 .../{semver => Semver}/Constraint/MatchNoneConstraint.php | 0 .../composer/{semver => Semver}/Constraint/MultiConstraint.php | 0 src/ncc/ThirdParty/composer/{semver => Semver}/Interval.php | 0 src/ncc/ThirdParty/composer/{semver => Semver}/Intervals.php | 0 src/ncc/ThirdParty/composer/{semver => Semver}/LICENSE | 0 src/ncc/ThirdParty/composer/{semver => Semver}/README.md | 0 src/ncc/ThirdParty/composer/{semver => Semver}/Semver.php | 0 src/ncc/ThirdParty/composer/{semver => Semver}/VERSION | 0 .../ThirdParty/composer/{semver => Semver}/VersionParser.php | 0 17 files changed, 1 insertion(+), 1 deletion(-) rename src/ncc/ThirdParty/composer/{semver => Semver}/CHANGELOG.md (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/Comparator.php (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/CompilingMatcher.php (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/Constraint/Bound.php (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/Constraint/Constraint.php (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/Constraint/ConstraintInterface.php (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/Constraint/MatchAllConstraint.php (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/Constraint/MatchNoneConstraint.php (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/Constraint/MultiConstraint.php (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/Interval.php (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/Intervals.php (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/LICENSE (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/README.md (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/Semver.php (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/VERSION (100%) rename src/ncc/ThirdParty/composer/{semver => Semver}/VersionParser.php (100%) diff --git a/.gitignore b/.gitignore index 363ec3a..05a17c6 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,7 @@ build # Autoload files -src/ncc/ThirdParty/composer/semver/autoload_spl.php +src/ncc/ThirdParty/composer/Semver/autoload_spl.php src/ncc/ThirdParty/defuse/php-encryption/autoload_spl.php src/ncc/ThirdParty/jelix/version/autoload_spl.php src/ncc/ThirdParty/nikic/PhpParser/autoload_spl.php diff --git a/src/ncc/ThirdParty/composer/semver/CHANGELOG.md b/src/ncc/ThirdParty/composer/Semver/CHANGELOG.md similarity index 100% rename from src/ncc/ThirdParty/composer/semver/CHANGELOG.md rename to src/ncc/ThirdParty/composer/Semver/CHANGELOG.md diff --git a/src/ncc/ThirdParty/composer/semver/Comparator.php b/src/ncc/ThirdParty/composer/Semver/Comparator.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/Comparator.php rename to src/ncc/ThirdParty/composer/Semver/Comparator.php diff --git a/src/ncc/ThirdParty/composer/semver/CompilingMatcher.php b/src/ncc/ThirdParty/composer/Semver/CompilingMatcher.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/CompilingMatcher.php rename to src/ncc/ThirdParty/composer/Semver/CompilingMatcher.php diff --git a/src/ncc/ThirdParty/composer/semver/Constraint/Bound.php b/src/ncc/ThirdParty/composer/Semver/Constraint/Bound.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/Constraint/Bound.php rename to src/ncc/ThirdParty/composer/Semver/Constraint/Bound.php diff --git a/src/ncc/ThirdParty/composer/semver/Constraint/Constraint.php b/src/ncc/ThirdParty/composer/Semver/Constraint/Constraint.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/Constraint/Constraint.php rename to src/ncc/ThirdParty/composer/Semver/Constraint/Constraint.php diff --git a/src/ncc/ThirdParty/composer/semver/Constraint/ConstraintInterface.php b/src/ncc/ThirdParty/composer/Semver/Constraint/ConstraintInterface.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/Constraint/ConstraintInterface.php rename to src/ncc/ThirdParty/composer/Semver/Constraint/ConstraintInterface.php diff --git a/src/ncc/ThirdParty/composer/semver/Constraint/MatchAllConstraint.php b/src/ncc/ThirdParty/composer/Semver/Constraint/MatchAllConstraint.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/Constraint/MatchAllConstraint.php rename to src/ncc/ThirdParty/composer/Semver/Constraint/MatchAllConstraint.php diff --git a/src/ncc/ThirdParty/composer/semver/Constraint/MatchNoneConstraint.php b/src/ncc/ThirdParty/composer/Semver/Constraint/MatchNoneConstraint.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/Constraint/MatchNoneConstraint.php rename to src/ncc/ThirdParty/composer/Semver/Constraint/MatchNoneConstraint.php diff --git a/src/ncc/ThirdParty/composer/semver/Constraint/MultiConstraint.php b/src/ncc/ThirdParty/composer/Semver/Constraint/MultiConstraint.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/Constraint/MultiConstraint.php rename to src/ncc/ThirdParty/composer/Semver/Constraint/MultiConstraint.php diff --git a/src/ncc/ThirdParty/composer/semver/Interval.php b/src/ncc/ThirdParty/composer/Semver/Interval.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/Interval.php rename to src/ncc/ThirdParty/composer/Semver/Interval.php diff --git a/src/ncc/ThirdParty/composer/semver/Intervals.php b/src/ncc/ThirdParty/composer/Semver/Intervals.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/Intervals.php rename to src/ncc/ThirdParty/composer/Semver/Intervals.php diff --git a/src/ncc/ThirdParty/composer/semver/LICENSE b/src/ncc/ThirdParty/composer/Semver/LICENSE similarity index 100% rename from src/ncc/ThirdParty/composer/semver/LICENSE rename to src/ncc/ThirdParty/composer/Semver/LICENSE diff --git a/src/ncc/ThirdParty/composer/semver/README.md b/src/ncc/ThirdParty/composer/Semver/README.md similarity index 100% rename from src/ncc/ThirdParty/composer/semver/README.md rename to src/ncc/ThirdParty/composer/Semver/README.md diff --git a/src/ncc/ThirdParty/composer/semver/Semver.php b/src/ncc/ThirdParty/composer/Semver/Semver.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/Semver.php rename to src/ncc/ThirdParty/composer/Semver/Semver.php diff --git a/src/ncc/ThirdParty/composer/semver/VERSION b/src/ncc/ThirdParty/composer/Semver/VERSION similarity index 100% rename from src/ncc/ThirdParty/composer/semver/VERSION rename to src/ncc/ThirdParty/composer/Semver/VERSION diff --git a/src/ncc/ThirdParty/composer/semver/VersionParser.php b/src/ncc/ThirdParty/composer/Semver/VersionParser.php similarity index 100% rename from src/ncc/ThirdParty/composer/semver/VersionParser.php rename to src/ncc/ThirdParty/composer/Semver/VersionParser.php