Skip to content

Commit

Permalink
Update dependencies (#274)
Browse files Browse the repository at this point in the history
- Mark the test `ConfigurationFileNoConfigTest:: test_it_ignores_the_most_common_non_needed_files_when_guess_the()` as skipped on OSX since it will always fail due to the OS being case insensitive
- Upgrade `paragonie/pharaoh` and remove its temporary fix regarding the destruction of the
  `Pharaoh` class
- Fix `CompileTest::test_it_can_build_a_PHAR_file_in_debug_mode()` to work with different xdebug versions
- Fix a few issues reported by Scrutinizer
  • Loading branch information
theofidry authored Sep 10, 2018
1 parent 274dba3 commit abc01b3
Show file tree
Hide file tree
Showing 53 changed files with 326 additions and 282 deletions.
1 change: 1 addition & 0 deletions .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ $config = PhpCsFixer\Config::create()
'heredoc_to_nowdoc' => true,
'list_syntax' => ['syntax' => 'short'],
'method_argument_space' => ['ensure_fully_multiline' => true],
'native_function_invocation' => false,
'no_extra_consecutive_blank_lines' => [
'tokens' => [
'break',
Expand Down
4 changes: 2 additions & 2 deletions .requirement-checker/bin/check-requirements.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php

namespace _HumbugBox5af565a878e76\KevinGH\RequirementChecker;
namespace _HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker;

require __DIR__ . '/../vendor/autoload.php';
if (\PHP_SAPI !== 'cli' && \PHP_SAPI !== 'phpdbg') {
echo \PHP_EOL . 'The application may only be invoked from a command line' . \PHP_EOL;
exit(1);
}
$checkPassed = \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\Checker::checkRequirements();
$checkPassed = \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\Checker::checkRequirements();
if (\false === $checkPassed) {
exit(1);
}
32 changes: 16 additions & 16 deletions .requirement-checker/src/Checker.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace _HumbugBox5af565a878e76\KevinGH\RequirementChecker;
namespace _HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker;

/**
@private
Expand All @@ -19,16 +19,16 @@ public static function checkRequirements()
{
$requirements = self::retrieveRequirements();
$checkPassed = $requirements->evaluateRequirements();
$io = new \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IO();
self::printCheck($checkPassed, new \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\Printer($io->getVerbosity(), $io->hasColorSupport()), $requirements);
$io = new \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IO();
self::printCheck($checkPassed, new \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\Printer($io->getVerbosity(), $io->hasColorSupport()), $requirements);
return $checkPassed;
}
public static function printCheck($checkPassed, \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\Printer $printer, \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\RequirementCollection $requirements)
public static function printCheck($checkPassed, \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\Printer $printer, \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\RequirementCollection $requirements)
{
if (\false === $checkPassed && \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IO::VERBOSITY_VERY_VERBOSE > $printer->getVerbosity()) {
$printer->setVerbosity(\_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IO::VERBOSITY_VERY_VERBOSE);
if (\false === $checkPassed && \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IO::VERBOSITY_VERY_VERBOSE > $printer->getVerbosity()) {
$printer->setVerbosity(\_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IO::VERBOSITY_VERY_VERBOSE);
}
$verbosity = \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IO::VERBOSITY_VERY_VERBOSE;
$verbosity = \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IO::VERBOSITY_VERY_VERBOSE;
$iniPath = $requirements->getPhpIniPath();
$printer->title('Box Requirements Checker', $verbosity);
$printer->printv('> Using PHP ', $verbosity);
Expand All @@ -49,24 +49,24 @@ public static function printCheck($checkPassed, \_HumbugBox5af565a878e76\KevinGH
$errorMessages = array();
foreach ($requirements->getRequirements() as $requirement) {
if ($errorMessage = $printer->getRequirementErrorMessage($requirement)) {
if (\_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG === $printer->getVerbosity()) {
$printer->printvln('' . $requirement->getTestMessage(), \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG, 'red');
$printer->printv(' ', \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG);
if (\_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG === $printer->getVerbosity()) {
$printer->printvln('' . $requirement->getTestMessage(), \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG, 'red');
$printer->printv(' ', \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG);
$errorMessages[] = $errorMessage;
} else {
$printer->printv('E', $verbosity, 'red');
$errorMessages[] = $errorMessage;
}
continue;
}
if (\_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG === $printer->getVerbosity()) {
$printer->printvln('' . $requirement->getHelpText(), \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG, 'green');
$printer->printv(' ', \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG);
if (\_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG === $printer->getVerbosity()) {
$printer->printvln('' . $requirement->getHelpText(), \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG, 'green');
$printer->printv(' ', \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG);
} else {
$printer->printv('.', $verbosity, 'green');
}
}
if (\_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG !== $printer->getVerbosity() && \count($requirements) > 0) {
if (\_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IO::VERBOSITY_DEBUG !== $printer->getVerbosity() && \count($requirements) > 0) {
$printer->printvln('', $verbosity);
}
if ($requirements->evaluateRequirements()) {
Expand All @@ -89,9 +89,9 @@ private static function retrieveRequirements()
self::$requirementsConfig = __DIR__ . '/../.requirements.php';
}
$config = (require self::$requirementsConfig);
$requirements = new \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\RequirementCollection();
$requirements = new \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\RequirementCollection();
foreach ($config as $constraint) {
$requirements->addRequirement('php' === $constraint['type'] ? new \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IsPhpVersionFulfilled($constraint['condition']) : new \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IsExtensionFulfilled($constraint['condition']), $constraint['message'], $constraint['helpMessage']);
$requirements->addRequirement('php' === $constraint['type'] ? new \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IsPhpVersionFulfilled($constraint['condition']) : new \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IsExtensionFulfilled($constraint['condition']), $constraint['message'], $constraint['helpMessage']);
}
return $requirements;
}
Expand Down
4 changes: 2 additions & 2 deletions .requirement-checker/src/IO.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace _HumbugBox5af565a878e76\KevinGH\RequirementChecker;
namespace _HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker;

/**
@private
Expand Down Expand Up @@ -132,7 +132,7 @@ private function checkColorSupport()
return \false;
}
if (\DIRECTORY_SEPARATOR === '\\') {
return \function_exists('sapi_windows_vt100_support') && sapi_windows_vt100_support(\STDOUT) || \false !== \getenv('ANSICON') || 'ON' === \getenv('ConEmuANSI') || 'xterm' === \getenv('TERM');
return \function_exists('_HumbugBox5b963fb2bb9ba\\sapi_windows_vt100_support') && sapi_windows_vt100_support(\STDOUT) || \false !== \getenv('ANSICON') || 'ON' === \getenv('ConEmuANSI') || 'xterm' === \getenv('TERM');
}
if (\function_exists('stream_isatty')) {
return \stream_isatty(\STDOUT);
Expand Down
4 changes: 2 additions & 2 deletions .requirement-checker/src/IsExtensionFulfilled.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace _HumbugBox5af565a878e76\KevinGH\RequirementChecker;
namespace _HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker;

/**
@private
*/
final class IsExtensionFulfilled implements \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IsFulfilled
final class IsExtensionFulfilled implements \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IsFulfilled
{
private $requiredExtension;
/**
Expand Down
2 changes: 1 addition & 1 deletion .requirement-checker/src/IsFulfilled.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace _HumbugBox5af565a878e76\KevinGH\RequirementChecker;
namespace _HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker;

/**
@private
Expand Down
8 changes: 4 additions & 4 deletions .requirement-checker/src/IsPhpVersionFulfilled.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php

namespace _HumbugBox5af565a878e76\KevinGH\RequirementChecker;
namespace _HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker;

use _HumbugBox5af565a878e76\Composer\Semver\Semver;
use _HumbugBox5b963fb2bb9ba\Composer\Semver\Semver;
/**
@private
*/
final class IsPhpVersionFulfilled implements \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\IsFulfilled
final class IsPhpVersionFulfilled implements \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\IsFulfilled
{
private $requiredPhpVersion;
/**
Expand All @@ -18,6 +18,6 @@ public function __construct($requiredPhpVersion)
}
public function __invoke()
{
return \_HumbugBox5af565a878e76\Composer\Semver\Semver::satisfies(\sprintf('%d.%d.%d', \PHP_MAJOR_VERSION, \PHP_MINOR_VERSION, \PHP_RELEASE_VERSION), $this->requiredPhpVersion);
return \_HumbugBox5b963fb2bb9ba\Composer\Semver\Semver::satisfies(\sprintf('%d.%d.%d', \PHP_MAJOR_VERSION, \PHP_MINOR_VERSION, \PHP_RELEASE_VERSION), $this->requiredPhpVersion);
}
}
6 changes: 3 additions & 3 deletions .requirement-checker/src/Printer.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace _HumbugBox5af565a878e76\KevinGH\RequirementChecker;
namespace _HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker;

/**
@private
Expand All @@ -19,7 +19,7 @@ final class Printer
public function __construct($verbosity, $supportColors, $width = null)
{
if (null === $width) {
$terminal = new \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\Terminal();
$terminal = new \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\Terminal();
$width = \min($terminal->getWidth(), 80);
}
$this->verbosity = $verbosity;
Expand Down Expand Up @@ -59,7 +59,7 @@ public function title($title, $verbosity, $style = null)
@param
@return
*/
public function getRequirementErrorMessage(\_HumbugBox5af565a878e76\KevinGH\RequirementChecker\Requirement $requirement)
public function getRequirementErrorMessage(\_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\Requirement $requirement)
{
if ($requirement->isFulfilled()) {
return null;
Expand Down
2 changes: 1 addition & 1 deletion .requirement-checker/src/Requirement.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace _HumbugBox5af565a878e76\KevinGH\RequirementChecker;
namespace _HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker;

/**
@private
Expand Down
8 changes: 4 additions & 4 deletions .requirement-checker/src/RequirementCollection.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace _HumbugBox5af565a878e76\KevinGH\RequirementChecker;
namespace _HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker;

use ArrayIterator;
use Countable;
Expand Down Expand Up @@ -31,7 +31,7 @@ public function count()
/**
@param
*/
public function add(\_HumbugBox5af565a878e76\KevinGH\RequirementChecker\Requirement $requirement)
public function add(\_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\Requirement $requirement)
{
$this->requirements[] = $requirement;
}
Expand All @@ -42,7 +42,7 @@ public function add(\_HumbugBox5af565a878e76\KevinGH\RequirementChecker\Requirem
*/
public function addRequirement($checkIsFulfilled, $testMessage, $helpText)
{
$this->add(new \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\Requirement($checkIsFulfilled, $testMessage, $helpText));
$this->add(new \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\Requirement($checkIsFulfilled, $testMessage, $helpText));
}
/**
@return
Expand Down Expand Up @@ -70,7 +70,7 @@ public function evaluateRequirements()
@param
@return
*/
function ($checkPassed, \_HumbugBox5af565a878e76\KevinGH\RequirementChecker\Requirement $requirement) {
function ($checkPassed, \_HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker\Requirement $requirement) {
return $checkPassed && $requirement->isFulfilled();
},
\true
Expand Down
5 changes: 3 additions & 2 deletions .requirement-checker/src/Terminal.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace _HumbugBox5af565a878e76\KevinGH\RequirementChecker;
namespace _HumbugBox5b963fb2bb9ba\KevinGH\RequirementChecker;

/**
@license
Expand Down Expand Up @@ -63,7 +63,7 @@ private static function initDimensions()
private static function getConsoleMode()
{
if (!\function_exists('proc_open')) {
return;
return null;
}
$descriptorspec = array(1 => array('pipe', 'w'), 2 => array('pipe', 'w'));
$process = \proc_open('mode CON', $descriptorspec, $pipes, null, null, array('suppress_errors' => \true));
Expand All @@ -76,6 +76,7 @@ private static function getConsoleMode()
return array((int) $matches[2], (int) $matches[1]);
}
}
return null;
}
/**
@return
Expand Down
15 changes: 5 additions & 10 deletions .requirement-checker/vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,12 @@

require_once __DIR__ . '/composer/autoload_real.php';

$loader = ComposerAutoloaderInitb3427d2564583967456f7a16e0a5984c::getLoader();



// scoper-autoload.php @generated by PhpScoper



class_exists('_HumbugBox5af565a878e76\Composer\Semver\Semver');

$loader = ComposerAutoloaderInit049279a73ec758640197b035b4bb6323::getLoader();

// Whitelist statements @generated by PHP-Scoper

// Aliases for the whitelisted classes. For more information see:
// https://github.com/humbug/php-scoper/blob/master/README.md#class-whitelisting
class_exists('_HumbugBox5b963fb2bb9ba\Composer\Semver\Semver');

return $loader;
2 changes: 1 addition & 1 deletion .requirement-checker/vendor/composer/ClassLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ private function findFileWithExtension($class, $ext)
$subPath = $class;
while (false !== $lastPos = strrpos($subPath, '\\')) {
$subPath = substr($subPath, 0, $lastPos);
$search = $subPath.'\\';
$search = $subPath . '\\';
if (isset($this->prefixDirsPsr4[$search])) {
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
foreach ($this->prefixDirsPsr4[$search] as $dir) {
Expand Down
34 changes: 17 additions & 17 deletions .requirement-checker/vendor/composer/autoload_classmap.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@
$baseDir = dirname($vendorDir);

return array(
'_HumbugBox5af565a878e76\\Composer\\Semver\\Comparator' => $vendorDir . '/composer/semver/src/Comparator.php',
'_HumbugBox5af565a878e76\\Composer\\Semver\\Constraint\\AbstractConstraint' => $vendorDir . '/composer/semver/src/Constraint/AbstractConstraint.php',
'_HumbugBox5af565a878e76\\Composer\\Semver\\Constraint\\Constraint' => $vendorDir . '/composer/semver/src/Constraint/Constraint.php',
'_HumbugBox5af565a878e76\\Composer\\Semver\\Constraint\\ConstraintInterface' => $vendorDir . '/composer/semver/src/Constraint/ConstraintInterface.php',
'_HumbugBox5af565a878e76\\Composer\\Semver\\Constraint\\EmptyConstraint' => $vendorDir . '/composer/semver/src/Constraint/EmptyConstraint.php',
'_HumbugBox5af565a878e76\\Composer\\Semver\\Constraint\\MultiConstraint' => $vendorDir . '/composer/semver/src/Constraint/MultiConstraint.php',
'_HumbugBox5af565a878e76\\Composer\\Semver\\Semver' => $vendorDir . '/composer/semver/src/Semver.php',
'_HumbugBox5af565a878e76\\Composer\\Semver\\VersionParser' => $vendorDir . '/composer/semver/src/VersionParser.php',
'_HumbugBox5af565a878e76\\KevinGH\\RequirementChecker\\Checker' => $baseDir . '/src/Checker.php',
'_HumbugBox5af565a878e76\\KevinGH\\RequirementChecker\\IO' => $baseDir . '/src/IO.php',
'_HumbugBox5af565a878e76\\KevinGH\\RequirementChecker\\IsExtensionFulfilled' => $baseDir . '/src/IsExtensionFulfilled.php',
'_HumbugBox5af565a878e76\\KevinGH\\RequirementChecker\\IsFulfilled' => $baseDir . '/src/IsFulfilled.php',
'_HumbugBox5af565a878e76\\KevinGH\\RequirementChecker\\IsPhpVersionFulfilled' => $baseDir . '/src/IsPhpVersionFulfilled.php',
'_HumbugBox5af565a878e76\\KevinGH\\RequirementChecker\\Printer' => $baseDir . '/src/Printer.php',
'_HumbugBox5af565a878e76\\KevinGH\\RequirementChecker\\Requirement' => $baseDir . '/src/Requirement.php',
'_HumbugBox5af565a878e76\\KevinGH\\RequirementChecker\\RequirementCollection' => $baseDir . '/src/RequirementCollection.php',
'_HumbugBox5af565a878e76\\KevinGH\\RequirementChecker\\Terminal' => $baseDir . '/src/Terminal.php',
'_HumbugBox5b963fb2bb9ba\\Composer\\Semver\\Comparator' => $vendorDir . '/composer/semver/src/Comparator.php',
'_HumbugBox5b963fb2bb9ba\\Composer\\Semver\\Constraint\\AbstractConstraint' => $vendorDir . '/composer/semver/src/Constraint/AbstractConstraint.php',
'_HumbugBox5b963fb2bb9ba\\Composer\\Semver\\Constraint\\Constraint' => $vendorDir . '/composer/semver/src/Constraint/Constraint.php',
'_HumbugBox5b963fb2bb9ba\\Composer\\Semver\\Constraint\\ConstraintInterface' => $vendorDir . '/composer/semver/src/Constraint/ConstraintInterface.php',
'_HumbugBox5b963fb2bb9ba\\Composer\\Semver\\Constraint\\EmptyConstraint' => $vendorDir . '/composer/semver/src/Constraint/EmptyConstraint.php',
'_HumbugBox5b963fb2bb9ba\\Composer\\Semver\\Constraint\\MultiConstraint' => $vendorDir . '/composer/semver/src/Constraint/MultiConstraint.php',
'_HumbugBox5b963fb2bb9ba\\Composer\\Semver\\Semver' => $vendorDir . '/composer/semver/src/Semver.php',
'_HumbugBox5b963fb2bb9ba\\Composer\\Semver\\VersionParser' => $vendorDir . '/composer/semver/src/VersionParser.php',
'_HumbugBox5b963fb2bb9ba\\KevinGH\\RequirementChecker\\Checker' => $baseDir . '/src/Checker.php',
'_HumbugBox5b963fb2bb9ba\\KevinGH\\RequirementChecker\\IO' => $baseDir . '/src/IO.php',
'_HumbugBox5b963fb2bb9ba\\KevinGH\\RequirementChecker\\IsExtensionFulfilled' => $baseDir . '/src/IsExtensionFulfilled.php',
'_HumbugBox5b963fb2bb9ba\\KevinGH\\RequirementChecker\\IsFulfilled' => $baseDir . '/src/IsFulfilled.php',
'_HumbugBox5b963fb2bb9ba\\KevinGH\\RequirementChecker\\IsPhpVersionFulfilled' => $baseDir . '/src/IsPhpVersionFulfilled.php',
'_HumbugBox5b963fb2bb9ba\\KevinGH\\RequirementChecker\\Printer' => $baseDir . '/src/Printer.php',
'_HumbugBox5b963fb2bb9ba\\KevinGH\\RequirementChecker\\Requirement' => $baseDir . '/src/Requirement.php',
'_HumbugBox5b963fb2bb9ba\\KevinGH\\RequirementChecker\\RequirementCollection' => $baseDir . '/src/RequirementCollection.php',
'_HumbugBox5b963fb2bb9ba\\KevinGH\\RequirementChecker\\Terminal' => $baseDir . '/src/Terminal.php',
);
4 changes: 2 additions & 2 deletions .requirement-checker/vendor/composer/autoload_psr4.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
$baseDir = dirname($vendorDir);

return array(
'_HumbugBox5af565a878e76\\KevinGH\\RequirementChecker\\' => array($baseDir . '/src'),
'_HumbugBox5af565a878e76\\Composer\\Semver\\' => array($vendorDir . '/composer/semver/src'),
'_HumbugBox5b963fb2bb9ba\\KevinGH\\RequirementChecker\\' => array($baseDir . '/src'),
'_HumbugBox5b963fb2bb9ba\\Composer\\Semver\\' => array($vendorDir . '/composer/semver/src'),
);
Loading

1 comment on commit abc01b3

@KEINOS
Copy link

@KEINOS KEINOS commented on abc01b3 Sep 10, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉 3.0.0!!! 👏👏👏👏

Please sign in to comment.