Skip to content

Commit 5b4606d

Browse files
chore(dependencies): update the dependencies
1 parent 7582a2a commit 5b4606d

File tree

416 files changed

+26285
-3366
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

416 files changed

+26285
-3366
lines changed

vendor/composer/ClassLoader.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ public function isClassMapAuthoritative()
279279
*/
280280
public function setApcuPrefix($apcuPrefix)
281281
{
282-
$this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null;
282+
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
283283
}
284284

285285
/**
@@ -377,11 +377,11 @@ private function findFileWithExtension($class, $ext)
377377
$subPath = $class;
378378
while (false !== $lastPos = strrpos($subPath, '\\')) {
379379
$subPath = substr($subPath, 0, $lastPos);
380-
$search = $subPath.'\\';
380+
$search = $subPath . '\\';
381381
if (isset($this->prefixDirsPsr4[$search])) {
382+
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
382383
foreach ($this->prefixDirsPsr4[$search] as $dir) {
383-
$length = $this->prefixLengthsPsr4[$first][$search];
384-
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
384+
if (file_exists($file = $dir . $pathEnd)) {
385385
return $file;
386386
}
387387
}

vendor/composer/autoload_namespaces.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@
66
$baseDir = dirname($vendorDir);
77

88
return array(
9-
'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src'),
109
);

vendor/composer/autoload_psr4.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@
66
$baseDir = dirname($vendorDir);
77

88
return array(
9-
'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/type-resolver/src', $vendorDir . '/phpdocumentor/reflection-docblock/src'),
9+
'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/reflection-docblock/src', $vendorDir . '/phpdocumentor/type-resolver/src'),
1010
'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'),
1111
'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
1212
'Symfony\\Component\\Yaml\\' => array($vendorDir . '/symfony/yaml'),
1313
'Rollbar\\Wordpress\\Tests\\' => array($baseDir . '/tests'),
1414
'Rollbar\\Wordpress\\' => array($baseDir . '/src'),
1515
'Rollbar\\' => array($vendorDir . '/rollbar/rollbar/src'),
1616
'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
17+
'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src/Prophecy'),
18+
'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'),
1719
'Michelf\\' => array($vendorDir . '/michelf/php-markdown/Michelf'),
1820
'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator'),
1921
);

vendor/composer/autoload_static.php

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ class ComposerStaticInited105be67bb9151573b323ff5c8bb30a
3333
'P' =>
3434
array (
3535
'Psr\\Log\\' => 8,
36+
'Prophecy\\' => 9,
3637
),
3738
'M' =>
3839
array (
40+
'Monolog\\' => 8,
3941
'Michelf\\' => 8,
4042
),
4143
'D' =>
@@ -48,8 +50,8 @@ class ComposerStaticInited105be67bb9151573b323ff5c8bb30a
4850
'phpDocumentor\\Reflection\\' =>
4951
array (
5052
0 => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src',
51-
1 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src',
52-
2 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src',
53+
1 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src',
54+
2 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src',
5355
),
5456
'Webmozart\\Assert\\' =>
5557
array (
@@ -79,6 +81,14 @@ class ComposerStaticInited105be67bb9151573b323ff5c8bb30a
7981
array (
8082
0 => __DIR__ . '/..' . '/psr/log/Psr/Log',
8183
),
84+
'Prophecy\\' =>
85+
array (
86+
0 => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy',
87+
),
88+
'Monolog\\' =>
89+
array (
90+
0 => __DIR__ . '/..' . '/monolog/monolog/src/Monolog',
91+
),
8292
'Michelf\\' =>
8393
array (
8494
0 => __DIR__ . '/..' . '/michelf/php-markdown/Michelf',
@@ -89,16 +99,6 @@ class ComposerStaticInited105be67bb9151573b323ff5c8bb30a
8999
),
90100
);
91101

92-
public static $prefixesPsr0 = array (
93-
'P' =>
94-
array (
95-
'Prophecy\\' =>
96-
array (
97-
0 => __DIR__ . '/..' . '/phpspec/prophecy/src',
98-
),
99-
),
100-
);
101-
102102
public static $classMap = array (
103103
'File_Iterator' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Iterator.php',
104104
'File_Iterator_Facade' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Facade.php',
@@ -552,7 +552,6 @@ public static function getInitializer(ClassLoader $loader)
552552
return \Closure::bind(function () use ($loader) {
553553
$loader->prefixLengthsPsr4 = ComposerStaticInited105be67bb9151573b323ff5c8bb30a::$prefixLengthsPsr4;
554554
$loader->prefixDirsPsr4 = ComposerStaticInited105be67bb9151573b323ff5c8bb30a::$prefixDirsPsr4;
555-
$loader->prefixesPsr0 = ComposerStaticInited105be67bb9151573b323ff5c8bb30a::$prefixesPsr0;
556555
$loader->classMap = ComposerStaticInited105be67bb9151573b323ff5c8bb30a::$classMap;
557556

558557
}, null, ClassLoader::class);

0 commit comments

Comments
 (0)