Skip to content

Commit 5cefd19

Browse files
committed
Install deps with support of php7.3
1 parent b29bfee commit 5cefd19

File tree

360 files changed

+17885
-6871
lines changed

Some content is hidden

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

360 files changed

+17885
-6871
lines changed

deps/composer.json

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"require": {
3+
"php": "^8.0|^7.3",
4+
"ext-json": "*",
35
"justinrainbow/json-schema": "^5.2",
46
"psr/http-message": "^1",
57
"react/http": "^1.5",

deps/composer.lock

+3,278-237
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deps/vendor/composer/autoload_classmap.php

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
return array(
99
'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
10-
'CURLStringFile' => $vendorDir . '/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php',
1110
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
1211
'JsonException' => $vendorDir . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
1312
'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',

deps/vendor/composer/autoload_files.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@
77

88
return array(
99
'ad155f8f1cf0d418fe49e248db8c661b' => $vendorDir . '/react/promise/src/functions_include.php',
10+
'972fda704d680a3a53c68e34e193cb22' => $vendorDir . '/react/promise-timer/src/functions_include.php',
1011
'6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
12+
'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
1113
'320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
1214
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
1315
'8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
1416
'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
15-
'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
17+
'cea474b4340aa9fa53661e887a21a316' => $vendorDir . '/react/promise-stream/src/functions_include.php',
18+
'ebf8799635f67b5d7248946fe2154f4a' => $vendorDir . '/ringcentral/psr7/src/functions_include.php',
1619
'0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
1720
'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php',
1821
'23c18046f52bef3eea034657bafda50f' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php',

deps/vendor/composer/autoload_namespaces.php

+1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
$baseDir = dirname($vendorDir);
77

88
return array(
9+
'Evenement' => array($vendorDir . '/evenement/evenement/src'),
910
);

deps/vendor/composer/autoload_psr4.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@
1818
'Symfony\\Component\\String\\' => array($vendorDir . '/symfony/string'),
1919
'Symfony\\Component\\Process\\' => array($vendorDir . '/symfony/process'),
2020
'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
21+
'RingCentral\\Psr7\\' => array($vendorDir . '/ringcentral/psr7/src'),
2122
'React\\Stream\\' => array($vendorDir . '/react/stream/src'),
2223
'React\\Socket\\' => array($vendorDir . '/react/socket/src'),
24+
'React\\Promise\\Timer\\' => array($vendorDir . '/react/promise-timer/src'),
25+
'React\\Promise\\Stream\\' => array($vendorDir . '/react/promise-stream/src'),
2326
'React\\Promise\\' => array($vendorDir . '/react/promise/src'),
2427
'React\\Http\\' => array($vendorDir . '/react/http/src'),
2528
'React\\EventLoop\\' => array($vendorDir . '/react/event-loop/src'),
@@ -29,5 +32,4 @@
2932
'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
3033
'JsonSchema\\' => array($vendorDir . '/justinrainbow/json-schema/src/JsonSchema'),
3134
'Fig\\Http\\Message\\' => array($vendorDir . '/fig/http-message-util/src'),
32-
'Evenement\\' => array($vendorDir . '/evenement/evenement/src'),
3335
);

deps/vendor/composer/autoload_real.php

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ public static function getLoader()
2222
return self::$loader;
2323
}
2424

25-
require __DIR__ . '/platform_check.php';
26-
2725
spl_autoload_register(array('ComposerAutoloaderInit6e0324fc886fd55694e53338d30399bc', 'loadClassLoader'), true, true);
2826
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
2927
spl_autoload_unregister(array('ComposerAutoloaderInit6e0324fc886fd55694e53338d30399bc', 'loadClassLoader'));

deps/vendor/composer/autoload_static.php

+28-8
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@ class ComposerStaticInit6e0324fc886fd55694e53338d30399bc
88
{
99
public static $files = array (
1010
'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php',
11+
'972fda704d680a3a53c68e34e193cb22' => __DIR__ . '/..' . '/react/promise-timer/src/functions_include.php',
1112
'6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
13+
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
1214
'320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
1315
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
1416
'8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
1517
'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
16-
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
18+
'cea474b4340aa9fa53661e887a21a316' => __DIR__ . '/..' . '/react/promise-stream/src/functions_include.php',
19+
'ebf8799635f67b5d7248946fe2154f4a' => __DIR__ . '/..' . '/ringcentral/psr7/src/functions_include.php',
1720
'0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
1821
'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
1922
'23c18046f52bef3eea034657bafda50f' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
@@ -37,8 +40,11 @@ class ComposerStaticInit6e0324fc886fd55694e53338d30399bc
3740
),
3841
'R' =>
3942
array (
43+
'RingCentral\\Psr7\\' => 17,
4044
'React\\Stream\\' => 13,
4145
'React\\Socket\\' => 13,
46+
'React\\Promise\\Timer\\' => 20,
47+
'React\\Promise\\Stream\\' => 21,
4248
'React\\Promise\\' => 14,
4349
'React\\Http\\' => 11,
4450
'React\\EventLoop\\' => 16,
@@ -58,10 +64,6 @@ class ComposerStaticInit6e0324fc886fd55694e53338d30399bc
5864
array (
5965
'Fig\\Http\\Message\\' => 17,
6066
),
61-
'E' =>
62-
array (
63-
'Evenement\\' => 10,
64-
),
6567
);
6668

6769
public static $prefixDirsPsr4 = array (
@@ -113,6 +115,10 @@ class ComposerStaticInit6e0324fc886fd55694e53338d30399bc
113115
array (
114116
0 => __DIR__ . '/..' . '/symfony/console',
115117
),
118+
'RingCentral\\Psr7\\' =>
119+
array (
120+
0 => __DIR__ . '/..' . '/ringcentral/psr7/src',
121+
),
116122
'React\\Stream\\' =>
117123
array (
118124
0 => __DIR__ . '/..' . '/react/stream/src',
@@ -121,6 +127,14 @@ class ComposerStaticInit6e0324fc886fd55694e53338d30399bc
121127
array (
122128
0 => __DIR__ . '/..' . '/react/socket/src',
123129
),
130+
'React\\Promise\\Timer\\' =>
131+
array (
132+
0 => __DIR__ . '/..' . '/react/promise-timer/src',
133+
),
134+
'React\\Promise\\Stream\\' =>
135+
array (
136+
0 => __DIR__ . '/..' . '/react/promise-stream/src',
137+
),
124138
'React\\Promise\\' =>
125139
array (
126140
0 => __DIR__ . '/..' . '/react/promise/src',
@@ -157,15 +171,20 @@ class ComposerStaticInit6e0324fc886fd55694e53338d30399bc
157171
array (
158172
0 => __DIR__ . '/..' . '/fig/http-message-util/src',
159173
),
160-
'Evenement\\' =>
174+
);
175+
176+
public static $prefixesPsr0 = array (
177+
'E' =>
161178
array (
162-
0 => __DIR__ . '/..' . '/evenement/evenement/src',
179+
'Evenement' =>
180+
array (
181+
0 => __DIR__ . '/..' . '/evenement/evenement/src',
182+
),
163183
),
164184
);
165185

166186
public static $classMap = array (
167187
'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
168-
'CURLStringFile' => __DIR__ . '/..' . '/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php',
169188
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
170189
'JsonException' => __DIR__ . '/..' . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
171190
'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
@@ -181,6 +200,7 @@ public static function getInitializer(ClassLoader $loader)
181200
return \Closure::bind(function () use ($loader) {
182201
$loader->prefixLengthsPsr4 = ComposerStaticInit6e0324fc886fd55694e53338d30399bc::$prefixLengthsPsr4;
183202
$loader->prefixDirsPsr4 = ComposerStaticInit6e0324fc886fd55694e53338d30399bc::$prefixDirsPsr4;
203+
$loader->prefixesPsr0 = ComposerStaticInit6e0324fc886fd55694e53338d30399bc::$prefixesPsr0;
184204
$loader->classMap = ComposerStaticInit6e0324fc886fd55694e53338d30399bc::$classMap;
185205

186206
}, null, ClassLoader::class);

0 commit comments

Comments
 (0)