Fix case sensitivity for "Semver" in paths and package name
This commit is contained in:
parent
91a25390fa
commit
5e173b7cc0
3 changed files with 3 additions and 3 deletions
2
Makefile
2
Makefile
|
@ -18,7 +18,7 @@ DEBIAN_PACKAGE_BUILD_PATH := $(BUILD_PATH)/ncc_$(BUILD_VERSION)_all.deb
|
||||||
|
|
||||||
# List of paths for autoloading
|
# List of paths for autoloading
|
||||||
AUTOLOAD_PATHS := $(addprefix $(SRC_PATH)/ncc/ThirdParty/, \
|
AUTOLOAD_PATHS := $(addprefix $(SRC_PATH)/ncc/ThirdParty/, \
|
||||||
composer/semver \
|
composer/Semver \
|
||||||
defuse/php-encryption \
|
defuse/php-encryption \
|
||||||
jelix/version \
|
jelix/version \
|
||||||
nikic/PhpParser \
|
nikic/PhpParser \
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
$third_party_path = __DIR__ . DIRECTORY_SEPARATOR . 'ThirdParty' . DIRECTORY_SEPARATOR;
|
$third_party_path = __DIR__ . DIRECTORY_SEPARATOR . 'ThirdParty' . DIRECTORY_SEPARATOR;
|
||||||
$target_files = [
|
$target_files = [
|
||||||
__DIR__ . DIRECTORY_SEPARATOR . 'autoload_spl.php',
|
__DIR__ . DIRECTORY_SEPARATOR . 'autoload_spl.php',
|
||||||
$third_party_path . 'composer' . DIRECTORY_SEPARATOR . 'semver' . DIRECTORY_SEPARATOR . 'autoload_spl.php',
|
$third_party_path . 'composer' . DIRECTORY_SEPARATOR . 'Semver' . DIRECTORY_SEPARATOR . 'autoload_spl.php',
|
||||||
$third_party_path . 'defuse' . DIRECTORY_SEPARATOR . 'php-encryption' . DIRECTORY_SEPARATOR . 'autoload_spl.php',
|
$third_party_path . 'defuse' . DIRECTORY_SEPARATOR . 'php-encryption' . DIRECTORY_SEPARATOR . 'autoload_spl.php',
|
||||||
$third_party_path . 'jelix' . DIRECTORY_SEPARATOR . 'version' . DIRECTORY_SEPARATOR . 'autoload_spl.php',
|
$third_party_path . 'jelix' . DIRECTORY_SEPARATOR . 'version' . DIRECTORY_SEPARATOR . 'autoload_spl.php',
|
||||||
$third_party_path . 'nikic' . DIRECTORY_SEPARATOR . 'PhpParser' . DIRECTORY_SEPARATOR . 'autoload_spl.php',
|
$third_party_path . 'nikic' . DIRECTORY_SEPARATOR . 'PhpParser' . DIRECTORY_SEPARATOR . 'autoload_spl.php',
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"components": [
|
"components": [
|
||||||
{
|
{
|
||||||
"vendor": "composer",
|
"vendor": "composer",
|
||||||
"package_name": "semver"
|
"package_name": "Semver"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"vendor": "defuse",
|
"vendor": "defuse",
|
||||||
|
|
Loading…
Add table
Reference in a new issue