commit
d2e1fb0a6f
|
@ -74,10 +74,10 @@ class ZipDownloader extends ArchiveDownloader
|
||||||
/**
|
/**
|
||||||
* extract $file to $path with "unzip" command
|
* extract $file to $path with "unzip" command
|
||||||
*
|
*
|
||||||
* @param string $file File to extract
|
* @param string $file File to extract
|
||||||
* @param string $path Path where to extract file
|
* @param string $path Path where to extract file
|
||||||
* @param bool $isLastChance If true it is called as a fallback and should throw an exception
|
* @param bool $isLastChance If true it is called as a fallback and should throw an exception
|
||||||
* @return bool Success status
|
* @return bool Success status
|
||||||
*/
|
*/
|
||||||
protected function extractWithSystemUnzip($file, $path, $isLastChance)
|
protected function extractWithSystemUnzip($file, $path, $isLastChance)
|
||||||
{
|
{
|
||||||
|
@ -121,10 +121,10 @@ class ZipDownloader extends ArchiveDownloader
|
||||||
/**
|
/**
|
||||||
* extract $file to $path with ZipArchive
|
* extract $file to $path with ZipArchive
|
||||||
*
|
*
|
||||||
* @param string $file File to extract
|
* @param string $file File to extract
|
||||||
* @param string $path Path where to extract file
|
* @param string $path Path where to extract file
|
||||||
* @param bool $isLastChance If true it is called as a fallback and should throw an exception
|
* @param bool $isLastChance If true it is called as a fallback and should throw an exception
|
||||||
* @return bool Success status
|
* @return bool Success status
|
||||||
*/
|
*/
|
||||||
protected function extractWithZipArchive($file, $path, $isLastChance)
|
protected function extractWithZipArchive($file, $path, $isLastChance)
|
||||||
{
|
{
|
||||||
|
|
|
@ -126,7 +126,7 @@ class SuggestedPackagesReporter
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $string
|
* @param string $string
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
private function escapeOutput($string)
|
private function escapeOutput($string)
|
||||||
|
@ -137,7 +137,7 @@ class SuggestedPackagesReporter
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $string
|
* @param string $string
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
private function removeControlCharacters($string)
|
private function removeControlCharacters($string)
|
||||||
|
|
|
@ -63,9 +63,9 @@ class ValidatingArrayLoader implements LoaderInterface
|
||||||
unset($this->config['version']);
|
unset($this->config['version']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($this->config['config']['platform'])) {
|
if (!empty($this->config['config']['platform'])) {
|
||||||
foreach ((array)$this->config['config']['platform'] as $key=>$platform) {
|
foreach ((array) $this->config['config']['platform'] as $key => $platform) {
|
||||||
try {
|
try {
|
||||||
$this->versionParser->normalize($platform);
|
$this->versionParser->normalize($platform);
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
|
|
|
@ -499,7 +499,7 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
|
||||||
if (!empty($mirror['dist-url'])) {
|
if (!empty($mirror['dist-url'])) {
|
||||||
$this->distMirrors[] = array(
|
$this->distMirrors[] = array(
|
||||||
'url' => $this->canonicalizeUrl($mirror['dist-url']),
|
'url' => $this->canonicalizeUrl($mirror['dist-url']),
|
||||||
'preferred' => !empty($mirror['preferred'])
|
'preferred' => !empty($mirror['preferred']),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -445,9 +445,9 @@ class GitLabDriver extends VcsDriver
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $configuredDomains
|
* @param array $configuredDomains
|
||||||
* @param string $guessedDomain
|
* @param string $guessedDomain
|
||||||
* @param array $urlParts
|
* @param array $urlParts
|
||||||
* @return bool|string
|
* @return bool|string
|
||||||
*/
|
*/
|
||||||
private static function determineOrigin(array $configuredDomains, $guessedDomain, array &$urlParts)
|
private static function determineOrigin(array $configuredDomains, $guessedDomain, array &$urlParts)
|
||||||
|
|
|
@ -16,7 +16,6 @@ use Composer\Config;
|
||||||
use Composer\Util\ProcessExecutor;
|
use Composer\Util\ProcessExecutor;
|
||||||
use Composer\Util\Filesystem;
|
use Composer\Util\Filesystem;
|
||||||
use Composer\IO\IOInterface;
|
use Composer\IO\IOInterface;
|
||||||
use Symfony\Component\Process\Process;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Per Bernhardt <plb@webfactory.de>
|
* @author Per Bernhardt <plb@webfactory.de>
|
||||||
|
|
|
@ -89,7 +89,7 @@ class ConfigValidator
|
||||||
'License %s must not contain extra spaces, make sure to trim it.',
|
'License %s must not contain extra spaces, make sure to trim it.',
|
||||||
json_encode($manifest['license'])
|
json_encode($manifest['license'])
|
||||||
);
|
);
|
||||||
} else if ('proprietary' !== $manifest['license'] && array() !== $manifest['license'] && !$licenseValidator->validate($manifest['license'])) {
|
} elseif ('proprietary' !== $manifest['license'] && array() !== $manifest['license'] && !$licenseValidator->validate($manifest['license'])) {
|
||||||
$warnings[] = sprintf(
|
$warnings[] = sprintf(
|
||||||
'License %s is not a valid SPDX license identifier, see https://spdx.org/licenses/ if you use an open license.'
|
'License %s is not a valid SPDX license identifier, see https://spdx.org/licenses/ if you use an open license.'
|
||||||
. PHP_EOL .
|
. PHP_EOL .
|
||||||
|
|
|
@ -32,7 +32,6 @@ class ZipDownloaderTest extends TestCase
|
||||||
$this->config = $this->getMock('Composer\Config');
|
$this->config = $this->getMock('Composer\Config');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown()
|
||||||
{
|
{
|
||||||
$fs = new Filesystem;
|
$fs = new Filesystem;
|
||||||
|
|
|
@ -401,7 +401,7 @@ JSON;
|
||||||
$options = array(
|
$options = array(
|
||||||
'ssl' => array(
|
'ssl' => array(
|
||||||
'verify_peer' => false,
|
'verify_peer' => false,
|
||||||
)
|
),
|
||||||
);
|
);
|
||||||
$projectData = <<<JSON
|
$projectData = <<<JSON
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
namespace Composer\Test\Util;
|
namespace Composer\Test\Util;
|
||||||
|
|
||||||
use Composer\Util\Perforce;
|
use Composer\Util\Perforce;
|
||||||
use Composer\Util\ProcessExecutor;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Matt Whittom <Matt.Whittom@veteransunited.com>
|
* @author Matt Whittom <Matt.Whittom@veteransunited.com>
|
||||||
|
|
Loading…
Reference in New Issue