dependabot-composer 0.128.0 → 0.129.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/helpers/{.php_cs → v1/.php_cs} +0 -0
- data/helpers/{bin → v1/bin}/run +0 -0
- data/helpers/v1/build +20 -0
- data/helpers/{composer.json → v1/composer.json} +0 -0
- data/helpers/{composer.lock → v1/composer.lock} +63 -61
- data/helpers/{phpstan.neon → v1/phpstan.neon} +0 -0
- data/helpers/{src → v1/src}/DependabotInstallationManager.php +0 -0
- data/helpers/{src → v1/src}/DependabotPluginManager.php +0 -0
- data/helpers/{src → v1/src}/ExceptionIO.php +0 -0
- data/helpers/{src → v1/src}/Hasher.php +0 -0
- data/helpers/{src → v1/src}/UpdateChecker.php +0 -0
- data/helpers/{src → v1/src}/Updater.php +0 -0
- data/helpers/v2/.php_cs +32 -0
- data/helpers/v2/bin/run +86 -0
- data/helpers/{build → v2/build} +0 -0
- data/helpers/v2/composer.json +23 -0
- data/helpers/v2/composer.lock +2483 -0
- data/helpers/v2/phpstan.neon +5 -0
- data/helpers/v2/src/DependabotInstallationManager.php +67 -0
- data/helpers/v2/src/DependabotPluginManager.php +23 -0
- data/helpers/v2/src/ExceptionIO.php +25 -0
- data/helpers/v2/src/Hasher.php +28 -0
- data/helpers/v2/src/UpdateChecker.php +133 -0
- data/helpers/v2/src/Updater.php +99 -0
- data/lib/dependabot/composer/file_updater/lockfile_updater.rb +26 -2
- data/lib/dependabot/composer/helpers.rb +20 -0
- data/lib/dependabot/composer/native_helpers.rb +2 -2
- data/lib/dependabot/composer/update_checker/version_resolver.rb +10 -2
- metadata +33 -21
- data/helpers/setup.sh +0 -17
data/helpers/v2/bin/run
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
#!/usr/bin/env php
|
2
|
+
<?php
|
3
|
+
|
4
|
+
declare(strict_types=1);
|
5
|
+
|
6
|
+
namespace Dependabot\Composer;
|
7
|
+
|
8
|
+
require __DIR__ . '/../vendor/autoload.php';
|
9
|
+
|
10
|
+
// Get details of the process to run from STDIN. It will have a `function`
|
11
|
+
// and an `args` method, as passed in by UpdateCheckers::Php
|
12
|
+
$request = json_decode(file_get_contents('php://stdin'), true);
|
13
|
+
|
14
|
+
function memoryInBytes($value) {
|
15
|
+
$unit = strtolower(substr($value, -1, 1));
|
16
|
+
$value = (int) $value;
|
17
|
+
if ($unit == 'g') {
|
18
|
+
$value *= (1024 * 1024 * 1024);
|
19
|
+
} elseif ($unit == 'm') {
|
20
|
+
$value *= (1024 * 1024);
|
21
|
+
} elseif ($unit == 'k') {
|
22
|
+
$value *= 1024;
|
23
|
+
}
|
24
|
+
|
25
|
+
return $value;
|
26
|
+
}
|
27
|
+
|
28
|
+
// Increase the default memory limit the same way Composer does (but clearer)
|
29
|
+
if (function_exists('ini_set')) {
|
30
|
+
$memoryLimit = trim(ini_get('memory_limit'));
|
31
|
+
// Increase memory_limit if it is lower than 1900MB
|
32
|
+
if ($memoryLimit != -1 && memoryInBytes($memoryLimit) < 1024 * 1024 * 1900) {
|
33
|
+
@ini_set('memory_limit', '1900M');
|
34
|
+
}
|
35
|
+
|
36
|
+
// Set user defined memory limit
|
37
|
+
if ($memoryLimit = getenv('COMPOSER_MEMORY_LIMIT')) {
|
38
|
+
@ini_set('memory_limit', $memoryLimit);
|
39
|
+
}
|
40
|
+
unset($memoryInBytes, $memoryLimit);
|
41
|
+
}
|
42
|
+
|
43
|
+
date_default_timezone_set('Europe/London');
|
44
|
+
|
45
|
+
// This storage is freed on error (case of allowed memory exhausted)
|
46
|
+
$memory = str_repeat('*', 1024 * 1024);
|
47
|
+
|
48
|
+
register_shutdown_function(function (): void {
|
49
|
+
global $memory;
|
50
|
+
$memory = null;
|
51
|
+
$error = error_get_last();
|
52
|
+
if (null !== $error) {
|
53
|
+
fwrite(STDOUT, json_encode(['error' => $error['message']]));
|
54
|
+
}
|
55
|
+
});
|
56
|
+
|
57
|
+
if ($memoryAlloc = getenv('DEPENDABOT_TEST_MEMORY_ALLOCATION')) {
|
58
|
+
str_repeat('*', memoryInBytes($memoryAlloc));
|
59
|
+
}
|
60
|
+
|
61
|
+
try {
|
62
|
+
switch ($request['function']) {
|
63
|
+
case 'update':
|
64
|
+
$updatedFiles = Updater::update($request['args']);
|
65
|
+
fwrite(STDOUT, json_encode(['result' => $updatedFiles]));
|
66
|
+
error_clear_last();
|
67
|
+
break;
|
68
|
+
case 'get_latest_resolvable_version':
|
69
|
+
$latestVersion = UpdateChecker::getLatestResolvableVersion($request['args']);
|
70
|
+
fwrite(STDOUT, json_encode(['result' => $latestVersion]));
|
71
|
+
error_clear_last();
|
72
|
+
break;
|
73
|
+
case 'get_content_hash':
|
74
|
+
$content_hash = Hasher::getContentHash($request['args']);
|
75
|
+
fwrite(STDOUT, json_encode(['result' => $content_hash]));
|
76
|
+
error_clear_last();
|
77
|
+
break;
|
78
|
+
default:
|
79
|
+
fwrite(STDOUT, json_encode(['error' => "Invalid function {$request['function']}"]));
|
80
|
+
exit(1);
|
81
|
+
}
|
82
|
+
} catch (\Exception $e) {
|
83
|
+
fwrite(STDOUT, json_encode(['error' => $e->getMessage()]));
|
84
|
+
error_clear_last();
|
85
|
+
exit(1);
|
86
|
+
}
|
data/helpers/{build → v2/build}
RENAMED
File without changes
|
@@ -0,0 +1,23 @@
|
|
1
|
+
{
|
2
|
+
"require": {
|
3
|
+
"php": "^7.4",
|
4
|
+
"ext-json": "*",
|
5
|
+
"composer/composer": "^2"
|
6
|
+
},
|
7
|
+
"require-dev": {
|
8
|
+
"friendsofphp/php-cs-fixer": "^2.16",
|
9
|
+
"phpstan/phpstan": "~0.12.3"
|
10
|
+
},
|
11
|
+
"autoload": {
|
12
|
+
"psr-4": {
|
13
|
+
"Dependabot\\Composer\\": "src/"
|
14
|
+
}
|
15
|
+
},
|
16
|
+
"scripts": {
|
17
|
+
"lint": "php-cs-fixer fix --diff --verbose",
|
18
|
+
"stan": "phpstan analyse"
|
19
|
+
},
|
20
|
+
"config": {
|
21
|
+
"sort-packages": true
|
22
|
+
}
|
23
|
+
}
|
@@ -0,0 +1,2483 @@
|
|
1
|
+
{
|
2
|
+
"_readme": [
|
3
|
+
"This file locks the dependencies of your project to a known state",
|
4
|
+
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
5
|
+
"This file is @generated automatically"
|
6
|
+
],
|
7
|
+
"content-hash": "8f6e3979c3c871840f3633fd5fb0b94a",
|
8
|
+
"packages": [
|
9
|
+
{
|
10
|
+
"name": "composer/ca-bundle",
|
11
|
+
"version": "1.2.8",
|
12
|
+
"source": {
|
13
|
+
"type": "git",
|
14
|
+
"url": "https://github.com/composer/ca-bundle.git",
|
15
|
+
"reference": "8a7ecad675253e4654ea05505233285377405215"
|
16
|
+
},
|
17
|
+
"dist": {
|
18
|
+
"type": "zip",
|
19
|
+
"url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
|
20
|
+
"reference": "8a7ecad675253e4654ea05505233285377405215",
|
21
|
+
"shasum": ""
|
22
|
+
},
|
23
|
+
"require": {
|
24
|
+
"ext-openssl": "*",
|
25
|
+
"ext-pcre": "*",
|
26
|
+
"php": "^5.3.2 || ^7.0 || ^8.0"
|
27
|
+
},
|
28
|
+
"require-dev": {
|
29
|
+
"phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
|
30
|
+
"psr/log": "^1.0",
|
31
|
+
"symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
|
32
|
+
},
|
33
|
+
"type": "library",
|
34
|
+
"extra": {
|
35
|
+
"branch-alias": {
|
36
|
+
"dev-master": "1.x-dev"
|
37
|
+
}
|
38
|
+
},
|
39
|
+
"autoload": {
|
40
|
+
"psr-4": {
|
41
|
+
"Composer\\CaBundle\\": "src"
|
42
|
+
}
|
43
|
+
},
|
44
|
+
"notification-url": "https://packagist.org/downloads/",
|
45
|
+
"license": [
|
46
|
+
"MIT"
|
47
|
+
],
|
48
|
+
"authors": [
|
49
|
+
{
|
50
|
+
"name": "Jordi Boggiano",
|
51
|
+
"email": "j.boggiano@seld.be",
|
52
|
+
"homepage": "http://seld.be"
|
53
|
+
}
|
54
|
+
],
|
55
|
+
"description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
|
56
|
+
"keywords": [
|
57
|
+
"cabundle",
|
58
|
+
"cacert",
|
59
|
+
"certificate",
|
60
|
+
"ssl",
|
61
|
+
"tls"
|
62
|
+
],
|
63
|
+
"funding": [
|
64
|
+
{
|
65
|
+
"url": "https://packagist.com",
|
66
|
+
"type": "custom"
|
67
|
+
},
|
68
|
+
{
|
69
|
+
"url": "https://github.com/composer",
|
70
|
+
"type": "github"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
74
|
+
"type": "tidelift"
|
75
|
+
}
|
76
|
+
],
|
77
|
+
"time": "2020-08-23T12:54:47+00:00"
|
78
|
+
},
|
79
|
+
{
|
80
|
+
"name": "composer/composer",
|
81
|
+
"version": "2.0.8",
|
82
|
+
"source": {
|
83
|
+
"type": "git",
|
84
|
+
"url": "https://github.com/composer/composer.git",
|
85
|
+
"reference": "62139b2806178adb979d76bd3437534a1a9fd490"
|
86
|
+
},
|
87
|
+
"dist": {
|
88
|
+
"type": "zip",
|
89
|
+
"url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
|
90
|
+
"reference": "62139b2806178adb979d76bd3437534a1a9fd490",
|
91
|
+
"shasum": ""
|
92
|
+
},
|
93
|
+
"require": {
|
94
|
+
"composer/ca-bundle": "^1.0",
|
95
|
+
"composer/semver": "^3.0",
|
96
|
+
"composer/spdx-licenses": "^1.2",
|
97
|
+
"composer/xdebug-handler": "^1.1",
|
98
|
+
"justinrainbow/json-schema": "^5.2.10",
|
99
|
+
"php": "^5.3.2 || ^7.0 || ^8.0",
|
100
|
+
"psr/log": "^1.0",
|
101
|
+
"react/promise": "^1.2 || ^2.7",
|
102
|
+
"seld/jsonlint": "^1.4",
|
103
|
+
"seld/phar-utils": "^1.0",
|
104
|
+
"symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
|
105
|
+
"symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
|
106
|
+
"symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
|
107
|
+
"symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
|
108
|
+
},
|
109
|
+
"require-dev": {
|
110
|
+
"phpspec/prophecy": "^1.10",
|
111
|
+
"symfony/phpunit-bridge": "^4.2 || ^5.0"
|
112
|
+
},
|
113
|
+
"suggest": {
|
114
|
+
"ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
|
115
|
+
"ext-zip": "Enabling the zip extension allows you to unzip archives",
|
116
|
+
"ext-zlib": "Allow gzip compression of HTTP requests"
|
117
|
+
},
|
118
|
+
"bin": [
|
119
|
+
"bin/composer"
|
120
|
+
],
|
121
|
+
"type": "library",
|
122
|
+
"extra": {
|
123
|
+
"branch-alias": {
|
124
|
+
"dev-master": "2.0-dev"
|
125
|
+
}
|
126
|
+
},
|
127
|
+
"autoload": {
|
128
|
+
"psr-4": {
|
129
|
+
"Composer\\": "src/Composer"
|
130
|
+
}
|
131
|
+
},
|
132
|
+
"notification-url": "https://packagist.org/downloads/",
|
133
|
+
"license": [
|
134
|
+
"MIT"
|
135
|
+
],
|
136
|
+
"authors": [
|
137
|
+
{
|
138
|
+
"name": "Nils Adermann",
|
139
|
+
"email": "naderman@naderman.de",
|
140
|
+
"homepage": "https://www.naderman.de"
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"name": "Jordi Boggiano",
|
144
|
+
"email": "j.boggiano@seld.be",
|
145
|
+
"homepage": "https://seld.be"
|
146
|
+
}
|
147
|
+
],
|
148
|
+
"description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
|
149
|
+
"homepage": "https://getcomposer.org/",
|
150
|
+
"keywords": [
|
151
|
+
"autoload",
|
152
|
+
"dependency",
|
153
|
+
"package"
|
154
|
+
],
|
155
|
+
"funding": [
|
156
|
+
{
|
157
|
+
"url": "https://packagist.com",
|
158
|
+
"type": "custom"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"url": "https://github.com/composer",
|
162
|
+
"type": "github"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
166
|
+
"type": "tidelift"
|
167
|
+
}
|
168
|
+
],
|
169
|
+
"time": "2020-12-03T16:20:39+00:00"
|
170
|
+
},
|
171
|
+
{
|
172
|
+
"name": "composer/semver",
|
173
|
+
"version": "3.2.4",
|
174
|
+
"source": {
|
175
|
+
"type": "git",
|
176
|
+
"url": "https://github.com/composer/semver.git",
|
177
|
+
"reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
|
178
|
+
},
|
179
|
+
"dist": {
|
180
|
+
"type": "zip",
|
181
|
+
"url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
|
182
|
+
"reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
|
183
|
+
"shasum": ""
|
184
|
+
},
|
185
|
+
"require": {
|
186
|
+
"php": "^5.3.2 || ^7.0 || ^8.0"
|
187
|
+
},
|
188
|
+
"require-dev": {
|
189
|
+
"phpstan/phpstan": "^0.12.54",
|
190
|
+
"symfony/phpunit-bridge": "^4.2 || ^5"
|
191
|
+
},
|
192
|
+
"type": "library",
|
193
|
+
"extra": {
|
194
|
+
"branch-alias": {
|
195
|
+
"dev-main": "3.x-dev"
|
196
|
+
}
|
197
|
+
},
|
198
|
+
"autoload": {
|
199
|
+
"psr-4": {
|
200
|
+
"Composer\\Semver\\": "src"
|
201
|
+
}
|
202
|
+
},
|
203
|
+
"notification-url": "https://packagist.org/downloads/",
|
204
|
+
"license": [
|
205
|
+
"MIT"
|
206
|
+
],
|
207
|
+
"authors": [
|
208
|
+
{
|
209
|
+
"name": "Nils Adermann",
|
210
|
+
"email": "naderman@naderman.de",
|
211
|
+
"homepage": "http://www.naderman.de"
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"name": "Jordi Boggiano",
|
215
|
+
"email": "j.boggiano@seld.be",
|
216
|
+
"homepage": "http://seld.be"
|
217
|
+
},
|
218
|
+
{
|
219
|
+
"name": "Rob Bast",
|
220
|
+
"email": "rob.bast@gmail.com",
|
221
|
+
"homepage": "http://robbast.nl"
|
222
|
+
}
|
223
|
+
],
|
224
|
+
"description": "Semver library that offers utilities, version constraint parsing and validation.",
|
225
|
+
"keywords": [
|
226
|
+
"semantic",
|
227
|
+
"semver",
|
228
|
+
"validation",
|
229
|
+
"versioning"
|
230
|
+
],
|
231
|
+
"funding": [
|
232
|
+
{
|
233
|
+
"url": "https://packagist.com",
|
234
|
+
"type": "custom"
|
235
|
+
},
|
236
|
+
{
|
237
|
+
"url": "https://github.com/composer",
|
238
|
+
"type": "github"
|
239
|
+
},
|
240
|
+
{
|
241
|
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
242
|
+
"type": "tidelift"
|
243
|
+
}
|
244
|
+
],
|
245
|
+
"time": "2020-11-13T08:59:24+00:00"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"name": "composer/spdx-licenses",
|
249
|
+
"version": "1.5.5",
|
250
|
+
"source": {
|
251
|
+
"type": "git",
|
252
|
+
"url": "https://github.com/composer/spdx-licenses.git",
|
253
|
+
"reference": "de30328a7af8680efdc03e396aad24befd513200"
|
254
|
+
},
|
255
|
+
"dist": {
|
256
|
+
"type": "zip",
|
257
|
+
"url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
|
258
|
+
"reference": "de30328a7af8680efdc03e396aad24befd513200",
|
259
|
+
"shasum": ""
|
260
|
+
},
|
261
|
+
"require": {
|
262
|
+
"php": "^5.3.2 || ^7.0 || ^8.0"
|
263
|
+
},
|
264
|
+
"require-dev": {
|
265
|
+
"phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
|
266
|
+
},
|
267
|
+
"type": "library",
|
268
|
+
"extra": {
|
269
|
+
"branch-alias": {
|
270
|
+
"dev-main": "1.x-dev"
|
271
|
+
}
|
272
|
+
},
|
273
|
+
"autoload": {
|
274
|
+
"psr-4": {
|
275
|
+
"Composer\\Spdx\\": "src"
|
276
|
+
}
|
277
|
+
},
|
278
|
+
"notification-url": "https://packagist.org/downloads/",
|
279
|
+
"license": [
|
280
|
+
"MIT"
|
281
|
+
],
|
282
|
+
"authors": [
|
283
|
+
{
|
284
|
+
"name": "Nils Adermann",
|
285
|
+
"email": "naderman@naderman.de",
|
286
|
+
"homepage": "http://www.naderman.de"
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"name": "Jordi Boggiano",
|
290
|
+
"email": "j.boggiano@seld.be",
|
291
|
+
"homepage": "http://seld.be"
|
292
|
+
},
|
293
|
+
{
|
294
|
+
"name": "Rob Bast",
|
295
|
+
"email": "rob.bast@gmail.com",
|
296
|
+
"homepage": "http://robbast.nl"
|
297
|
+
}
|
298
|
+
],
|
299
|
+
"description": "SPDX licenses list and validation library.",
|
300
|
+
"keywords": [
|
301
|
+
"license",
|
302
|
+
"spdx",
|
303
|
+
"validator"
|
304
|
+
],
|
305
|
+
"funding": [
|
306
|
+
{
|
307
|
+
"url": "https://packagist.com",
|
308
|
+
"type": "custom"
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"url": "https://github.com/composer",
|
312
|
+
"type": "github"
|
313
|
+
},
|
314
|
+
{
|
315
|
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
316
|
+
"type": "tidelift"
|
317
|
+
}
|
318
|
+
],
|
319
|
+
"time": "2020-12-03T16:04:16+00:00"
|
320
|
+
},
|
321
|
+
{
|
322
|
+
"name": "composer/xdebug-handler",
|
323
|
+
"version": "1.4.5",
|
324
|
+
"source": {
|
325
|
+
"type": "git",
|
326
|
+
"url": "https://github.com/composer/xdebug-handler.git",
|
327
|
+
"reference": "f28d44c286812c714741478d968104c5e604a1d4"
|
328
|
+
},
|
329
|
+
"dist": {
|
330
|
+
"type": "zip",
|
331
|
+
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
|
332
|
+
"reference": "f28d44c286812c714741478d968104c5e604a1d4",
|
333
|
+
"shasum": ""
|
334
|
+
},
|
335
|
+
"require": {
|
336
|
+
"php": "^5.3.2 || ^7.0 || ^8.0",
|
337
|
+
"psr/log": "^1.0"
|
338
|
+
},
|
339
|
+
"require-dev": {
|
340
|
+
"phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
|
341
|
+
},
|
342
|
+
"type": "library",
|
343
|
+
"autoload": {
|
344
|
+
"psr-4": {
|
345
|
+
"Composer\\XdebugHandler\\": "src"
|
346
|
+
}
|
347
|
+
},
|
348
|
+
"notification-url": "https://packagist.org/downloads/",
|
349
|
+
"license": [
|
350
|
+
"MIT"
|
351
|
+
],
|
352
|
+
"authors": [
|
353
|
+
{
|
354
|
+
"name": "John Stevenson",
|
355
|
+
"email": "john-stevenson@blueyonder.co.uk"
|
356
|
+
}
|
357
|
+
],
|
358
|
+
"description": "Restarts a process without Xdebug.",
|
359
|
+
"keywords": [
|
360
|
+
"Xdebug",
|
361
|
+
"performance"
|
362
|
+
],
|
363
|
+
"funding": [
|
364
|
+
{
|
365
|
+
"url": "https://packagist.com",
|
366
|
+
"type": "custom"
|
367
|
+
},
|
368
|
+
{
|
369
|
+
"url": "https://github.com/composer",
|
370
|
+
"type": "github"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
374
|
+
"type": "tidelift"
|
375
|
+
}
|
376
|
+
],
|
377
|
+
"time": "2020-11-13T08:04:11+00:00"
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"name": "justinrainbow/json-schema",
|
381
|
+
"version": "5.2.10",
|
382
|
+
"source": {
|
383
|
+
"type": "git",
|
384
|
+
"url": "https://github.com/justinrainbow/json-schema.git",
|
385
|
+
"reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
|
386
|
+
},
|
387
|
+
"dist": {
|
388
|
+
"type": "zip",
|
389
|
+
"url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
|
390
|
+
"reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
|
391
|
+
"shasum": ""
|
392
|
+
},
|
393
|
+
"require": {
|
394
|
+
"php": ">=5.3.3"
|
395
|
+
},
|
396
|
+
"require-dev": {
|
397
|
+
"friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
|
398
|
+
"json-schema/json-schema-test-suite": "1.2.0",
|
399
|
+
"phpunit/phpunit": "^4.8.35"
|
400
|
+
},
|
401
|
+
"bin": [
|
402
|
+
"bin/validate-json"
|
403
|
+
],
|
404
|
+
"type": "library",
|
405
|
+
"extra": {
|
406
|
+
"branch-alias": {
|
407
|
+
"dev-master": "5.0.x-dev"
|
408
|
+
}
|
409
|
+
},
|
410
|
+
"autoload": {
|
411
|
+
"psr-4": {
|
412
|
+
"JsonSchema\\": "src/JsonSchema/"
|
413
|
+
}
|
414
|
+
},
|
415
|
+
"notification-url": "https://packagist.org/downloads/",
|
416
|
+
"license": [
|
417
|
+
"MIT"
|
418
|
+
],
|
419
|
+
"authors": [
|
420
|
+
{
|
421
|
+
"name": "Bruno Prieto Reis",
|
422
|
+
"email": "bruno.p.reis@gmail.com"
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"name": "Justin Rainbow",
|
426
|
+
"email": "justin.rainbow@gmail.com"
|
427
|
+
},
|
428
|
+
{
|
429
|
+
"name": "Igor Wiedler",
|
430
|
+
"email": "igor@wiedler.ch"
|
431
|
+
},
|
432
|
+
{
|
433
|
+
"name": "Robert Schönthal",
|
434
|
+
"email": "seroscho@googlemail.com"
|
435
|
+
}
|
436
|
+
],
|
437
|
+
"description": "A library to validate a json schema.",
|
438
|
+
"homepage": "https://github.com/justinrainbow/json-schema",
|
439
|
+
"keywords": [
|
440
|
+
"json",
|
441
|
+
"schema"
|
442
|
+
],
|
443
|
+
"time": "2020-05-27T16:41:55+00:00"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"name": "psr/container",
|
447
|
+
"version": "1.0.0",
|
448
|
+
"source": {
|
449
|
+
"type": "git",
|
450
|
+
"url": "https://github.com/php-fig/container.git",
|
451
|
+
"reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
|
452
|
+
},
|
453
|
+
"dist": {
|
454
|
+
"type": "zip",
|
455
|
+
"url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
|
456
|
+
"reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
|
457
|
+
"shasum": ""
|
458
|
+
},
|
459
|
+
"require": {
|
460
|
+
"php": ">=5.3.0"
|
461
|
+
},
|
462
|
+
"type": "library",
|
463
|
+
"extra": {
|
464
|
+
"branch-alias": {
|
465
|
+
"dev-master": "1.0.x-dev"
|
466
|
+
}
|
467
|
+
},
|
468
|
+
"autoload": {
|
469
|
+
"psr-4": {
|
470
|
+
"Psr\\Container\\": "src/"
|
471
|
+
}
|
472
|
+
},
|
473
|
+
"notification-url": "https://packagist.org/downloads/",
|
474
|
+
"license": [
|
475
|
+
"MIT"
|
476
|
+
],
|
477
|
+
"authors": [
|
478
|
+
{
|
479
|
+
"name": "PHP-FIG",
|
480
|
+
"homepage": "http://www.php-fig.org/"
|
481
|
+
}
|
482
|
+
],
|
483
|
+
"description": "Common Container Interface (PHP FIG PSR-11)",
|
484
|
+
"homepage": "https://github.com/php-fig/container",
|
485
|
+
"keywords": [
|
486
|
+
"PSR-11",
|
487
|
+
"container",
|
488
|
+
"container-interface",
|
489
|
+
"container-interop",
|
490
|
+
"psr"
|
491
|
+
],
|
492
|
+
"time": "2017-02-14T16:28:37+00:00"
|
493
|
+
},
|
494
|
+
{
|
495
|
+
"name": "psr/log",
|
496
|
+
"version": "1.1.3",
|
497
|
+
"source": {
|
498
|
+
"type": "git",
|
499
|
+
"url": "https://github.com/php-fig/log.git",
|
500
|
+
"reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
|
501
|
+
},
|
502
|
+
"dist": {
|
503
|
+
"type": "zip",
|
504
|
+
"url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
|
505
|
+
"reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
|
506
|
+
"shasum": ""
|
507
|
+
},
|
508
|
+
"require": {
|
509
|
+
"php": ">=5.3.0"
|
510
|
+
},
|
511
|
+
"type": "library",
|
512
|
+
"extra": {
|
513
|
+
"branch-alias": {
|
514
|
+
"dev-master": "1.1.x-dev"
|
515
|
+
}
|
516
|
+
},
|
517
|
+
"autoload": {
|
518
|
+
"psr-4": {
|
519
|
+
"Psr\\Log\\": "Psr/Log/"
|
520
|
+
}
|
521
|
+
},
|
522
|
+
"notification-url": "https://packagist.org/downloads/",
|
523
|
+
"license": [
|
524
|
+
"MIT"
|
525
|
+
],
|
526
|
+
"authors": [
|
527
|
+
{
|
528
|
+
"name": "PHP-FIG",
|
529
|
+
"homepage": "http://www.php-fig.org/"
|
530
|
+
}
|
531
|
+
],
|
532
|
+
"description": "Common interface for logging libraries",
|
533
|
+
"homepage": "https://github.com/php-fig/log",
|
534
|
+
"keywords": [
|
535
|
+
"log",
|
536
|
+
"psr",
|
537
|
+
"psr-3"
|
538
|
+
],
|
539
|
+
"time": "2020-03-23T09:12:05+00:00"
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"name": "react/promise",
|
543
|
+
"version": "v2.8.0",
|
544
|
+
"source": {
|
545
|
+
"type": "git",
|
546
|
+
"url": "https://github.com/reactphp/promise.git",
|
547
|
+
"reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
|
548
|
+
},
|
549
|
+
"dist": {
|
550
|
+
"type": "zip",
|
551
|
+
"url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
|
552
|
+
"reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
|
553
|
+
"shasum": ""
|
554
|
+
},
|
555
|
+
"require": {
|
556
|
+
"php": ">=5.4.0"
|
557
|
+
},
|
558
|
+
"require-dev": {
|
559
|
+
"phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
|
560
|
+
},
|
561
|
+
"type": "library",
|
562
|
+
"autoload": {
|
563
|
+
"psr-4": {
|
564
|
+
"React\\Promise\\": "src/"
|
565
|
+
},
|
566
|
+
"files": [
|
567
|
+
"src/functions_include.php"
|
568
|
+
]
|
569
|
+
},
|
570
|
+
"notification-url": "https://packagist.org/downloads/",
|
571
|
+
"license": [
|
572
|
+
"MIT"
|
573
|
+
],
|
574
|
+
"authors": [
|
575
|
+
{
|
576
|
+
"name": "Jan Sorgalla",
|
577
|
+
"email": "jsorgalla@gmail.com"
|
578
|
+
}
|
579
|
+
],
|
580
|
+
"description": "A lightweight implementation of CommonJS Promises/A for PHP",
|
581
|
+
"keywords": [
|
582
|
+
"promise",
|
583
|
+
"promises"
|
584
|
+
],
|
585
|
+
"time": "2020-05-12T15:16:56+00:00"
|
586
|
+
},
|
587
|
+
{
|
588
|
+
"name": "seld/jsonlint",
|
589
|
+
"version": "1.8.3",
|
590
|
+
"source": {
|
591
|
+
"type": "git",
|
592
|
+
"url": "https://github.com/Seldaek/jsonlint.git",
|
593
|
+
"reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
|
594
|
+
},
|
595
|
+
"dist": {
|
596
|
+
"type": "zip",
|
597
|
+
"url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
|
598
|
+
"reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
|
599
|
+
"shasum": ""
|
600
|
+
},
|
601
|
+
"require": {
|
602
|
+
"php": "^5.3 || ^7.0 || ^8.0"
|
603
|
+
},
|
604
|
+
"require-dev": {
|
605
|
+
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
|
606
|
+
},
|
607
|
+
"bin": [
|
608
|
+
"bin/jsonlint"
|
609
|
+
],
|
610
|
+
"type": "library",
|
611
|
+
"autoload": {
|
612
|
+
"psr-4": {
|
613
|
+
"Seld\\JsonLint\\": "src/Seld/JsonLint/"
|
614
|
+
}
|
615
|
+
},
|
616
|
+
"notification-url": "https://packagist.org/downloads/",
|
617
|
+
"license": [
|
618
|
+
"MIT"
|
619
|
+
],
|
620
|
+
"authors": [
|
621
|
+
{
|
622
|
+
"name": "Jordi Boggiano",
|
623
|
+
"email": "j.boggiano@seld.be",
|
624
|
+
"homepage": "http://seld.be"
|
625
|
+
}
|
626
|
+
],
|
627
|
+
"description": "JSON Linter",
|
628
|
+
"keywords": [
|
629
|
+
"json",
|
630
|
+
"linter",
|
631
|
+
"parser",
|
632
|
+
"validator"
|
633
|
+
],
|
634
|
+
"funding": [
|
635
|
+
{
|
636
|
+
"url": "https://github.com/Seldaek",
|
637
|
+
"type": "github"
|
638
|
+
},
|
639
|
+
{
|
640
|
+
"url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
|
641
|
+
"type": "tidelift"
|
642
|
+
}
|
643
|
+
],
|
644
|
+
"time": "2020-11-11T09:19:24+00:00"
|
645
|
+
},
|
646
|
+
{
|
647
|
+
"name": "seld/phar-utils",
|
648
|
+
"version": "1.1.1",
|
649
|
+
"source": {
|
650
|
+
"type": "git",
|
651
|
+
"url": "https://github.com/Seldaek/phar-utils.git",
|
652
|
+
"reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
|
653
|
+
},
|
654
|
+
"dist": {
|
655
|
+
"type": "zip",
|
656
|
+
"url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
|
657
|
+
"reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
|
658
|
+
"shasum": ""
|
659
|
+
},
|
660
|
+
"require": {
|
661
|
+
"php": ">=5.3"
|
662
|
+
},
|
663
|
+
"type": "library",
|
664
|
+
"extra": {
|
665
|
+
"branch-alias": {
|
666
|
+
"dev-master": "1.x-dev"
|
667
|
+
}
|
668
|
+
},
|
669
|
+
"autoload": {
|
670
|
+
"psr-4": {
|
671
|
+
"Seld\\PharUtils\\": "src/"
|
672
|
+
}
|
673
|
+
},
|
674
|
+
"notification-url": "https://packagist.org/downloads/",
|
675
|
+
"license": [
|
676
|
+
"MIT"
|
677
|
+
],
|
678
|
+
"authors": [
|
679
|
+
{
|
680
|
+
"name": "Jordi Boggiano",
|
681
|
+
"email": "j.boggiano@seld.be"
|
682
|
+
}
|
683
|
+
],
|
684
|
+
"description": "PHAR file format utilities, for when PHP phars you up",
|
685
|
+
"keywords": [
|
686
|
+
"phar"
|
687
|
+
],
|
688
|
+
"time": "2020-07-07T18:42:57+00:00"
|
689
|
+
},
|
690
|
+
{
|
691
|
+
"name": "symfony/console",
|
692
|
+
"version": "v5.2.1",
|
693
|
+
"source": {
|
694
|
+
"type": "git",
|
695
|
+
"url": "https://github.com/symfony/console.git",
|
696
|
+
"reference": "47c02526c532fb381374dab26df05e7313978976"
|
697
|
+
},
|
698
|
+
"dist": {
|
699
|
+
"type": "zip",
|
700
|
+
"url": "https://api.github.com/repos/symfony/console/zipball/47c02526c532fb381374dab26df05e7313978976",
|
701
|
+
"reference": "47c02526c532fb381374dab26df05e7313978976",
|
702
|
+
"shasum": ""
|
703
|
+
},
|
704
|
+
"require": {
|
705
|
+
"php": ">=7.2.5",
|
706
|
+
"symfony/polyfill-mbstring": "~1.0",
|
707
|
+
"symfony/polyfill-php73": "^1.8",
|
708
|
+
"symfony/polyfill-php80": "^1.15",
|
709
|
+
"symfony/service-contracts": "^1.1|^2",
|
710
|
+
"symfony/string": "^5.1"
|
711
|
+
},
|
712
|
+
"conflict": {
|
713
|
+
"symfony/dependency-injection": "<4.4",
|
714
|
+
"symfony/dotenv": "<5.1",
|
715
|
+
"symfony/event-dispatcher": "<4.4",
|
716
|
+
"symfony/lock": "<4.4",
|
717
|
+
"symfony/process": "<4.4"
|
718
|
+
},
|
719
|
+
"provide": {
|
720
|
+
"psr/log-implementation": "1.0"
|
721
|
+
},
|
722
|
+
"require-dev": {
|
723
|
+
"psr/log": "~1.0",
|
724
|
+
"symfony/config": "^4.4|^5.0",
|
725
|
+
"symfony/dependency-injection": "^4.4|^5.0",
|
726
|
+
"symfony/event-dispatcher": "^4.4|^5.0",
|
727
|
+
"symfony/lock": "^4.4|^5.0",
|
728
|
+
"symfony/process": "^4.4|^5.0",
|
729
|
+
"symfony/var-dumper": "^4.4|^5.0"
|
730
|
+
},
|
731
|
+
"suggest": {
|
732
|
+
"psr/log": "For using the console logger",
|
733
|
+
"symfony/event-dispatcher": "",
|
734
|
+
"symfony/lock": "",
|
735
|
+
"symfony/process": ""
|
736
|
+
},
|
737
|
+
"type": "library",
|
738
|
+
"autoload": {
|
739
|
+
"psr-4": {
|
740
|
+
"Symfony\\Component\\Console\\": ""
|
741
|
+
},
|
742
|
+
"exclude-from-classmap": [
|
743
|
+
"/Tests/"
|
744
|
+
]
|
745
|
+
},
|
746
|
+
"notification-url": "https://packagist.org/downloads/",
|
747
|
+
"license": [
|
748
|
+
"MIT"
|
749
|
+
],
|
750
|
+
"authors": [
|
751
|
+
{
|
752
|
+
"name": "Fabien Potencier",
|
753
|
+
"email": "fabien@symfony.com"
|
754
|
+
},
|
755
|
+
{
|
756
|
+
"name": "Symfony Community",
|
757
|
+
"homepage": "https://symfony.com/contributors"
|
758
|
+
}
|
759
|
+
],
|
760
|
+
"description": "Symfony Console Component",
|
761
|
+
"homepage": "https://symfony.com",
|
762
|
+
"keywords": [
|
763
|
+
"cli",
|
764
|
+
"command line",
|
765
|
+
"console",
|
766
|
+
"terminal"
|
767
|
+
],
|
768
|
+
"funding": [
|
769
|
+
{
|
770
|
+
"url": "https://symfony.com/sponsor",
|
771
|
+
"type": "custom"
|
772
|
+
},
|
773
|
+
{
|
774
|
+
"url": "https://github.com/fabpot",
|
775
|
+
"type": "github"
|
776
|
+
},
|
777
|
+
{
|
778
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
779
|
+
"type": "tidelift"
|
780
|
+
}
|
781
|
+
],
|
782
|
+
"time": "2020-12-18T08:03:05+00:00"
|
783
|
+
},
|
784
|
+
{
|
785
|
+
"name": "symfony/filesystem",
|
786
|
+
"version": "v5.2.1",
|
787
|
+
"source": {
|
788
|
+
"type": "git",
|
789
|
+
"url": "https://github.com/symfony/filesystem.git",
|
790
|
+
"reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d"
|
791
|
+
},
|
792
|
+
"dist": {
|
793
|
+
"type": "zip",
|
794
|
+
"url": "https://api.github.com/repos/symfony/filesystem/zipball/fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
|
795
|
+
"reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
|
796
|
+
"shasum": ""
|
797
|
+
},
|
798
|
+
"require": {
|
799
|
+
"php": ">=7.2.5",
|
800
|
+
"symfony/polyfill-ctype": "~1.8"
|
801
|
+
},
|
802
|
+
"type": "library",
|
803
|
+
"autoload": {
|
804
|
+
"psr-4": {
|
805
|
+
"Symfony\\Component\\Filesystem\\": ""
|
806
|
+
},
|
807
|
+
"exclude-from-classmap": [
|
808
|
+
"/Tests/"
|
809
|
+
]
|
810
|
+
},
|
811
|
+
"notification-url": "https://packagist.org/downloads/",
|
812
|
+
"license": [
|
813
|
+
"MIT"
|
814
|
+
],
|
815
|
+
"authors": [
|
816
|
+
{
|
817
|
+
"name": "Fabien Potencier",
|
818
|
+
"email": "fabien@symfony.com"
|
819
|
+
},
|
820
|
+
{
|
821
|
+
"name": "Symfony Community",
|
822
|
+
"homepage": "https://symfony.com/contributors"
|
823
|
+
}
|
824
|
+
],
|
825
|
+
"description": "Symfony Filesystem Component",
|
826
|
+
"homepage": "https://symfony.com",
|
827
|
+
"funding": [
|
828
|
+
{
|
829
|
+
"url": "https://symfony.com/sponsor",
|
830
|
+
"type": "custom"
|
831
|
+
},
|
832
|
+
{
|
833
|
+
"url": "https://github.com/fabpot",
|
834
|
+
"type": "github"
|
835
|
+
},
|
836
|
+
{
|
837
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
838
|
+
"type": "tidelift"
|
839
|
+
}
|
840
|
+
],
|
841
|
+
"time": "2020-11-30T17:05:38+00:00"
|
842
|
+
},
|
843
|
+
{
|
844
|
+
"name": "symfony/finder",
|
845
|
+
"version": "v5.2.1",
|
846
|
+
"source": {
|
847
|
+
"type": "git",
|
848
|
+
"url": "https://github.com/symfony/finder.git",
|
849
|
+
"reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba"
|
850
|
+
},
|
851
|
+
"dist": {
|
852
|
+
"type": "zip",
|
853
|
+
"url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
|
854
|
+
"reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
|
855
|
+
"shasum": ""
|
856
|
+
},
|
857
|
+
"require": {
|
858
|
+
"php": ">=7.2.5"
|
859
|
+
},
|
860
|
+
"type": "library",
|
861
|
+
"autoload": {
|
862
|
+
"psr-4": {
|
863
|
+
"Symfony\\Component\\Finder\\": ""
|
864
|
+
},
|
865
|
+
"exclude-from-classmap": [
|
866
|
+
"/Tests/"
|
867
|
+
]
|
868
|
+
},
|
869
|
+
"notification-url": "https://packagist.org/downloads/",
|
870
|
+
"license": [
|
871
|
+
"MIT"
|
872
|
+
],
|
873
|
+
"authors": [
|
874
|
+
{
|
875
|
+
"name": "Fabien Potencier",
|
876
|
+
"email": "fabien@symfony.com"
|
877
|
+
},
|
878
|
+
{
|
879
|
+
"name": "Symfony Community",
|
880
|
+
"homepage": "https://symfony.com/contributors"
|
881
|
+
}
|
882
|
+
],
|
883
|
+
"description": "Symfony Finder Component",
|
884
|
+
"homepage": "https://symfony.com",
|
885
|
+
"funding": [
|
886
|
+
{
|
887
|
+
"url": "https://symfony.com/sponsor",
|
888
|
+
"type": "custom"
|
889
|
+
},
|
890
|
+
{
|
891
|
+
"url": "https://github.com/fabpot",
|
892
|
+
"type": "github"
|
893
|
+
},
|
894
|
+
{
|
895
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
896
|
+
"type": "tidelift"
|
897
|
+
}
|
898
|
+
],
|
899
|
+
"time": "2020-12-08T17:02:38+00:00"
|
900
|
+
},
|
901
|
+
{
|
902
|
+
"name": "symfony/polyfill-ctype",
|
903
|
+
"version": "v1.20.0",
|
904
|
+
"source": {
|
905
|
+
"type": "git",
|
906
|
+
"url": "https://github.com/symfony/polyfill-ctype.git",
|
907
|
+
"reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
|
908
|
+
},
|
909
|
+
"dist": {
|
910
|
+
"type": "zip",
|
911
|
+
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
|
912
|
+
"reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
|
913
|
+
"shasum": ""
|
914
|
+
},
|
915
|
+
"require": {
|
916
|
+
"php": ">=7.1"
|
917
|
+
},
|
918
|
+
"suggest": {
|
919
|
+
"ext-ctype": "For best performance"
|
920
|
+
},
|
921
|
+
"type": "library",
|
922
|
+
"extra": {
|
923
|
+
"branch-alias": {
|
924
|
+
"dev-main": "1.20-dev"
|
925
|
+
},
|
926
|
+
"thanks": {
|
927
|
+
"name": "symfony/polyfill",
|
928
|
+
"url": "https://github.com/symfony/polyfill"
|
929
|
+
}
|
930
|
+
},
|
931
|
+
"autoload": {
|
932
|
+
"psr-4": {
|
933
|
+
"Symfony\\Polyfill\\Ctype\\": ""
|
934
|
+
},
|
935
|
+
"files": [
|
936
|
+
"bootstrap.php"
|
937
|
+
]
|
938
|
+
},
|
939
|
+
"notification-url": "https://packagist.org/downloads/",
|
940
|
+
"license": [
|
941
|
+
"MIT"
|
942
|
+
],
|
943
|
+
"authors": [
|
944
|
+
{
|
945
|
+
"name": "Gert de Pagter",
|
946
|
+
"email": "BackEndTea@gmail.com"
|
947
|
+
},
|
948
|
+
{
|
949
|
+
"name": "Symfony Community",
|
950
|
+
"homepage": "https://symfony.com/contributors"
|
951
|
+
}
|
952
|
+
],
|
953
|
+
"description": "Symfony polyfill for ctype functions",
|
954
|
+
"homepage": "https://symfony.com",
|
955
|
+
"keywords": [
|
956
|
+
"compatibility",
|
957
|
+
"ctype",
|
958
|
+
"polyfill",
|
959
|
+
"portable"
|
960
|
+
],
|
961
|
+
"funding": [
|
962
|
+
{
|
963
|
+
"url": "https://symfony.com/sponsor",
|
964
|
+
"type": "custom"
|
965
|
+
},
|
966
|
+
{
|
967
|
+
"url": "https://github.com/fabpot",
|
968
|
+
"type": "github"
|
969
|
+
},
|
970
|
+
{
|
971
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
972
|
+
"type": "tidelift"
|
973
|
+
}
|
974
|
+
],
|
975
|
+
"time": "2020-10-23T14:02:19+00:00"
|
976
|
+
},
|
977
|
+
{
|
978
|
+
"name": "symfony/polyfill-intl-grapheme",
|
979
|
+
"version": "v1.20.0",
|
980
|
+
"source": {
|
981
|
+
"type": "git",
|
982
|
+
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
|
983
|
+
"reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
|
984
|
+
},
|
985
|
+
"dist": {
|
986
|
+
"type": "zip",
|
987
|
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
|
988
|
+
"reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
|
989
|
+
"shasum": ""
|
990
|
+
},
|
991
|
+
"require": {
|
992
|
+
"php": ">=7.1"
|
993
|
+
},
|
994
|
+
"suggest": {
|
995
|
+
"ext-intl": "For best performance"
|
996
|
+
},
|
997
|
+
"type": "library",
|
998
|
+
"extra": {
|
999
|
+
"branch-alias": {
|
1000
|
+
"dev-main": "1.20-dev"
|
1001
|
+
},
|
1002
|
+
"thanks": {
|
1003
|
+
"name": "symfony/polyfill",
|
1004
|
+
"url": "https://github.com/symfony/polyfill"
|
1005
|
+
}
|
1006
|
+
},
|
1007
|
+
"autoload": {
|
1008
|
+
"psr-4": {
|
1009
|
+
"Symfony\\Polyfill\\Intl\\Grapheme\\": ""
|
1010
|
+
},
|
1011
|
+
"files": [
|
1012
|
+
"bootstrap.php"
|
1013
|
+
]
|
1014
|
+
},
|
1015
|
+
"notification-url": "https://packagist.org/downloads/",
|
1016
|
+
"license": [
|
1017
|
+
"MIT"
|
1018
|
+
],
|
1019
|
+
"authors": [
|
1020
|
+
{
|
1021
|
+
"name": "Nicolas Grekas",
|
1022
|
+
"email": "p@tchwork.com"
|
1023
|
+
},
|
1024
|
+
{
|
1025
|
+
"name": "Symfony Community",
|
1026
|
+
"homepage": "https://symfony.com/contributors"
|
1027
|
+
}
|
1028
|
+
],
|
1029
|
+
"description": "Symfony polyfill for intl's grapheme_* functions",
|
1030
|
+
"homepage": "https://symfony.com",
|
1031
|
+
"keywords": [
|
1032
|
+
"compatibility",
|
1033
|
+
"grapheme",
|
1034
|
+
"intl",
|
1035
|
+
"polyfill",
|
1036
|
+
"portable",
|
1037
|
+
"shim"
|
1038
|
+
],
|
1039
|
+
"funding": [
|
1040
|
+
{
|
1041
|
+
"url": "https://symfony.com/sponsor",
|
1042
|
+
"type": "custom"
|
1043
|
+
},
|
1044
|
+
{
|
1045
|
+
"url": "https://github.com/fabpot",
|
1046
|
+
"type": "github"
|
1047
|
+
},
|
1048
|
+
{
|
1049
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
1050
|
+
"type": "tidelift"
|
1051
|
+
}
|
1052
|
+
],
|
1053
|
+
"time": "2020-10-23T14:02:19+00:00"
|
1054
|
+
},
|
1055
|
+
{
|
1056
|
+
"name": "symfony/polyfill-intl-normalizer",
|
1057
|
+
"version": "v1.20.0",
|
1058
|
+
"source": {
|
1059
|
+
"type": "git",
|
1060
|
+
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
|
1061
|
+
"reference": "727d1096295d807c309fb01a851577302394c897"
|
1062
|
+
},
|
1063
|
+
"dist": {
|
1064
|
+
"type": "zip",
|
1065
|
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
|
1066
|
+
"reference": "727d1096295d807c309fb01a851577302394c897",
|
1067
|
+
"shasum": ""
|
1068
|
+
},
|
1069
|
+
"require": {
|
1070
|
+
"php": ">=7.1"
|
1071
|
+
},
|
1072
|
+
"suggest": {
|
1073
|
+
"ext-intl": "For best performance"
|
1074
|
+
},
|
1075
|
+
"type": "library",
|
1076
|
+
"extra": {
|
1077
|
+
"branch-alias": {
|
1078
|
+
"dev-main": "1.20-dev"
|
1079
|
+
},
|
1080
|
+
"thanks": {
|
1081
|
+
"name": "symfony/polyfill",
|
1082
|
+
"url": "https://github.com/symfony/polyfill"
|
1083
|
+
}
|
1084
|
+
},
|
1085
|
+
"autoload": {
|
1086
|
+
"psr-4": {
|
1087
|
+
"Symfony\\Polyfill\\Intl\\Normalizer\\": ""
|
1088
|
+
},
|
1089
|
+
"files": [
|
1090
|
+
"bootstrap.php"
|
1091
|
+
],
|
1092
|
+
"classmap": [
|
1093
|
+
"Resources/stubs"
|
1094
|
+
]
|
1095
|
+
},
|
1096
|
+
"notification-url": "https://packagist.org/downloads/",
|
1097
|
+
"license": [
|
1098
|
+
"MIT"
|
1099
|
+
],
|
1100
|
+
"authors": [
|
1101
|
+
{
|
1102
|
+
"name": "Nicolas Grekas",
|
1103
|
+
"email": "p@tchwork.com"
|
1104
|
+
},
|
1105
|
+
{
|
1106
|
+
"name": "Symfony Community",
|
1107
|
+
"homepage": "https://symfony.com/contributors"
|
1108
|
+
}
|
1109
|
+
],
|
1110
|
+
"description": "Symfony polyfill for intl's Normalizer class and related functions",
|
1111
|
+
"homepage": "https://symfony.com",
|
1112
|
+
"keywords": [
|
1113
|
+
"compatibility",
|
1114
|
+
"intl",
|
1115
|
+
"normalizer",
|
1116
|
+
"polyfill",
|
1117
|
+
"portable",
|
1118
|
+
"shim"
|
1119
|
+
],
|
1120
|
+
"funding": [
|
1121
|
+
{
|
1122
|
+
"url": "https://symfony.com/sponsor",
|
1123
|
+
"type": "custom"
|
1124
|
+
},
|
1125
|
+
{
|
1126
|
+
"url": "https://github.com/fabpot",
|
1127
|
+
"type": "github"
|
1128
|
+
},
|
1129
|
+
{
|
1130
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
1131
|
+
"type": "tidelift"
|
1132
|
+
}
|
1133
|
+
],
|
1134
|
+
"time": "2020-10-23T14:02:19+00:00"
|
1135
|
+
},
|
1136
|
+
{
|
1137
|
+
"name": "symfony/polyfill-mbstring",
|
1138
|
+
"version": "v1.20.0",
|
1139
|
+
"source": {
|
1140
|
+
"type": "git",
|
1141
|
+
"url": "https://github.com/symfony/polyfill-mbstring.git",
|
1142
|
+
"reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
|
1143
|
+
},
|
1144
|
+
"dist": {
|
1145
|
+
"type": "zip",
|
1146
|
+
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
|
1147
|
+
"reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
|
1148
|
+
"shasum": ""
|
1149
|
+
},
|
1150
|
+
"require": {
|
1151
|
+
"php": ">=7.1"
|
1152
|
+
},
|
1153
|
+
"suggest": {
|
1154
|
+
"ext-mbstring": "For best performance"
|
1155
|
+
},
|
1156
|
+
"type": "library",
|
1157
|
+
"extra": {
|
1158
|
+
"branch-alias": {
|
1159
|
+
"dev-main": "1.20-dev"
|
1160
|
+
},
|
1161
|
+
"thanks": {
|
1162
|
+
"name": "symfony/polyfill",
|
1163
|
+
"url": "https://github.com/symfony/polyfill"
|
1164
|
+
}
|
1165
|
+
},
|
1166
|
+
"autoload": {
|
1167
|
+
"psr-4": {
|
1168
|
+
"Symfony\\Polyfill\\Mbstring\\": ""
|
1169
|
+
},
|
1170
|
+
"files": [
|
1171
|
+
"bootstrap.php"
|
1172
|
+
]
|
1173
|
+
},
|
1174
|
+
"notification-url": "https://packagist.org/downloads/",
|
1175
|
+
"license": [
|
1176
|
+
"MIT"
|
1177
|
+
],
|
1178
|
+
"authors": [
|
1179
|
+
{
|
1180
|
+
"name": "Nicolas Grekas",
|
1181
|
+
"email": "p@tchwork.com"
|
1182
|
+
},
|
1183
|
+
{
|
1184
|
+
"name": "Symfony Community",
|
1185
|
+
"homepage": "https://symfony.com/contributors"
|
1186
|
+
}
|
1187
|
+
],
|
1188
|
+
"description": "Symfony polyfill for the Mbstring extension",
|
1189
|
+
"homepage": "https://symfony.com",
|
1190
|
+
"keywords": [
|
1191
|
+
"compatibility",
|
1192
|
+
"mbstring",
|
1193
|
+
"polyfill",
|
1194
|
+
"portable",
|
1195
|
+
"shim"
|
1196
|
+
],
|
1197
|
+
"funding": [
|
1198
|
+
{
|
1199
|
+
"url": "https://symfony.com/sponsor",
|
1200
|
+
"type": "custom"
|
1201
|
+
},
|
1202
|
+
{
|
1203
|
+
"url": "https://github.com/fabpot",
|
1204
|
+
"type": "github"
|
1205
|
+
},
|
1206
|
+
{
|
1207
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
1208
|
+
"type": "tidelift"
|
1209
|
+
}
|
1210
|
+
],
|
1211
|
+
"time": "2020-10-23T14:02:19+00:00"
|
1212
|
+
},
|
1213
|
+
{
|
1214
|
+
"name": "symfony/polyfill-php73",
|
1215
|
+
"version": "v1.20.0",
|
1216
|
+
"source": {
|
1217
|
+
"type": "git",
|
1218
|
+
"url": "https://github.com/symfony/polyfill-php73.git",
|
1219
|
+
"reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
|
1220
|
+
},
|
1221
|
+
"dist": {
|
1222
|
+
"type": "zip",
|
1223
|
+
"url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
|
1224
|
+
"reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
|
1225
|
+
"shasum": ""
|
1226
|
+
},
|
1227
|
+
"require": {
|
1228
|
+
"php": ">=7.1"
|
1229
|
+
},
|
1230
|
+
"type": "library",
|
1231
|
+
"extra": {
|
1232
|
+
"branch-alias": {
|
1233
|
+
"dev-main": "1.20-dev"
|
1234
|
+
},
|
1235
|
+
"thanks": {
|
1236
|
+
"name": "symfony/polyfill",
|
1237
|
+
"url": "https://github.com/symfony/polyfill"
|
1238
|
+
}
|
1239
|
+
},
|
1240
|
+
"autoload": {
|
1241
|
+
"psr-4": {
|
1242
|
+
"Symfony\\Polyfill\\Php73\\": ""
|
1243
|
+
},
|
1244
|
+
"files": [
|
1245
|
+
"bootstrap.php"
|
1246
|
+
],
|
1247
|
+
"classmap": [
|
1248
|
+
"Resources/stubs"
|
1249
|
+
]
|
1250
|
+
},
|
1251
|
+
"notification-url": "https://packagist.org/downloads/",
|
1252
|
+
"license": [
|
1253
|
+
"MIT"
|
1254
|
+
],
|
1255
|
+
"authors": [
|
1256
|
+
{
|
1257
|
+
"name": "Nicolas Grekas",
|
1258
|
+
"email": "p@tchwork.com"
|
1259
|
+
},
|
1260
|
+
{
|
1261
|
+
"name": "Symfony Community",
|
1262
|
+
"homepage": "https://symfony.com/contributors"
|
1263
|
+
}
|
1264
|
+
],
|
1265
|
+
"description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
|
1266
|
+
"homepage": "https://symfony.com",
|
1267
|
+
"keywords": [
|
1268
|
+
"compatibility",
|
1269
|
+
"polyfill",
|
1270
|
+
"portable",
|
1271
|
+
"shim"
|
1272
|
+
],
|
1273
|
+
"funding": [
|
1274
|
+
{
|
1275
|
+
"url": "https://symfony.com/sponsor",
|
1276
|
+
"type": "custom"
|
1277
|
+
},
|
1278
|
+
{
|
1279
|
+
"url": "https://github.com/fabpot",
|
1280
|
+
"type": "github"
|
1281
|
+
},
|
1282
|
+
{
|
1283
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
1284
|
+
"type": "tidelift"
|
1285
|
+
}
|
1286
|
+
],
|
1287
|
+
"time": "2020-10-23T14:02:19+00:00"
|
1288
|
+
},
|
1289
|
+
{
|
1290
|
+
"name": "symfony/polyfill-php80",
|
1291
|
+
"version": "v1.20.0",
|
1292
|
+
"source": {
|
1293
|
+
"type": "git",
|
1294
|
+
"url": "https://github.com/symfony/polyfill-php80.git",
|
1295
|
+
"reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
|
1296
|
+
},
|
1297
|
+
"dist": {
|
1298
|
+
"type": "zip",
|
1299
|
+
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
|
1300
|
+
"reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
|
1301
|
+
"shasum": ""
|
1302
|
+
},
|
1303
|
+
"require": {
|
1304
|
+
"php": ">=7.1"
|
1305
|
+
},
|
1306
|
+
"type": "library",
|
1307
|
+
"extra": {
|
1308
|
+
"branch-alias": {
|
1309
|
+
"dev-main": "1.20-dev"
|
1310
|
+
},
|
1311
|
+
"thanks": {
|
1312
|
+
"name": "symfony/polyfill",
|
1313
|
+
"url": "https://github.com/symfony/polyfill"
|
1314
|
+
}
|
1315
|
+
},
|
1316
|
+
"autoload": {
|
1317
|
+
"psr-4": {
|
1318
|
+
"Symfony\\Polyfill\\Php80\\": ""
|
1319
|
+
},
|
1320
|
+
"files": [
|
1321
|
+
"bootstrap.php"
|
1322
|
+
],
|
1323
|
+
"classmap": [
|
1324
|
+
"Resources/stubs"
|
1325
|
+
]
|
1326
|
+
},
|
1327
|
+
"notification-url": "https://packagist.org/downloads/",
|
1328
|
+
"license": [
|
1329
|
+
"MIT"
|
1330
|
+
],
|
1331
|
+
"authors": [
|
1332
|
+
{
|
1333
|
+
"name": "Ion Bazan",
|
1334
|
+
"email": "ion.bazan@gmail.com"
|
1335
|
+
},
|
1336
|
+
{
|
1337
|
+
"name": "Nicolas Grekas",
|
1338
|
+
"email": "p@tchwork.com"
|
1339
|
+
},
|
1340
|
+
{
|
1341
|
+
"name": "Symfony Community",
|
1342
|
+
"homepage": "https://symfony.com/contributors"
|
1343
|
+
}
|
1344
|
+
],
|
1345
|
+
"description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
|
1346
|
+
"homepage": "https://symfony.com",
|
1347
|
+
"keywords": [
|
1348
|
+
"compatibility",
|
1349
|
+
"polyfill",
|
1350
|
+
"portable",
|
1351
|
+
"shim"
|
1352
|
+
],
|
1353
|
+
"funding": [
|
1354
|
+
{
|
1355
|
+
"url": "https://symfony.com/sponsor",
|
1356
|
+
"type": "custom"
|
1357
|
+
},
|
1358
|
+
{
|
1359
|
+
"url": "https://github.com/fabpot",
|
1360
|
+
"type": "github"
|
1361
|
+
},
|
1362
|
+
{
|
1363
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
1364
|
+
"type": "tidelift"
|
1365
|
+
}
|
1366
|
+
],
|
1367
|
+
"time": "2020-10-23T14:02:19+00:00"
|
1368
|
+
},
|
1369
|
+
{
|
1370
|
+
"name": "symfony/process",
|
1371
|
+
"version": "v5.2.1",
|
1372
|
+
"source": {
|
1373
|
+
"type": "git",
|
1374
|
+
"url": "https://github.com/symfony/process.git",
|
1375
|
+
"reference": "bd8815b8b6705298beaa384f04fabd459c10bedd"
|
1376
|
+
},
|
1377
|
+
"dist": {
|
1378
|
+
"type": "zip",
|
1379
|
+
"url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd",
|
1380
|
+
"reference": "bd8815b8b6705298beaa384f04fabd459c10bedd",
|
1381
|
+
"shasum": ""
|
1382
|
+
},
|
1383
|
+
"require": {
|
1384
|
+
"php": ">=7.2.5",
|
1385
|
+
"symfony/polyfill-php80": "^1.15"
|
1386
|
+
},
|
1387
|
+
"type": "library",
|
1388
|
+
"autoload": {
|
1389
|
+
"psr-4": {
|
1390
|
+
"Symfony\\Component\\Process\\": ""
|
1391
|
+
},
|
1392
|
+
"exclude-from-classmap": [
|
1393
|
+
"/Tests/"
|
1394
|
+
]
|
1395
|
+
},
|
1396
|
+
"notification-url": "https://packagist.org/downloads/",
|
1397
|
+
"license": [
|
1398
|
+
"MIT"
|
1399
|
+
],
|
1400
|
+
"authors": [
|
1401
|
+
{
|
1402
|
+
"name": "Fabien Potencier",
|
1403
|
+
"email": "fabien@symfony.com"
|
1404
|
+
},
|
1405
|
+
{
|
1406
|
+
"name": "Symfony Community",
|
1407
|
+
"homepage": "https://symfony.com/contributors"
|
1408
|
+
}
|
1409
|
+
],
|
1410
|
+
"description": "Symfony Process Component",
|
1411
|
+
"homepage": "https://symfony.com",
|
1412
|
+
"funding": [
|
1413
|
+
{
|
1414
|
+
"url": "https://symfony.com/sponsor",
|
1415
|
+
"type": "custom"
|
1416
|
+
},
|
1417
|
+
{
|
1418
|
+
"url": "https://github.com/fabpot",
|
1419
|
+
"type": "github"
|
1420
|
+
},
|
1421
|
+
{
|
1422
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
1423
|
+
"type": "tidelift"
|
1424
|
+
}
|
1425
|
+
],
|
1426
|
+
"time": "2020-12-08T17:03:37+00:00"
|
1427
|
+
},
|
1428
|
+
{
|
1429
|
+
"name": "symfony/service-contracts",
|
1430
|
+
"version": "v2.2.0",
|
1431
|
+
"source": {
|
1432
|
+
"type": "git",
|
1433
|
+
"url": "https://github.com/symfony/service-contracts.git",
|
1434
|
+
"reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
|
1435
|
+
},
|
1436
|
+
"dist": {
|
1437
|
+
"type": "zip",
|
1438
|
+
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
|
1439
|
+
"reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
|
1440
|
+
"shasum": ""
|
1441
|
+
},
|
1442
|
+
"require": {
|
1443
|
+
"php": ">=7.2.5",
|
1444
|
+
"psr/container": "^1.0"
|
1445
|
+
},
|
1446
|
+
"suggest": {
|
1447
|
+
"symfony/service-implementation": ""
|
1448
|
+
},
|
1449
|
+
"type": "library",
|
1450
|
+
"extra": {
|
1451
|
+
"branch-alias": {
|
1452
|
+
"dev-master": "2.2-dev"
|
1453
|
+
},
|
1454
|
+
"thanks": {
|
1455
|
+
"name": "symfony/contracts",
|
1456
|
+
"url": "https://github.com/symfony/contracts"
|
1457
|
+
}
|
1458
|
+
},
|
1459
|
+
"autoload": {
|
1460
|
+
"psr-4": {
|
1461
|
+
"Symfony\\Contracts\\Service\\": ""
|
1462
|
+
}
|
1463
|
+
},
|
1464
|
+
"notification-url": "https://packagist.org/downloads/",
|
1465
|
+
"license": [
|
1466
|
+
"MIT"
|
1467
|
+
],
|
1468
|
+
"authors": [
|
1469
|
+
{
|
1470
|
+
"name": "Nicolas Grekas",
|
1471
|
+
"email": "p@tchwork.com"
|
1472
|
+
},
|
1473
|
+
{
|
1474
|
+
"name": "Symfony Community",
|
1475
|
+
"homepage": "https://symfony.com/contributors"
|
1476
|
+
}
|
1477
|
+
],
|
1478
|
+
"description": "Generic abstractions related to writing services",
|
1479
|
+
"homepage": "https://symfony.com",
|
1480
|
+
"keywords": [
|
1481
|
+
"abstractions",
|
1482
|
+
"contracts",
|
1483
|
+
"decoupling",
|
1484
|
+
"interfaces",
|
1485
|
+
"interoperability",
|
1486
|
+
"standards"
|
1487
|
+
],
|
1488
|
+
"funding": [
|
1489
|
+
{
|
1490
|
+
"url": "https://symfony.com/sponsor",
|
1491
|
+
"type": "custom"
|
1492
|
+
},
|
1493
|
+
{
|
1494
|
+
"url": "https://github.com/fabpot",
|
1495
|
+
"type": "github"
|
1496
|
+
},
|
1497
|
+
{
|
1498
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
1499
|
+
"type": "tidelift"
|
1500
|
+
}
|
1501
|
+
],
|
1502
|
+
"time": "2020-09-07T11:33:47+00:00"
|
1503
|
+
},
|
1504
|
+
{
|
1505
|
+
"name": "symfony/string",
|
1506
|
+
"version": "v5.2.1",
|
1507
|
+
"source": {
|
1508
|
+
"type": "git",
|
1509
|
+
"url": "https://github.com/symfony/string.git",
|
1510
|
+
"reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed"
|
1511
|
+
},
|
1512
|
+
"dist": {
|
1513
|
+
"type": "zip",
|
1514
|
+
"url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
|
1515
|
+
"reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
|
1516
|
+
"shasum": ""
|
1517
|
+
},
|
1518
|
+
"require": {
|
1519
|
+
"php": ">=7.2.5",
|
1520
|
+
"symfony/polyfill-ctype": "~1.8",
|
1521
|
+
"symfony/polyfill-intl-grapheme": "~1.0",
|
1522
|
+
"symfony/polyfill-intl-normalizer": "~1.0",
|
1523
|
+
"symfony/polyfill-mbstring": "~1.0",
|
1524
|
+
"symfony/polyfill-php80": "~1.15"
|
1525
|
+
},
|
1526
|
+
"require-dev": {
|
1527
|
+
"symfony/error-handler": "^4.4|^5.0",
|
1528
|
+
"symfony/http-client": "^4.4|^5.0",
|
1529
|
+
"symfony/translation-contracts": "^1.1|^2",
|
1530
|
+
"symfony/var-exporter": "^4.4|^5.0"
|
1531
|
+
},
|
1532
|
+
"type": "library",
|
1533
|
+
"autoload": {
|
1534
|
+
"psr-4": {
|
1535
|
+
"Symfony\\Component\\String\\": ""
|
1536
|
+
},
|
1537
|
+
"files": [
|
1538
|
+
"Resources/functions.php"
|
1539
|
+
],
|
1540
|
+
"exclude-from-classmap": [
|
1541
|
+
"/Tests/"
|
1542
|
+
]
|
1543
|
+
},
|
1544
|
+
"notification-url": "https://packagist.org/downloads/",
|
1545
|
+
"license": [
|
1546
|
+
"MIT"
|
1547
|
+
],
|
1548
|
+
"authors": [
|
1549
|
+
{
|
1550
|
+
"name": "Nicolas Grekas",
|
1551
|
+
"email": "p@tchwork.com"
|
1552
|
+
},
|
1553
|
+
{
|
1554
|
+
"name": "Symfony Community",
|
1555
|
+
"homepage": "https://symfony.com/contributors"
|
1556
|
+
}
|
1557
|
+
],
|
1558
|
+
"description": "Symfony String component",
|
1559
|
+
"homepage": "https://symfony.com",
|
1560
|
+
"keywords": [
|
1561
|
+
"grapheme",
|
1562
|
+
"i18n",
|
1563
|
+
"string",
|
1564
|
+
"unicode",
|
1565
|
+
"utf-8",
|
1566
|
+
"utf8"
|
1567
|
+
],
|
1568
|
+
"funding": [
|
1569
|
+
{
|
1570
|
+
"url": "https://symfony.com/sponsor",
|
1571
|
+
"type": "custom"
|
1572
|
+
},
|
1573
|
+
{
|
1574
|
+
"url": "https://github.com/fabpot",
|
1575
|
+
"type": "github"
|
1576
|
+
},
|
1577
|
+
{
|
1578
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
1579
|
+
"type": "tidelift"
|
1580
|
+
}
|
1581
|
+
],
|
1582
|
+
"time": "2020-12-05T07:33:16+00:00"
|
1583
|
+
}
|
1584
|
+
],
|
1585
|
+
"packages-dev": [
|
1586
|
+
{
|
1587
|
+
"name": "doctrine/annotations",
|
1588
|
+
"version": "1.11.1",
|
1589
|
+
"source": {
|
1590
|
+
"type": "git",
|
1591
|
+
"url": "https://github.com/doctrine/annotations.git",
|
1592
|
+
"reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
|
1593
|
+
},
|
1594
|
+
"dist": {
|
1595
|
+
"type": "zip",
|
1596
|
+
"url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
|
1597
|
+
"reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
|
1598
|
+
"shasum": ""
|
1599
|
+
},
|
1600
|
+
"require": {
|
1601
|
+
"doctrine/lexer": "1.*",
|
1602
|
+
"ext-tokenizer": "*",
|
1603
|
+
"php": "^7.1 || ^8.0"
|
1604
|
+
},
|
1605
|
+
"require-dev": {
|
1606
|
+
"doctrine/cache": "1.*",
|
1607
|
+
"doctrine/coding-standard": "^6.0 || ^8.1",
|
1608
|
+
"phpstan/phpstan": "^0.12.20",
|
1609
|
+
"phpunit/phpunit": "^7.5 || ^9.1.5"
|
1610
|
+
},
|
1611
|
+
"type": "library",
|
1612
|
+
"extra": {
|
1613
|
+
"branch-alias": {
|
1614
|
+
"dev-master": "1.11.x-dev"
|
1615
|
+
}
|
1616
|
+
},
|
1617
|
+
"autoload": {
|
1618
|
+
"psr-4": {
|
1619
|
+
"Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
|
1620
|
+
}
|
1621
|
+
},
|
1622
|
+
"notification-url": "https://packagist.org/downloads/",
|
1623
|
+
"license": [
|
1624
|
+
"MIT"
|
1625
|
+
],
|
1626
|
+
"authors": [
|
1627
|
+
{
|
1628
|
+
"name": "Guilherme Blanco",
|
1629
|
+
"email": "guilhermeblanco@gmail.com"
|
1630
|
+
},
|
1631
|
+
{
|
1632
|
+
"name": "Roman Borschel",
|
1633
|
+
"email": "roman@code-factory.org"
|
1634
|
+
},
|
1635
|
+
{
|
1636
|
+
"name": "Benjamin Eberlei",
|
1637
|
+
"email": "kontakt@beberlei.de"
|
1638
|
+
},
|
1639
|
+
{
|
1640
|
+
"name": "Jonathan Wage",
|
1641
|
+
"email": "jonwage@gmail.com"
|
1642
|
+
},
|
1643
|
+
{
|
1644
|
+
"name": "Johannes Schmitt",
|
1645
|
+
"email": "schmittjoh@gmail.com"
|
1646
|
+
}
|
1647
|
+
],
|
1648
|
+
"description": "Docblock Annotations Parser",
|
1649
|
+
"homepage": "https://www.doctrine-project.org/projects/annotations.html",
|
1650
|
+
"keywords": [
|
1651
|
+
"annotations",
|
1652
|
+
"docblock",
|
1653
|
+
"parser"
|
1654
|
+
],
|
1655
|
+
"time": "2020-10-26T10:28:16+00:00"
|
1656
|
+
},
|
1657
|
+
{
|
1658
|
+
"name": "doctrine/lexer",
|
1659
|
+
"version": "1.2.1",
|
1660
|
+
"source": {
|
1661
|
+
"type": "git",
|
1662
|
+
"url": "https://github.com/doctrine/lexer.git",
|
1663
|
+
"reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
|
1664
|
+
},
|
1665
|
+
"dist": {
|
1666
|
+
"type": "zip",
|
1667
|
+
"url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
|
1668
|
+
"reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
|
1669
|
+
"shasum": ""
|
1670
|
+
},
|
1671
|
+
"require": {
|
1672
|
+
"php": "^7.2 || ^8.0"
|
1673
|
+
},
|
1674
|
+
"require-dev": {
|
1675
|
+
"doctrine/coding-standard": "^6.0",
|
1676
|
+
"phpstan/phpstan": "^0.11.8",
|
1677
|
+
"phpunit/phpunit": "^8.2"
|
1678
|
+
},
|
1679
|
+
"type": "library",
|
1680
|
+
"extra": {
|
1681
|
+
"branch-alias": {
|
1682
|
+
"dev-master": "1.2.x-dev"
|
1683
|
+
}
|
1684
|
+
},
|
1685
|
+
"autoload": {
|
1686
|
+
"psr-4": {
|
1687
|
+
"Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
|
1688
|
+
}
|
1689
|
+
},
|
1690
|
+
"notification-url": "https://packagist.org/downloads/",
|
1691
|
+
"license": [
|
1692
|
+
"MIT"
|
1693
|
+
],
|
1694
|
+
"authors": [
|
1695
|
+
{
|
1696
|
+
"name": "Guilherme Blanco",
|
1697
|
+
"email": "guilhermeblanco@gmail.com"
|
1698
|
+
},
|
1699
|
+
{
|
1700
|
+
"name": "Roman Borschel",
|
1701
|
+
"email": "roman@code-factory.org"
|
1702
|
+
},
|
1703
|
+
{
|
1704
|
+
"name": "Johannes Schmitt",
|
1705
|
+
"email": "schmittjoh@gmail.com"
|
1706
|
+
}
|
1707
|
+
],
|
1708
|
+
"description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
|
1709
|
+
"homepage": "https://www.doctrine-project.org/projects/lexer.html",
|
1710
|
+
"keywords": [
|
1711
|
+
"annotations",
|
1712
|
+
"docblock",
|
1713
|
+
"lexer",
|
1714
|
+
"parser",
|
1715
|
+
"php"
|
1716
|
+
],
|
1717
|
+
"funding": [
|
1718
|
+
{
|
1719
|
+
"url": "https://www.doctrine-project.org/sponsorship.html",
|
1720
|
+
"type": "custom"
|
1721
|
+
},
|
1722
|
+
{
|
1723
|
+
"url": "https://www.patreon.com/phpdoctrine",
|
1724
|
+
"type": "patreon"
|
1725
|
+
},
|
1726
|
+
{
|
1727
|
+
"url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
|
1728
|
+
"type": "tidelift"
|
1729
|
+
}
|
1730
|
+
],
|
1731
|
+
"time": "2020-05-25T17:44:05+00:00"
|
1732
|
+
},
|
1733
|
+
{
|
1734
|
+
"name": "friendsofphp/php-cs-fixer",
|
1735
|
+
"version": "v2.17.3",
|
1736
|
+
"source": {
|
1737
|
+
"type": "git",
|
1738
|
+
"url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
|
1739
|
+
"reference": "bd32f5dd72cdfc7b53f54077f980e144bfa2f595"
|
1740
|
+
},
|
1741
|
+
"dist": {
|
1742
|
+
"type": "zip",
|
1743
|
+
"url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/bd32f5dd72cdfc7b53f54077f980e144bfa2f595",
|
1744
|
+
"reference": "bd32f5dd72cdfc7b53f54077f980e144bfa2f595",
|
1745
|
+
"shasum": ""
|
1746
|
+
},
|
1747
|
+
"require": {
|
1748
|
+
"composer/semver": "^1.4 || ^2.0 || ^3.0",
|
1749
|
+
"composer/xdebug-handler": "^1.2",
|
1750
|
+
"doctrine/annotations": "^1.2",
|
1751
|
+
"ext-json": "*",
|
1752
|
+
"ext-tokenizer": "*",
|
1753
|
+
"php": "^5.6 || ^7.0 || ^8.0",
|
1754
|
+
"php-cs-fixer/diff": "^1.3",
|
1755
|
+
"symfony/console": "^3.4.43 || ^4.1.6 || ^5.0",
|
1756
|
+
"symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
|
1757
|
+
"symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
|
1758
|
+
"symfony/finder": "^3.0 || ^4.0 || ^5.0",
|
1759
|
+
"symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
|
1760
|
+
"symfony/polyfill-php70": "^1.0",
|
1761
|
+
"symfony/polyfill-php72": "^1.4",
|
1762
|
+
"symfony/process": "^3.0 || ^4.0 || ^5.0",
|
1763
|
+
"symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
|
1764
|
+
},
|
1765
|
+
"require-dev": {
|
1766
|
+
"johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
|
1767
|
+
"justinrainbow/json-schema": "^5.0",
|
1768
|
+
"keradus/cli-executor": "^1.4",
|
1769
|
+
"mikey179/vfsstream": "^1.6",
|
1770
|
+
"php-coveralls/php-coveralls": "^2.4.2",
|
1771
|
+
"php-cs-fixer/accessible-object": "^1.0",
|
1772
|
+
"php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
|
1773
|
+
"php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
|
1774
|
+
"phpspec/prophecy-phpunit": "^1.1 || ^2.0",
|
1775
|
+
"phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.13 || ^9.4.4 <9.5",
|
1776
|
+
"phpunitgoodpractices/polyfill": "^1.5",
|
1777
|
+
"phpunitgoodpractices/traits": "^1.9.1",
|
1778
|
+
"sanmai/phpunit-legacy-adapter": "^6.4 || ^8.2.1",
|
1779
|
+
"symfony/phpunit-bridge": "^5.1",
|
1780
|
+
"symfony/yaml": "^3.0 || ^4.0 || ^5.0"
|
1781
|
+
},
|
1782
|
+
"suggest": {
|
1783
|
+
"ext-dom": "For handling output formats in XML",
|
1784
|
+
"ext-mbstring": "For handling non-UTF8 characters.",
|
1785
|
+
"php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
|
1786
|
+
"php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
|
1787
|
+
"symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
|
1788
|
+
},
|
1789
|
+
"bin": [
|
1790
|
+
"php-cs-fixer"
|
1791
|
+
],
|
1792
|
+
"type": "application",
|
1793
|
+
"autoload": {
|
1794
|
+
"psr-4": {
|
1795
|
+
"PhpCsFixer\\": "src/"
|
1796
|
+
},
|
1797
|
+
"classmap": [
|
1798
|
+
"tests/Test/AbstractFixerTestCase.php",
|
1799
|
+
"tests/Test/AbstractIntegrationCaseFactory.php",
|
1800
|
+
"tests/Test/AbstractIntegrationTestCase.php",
|
1801
|
+
"tests/Test/Assert/AssertTokensTrait.php",
|
1802
|
+
"tests/Test/IntegrationCase.php",
|
1803
|
+
"tests/Test/IntegrationCaseFactory.php",
|
1804
|
+
"tests/Test/IntegrationCaseFactoryInterface.php",
|
1805
|
+
"tests/Test/InternalIntegrationCaseFactory.php",
|
1806
|
+
"tests/Test/IsIdenticalConstraint.php",
|
1807
|
+
"tests/TestCase.php"
|
1808
|
+
]
|
1809
|
+
},
|
1810
|
+
"notification-url": "https://packagist.org/downloads/",
|
1811
|
+
"license": [
|
1812
|
+
"MIT"
|
1813
|
+
],
|
1814
|
+
"authors": [
|
1815
|
+
{
|
1816
|
+
"name": "Fabien Potencier",
|
1817
|
+
"email": "fabien@symfony.com"
|
1818
|
+
},
|
1819
|
+
{
|
1820
|
+
"name": "Dariusz Rumiński",
|
1821
|
+
"email": "dariusz.ruminski@gmail.com"
|
1822
|
+
}
|
1823
|
+
],
|
1824
|
+
"description": "A tool to automatically fix PHP code style",
|
1825
|
+
"funding": [
|
1826
|
+
{
|
1827
|
+
"url": "https://github.com/keradus",
|
1828
|
+
"type": "github"
|
1829
|
+
}
|
1830
|
+
],
|
1831
|
+
"time": "2020-12-24T11:14:44+00:00"
|
1832
|
+
},
|
1833
|
+
{
|
1834
|
+
"name": "php-cs-fixer/diff",
|
1835
|
+
"version": "v1.3.1",
|
1836
|
+
"source": {
|
1837
|
+
"type": "git",
|
1838
|
+
"url": "https://github.com/PHP-CS-Fixer/diff.git",
|
1839
|
+
"reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759"
|
1840
|
+
},
|
1841
|
+
"dist": {
|
1842
|
+
"type": "zip",
|
1843
|
+
"url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759",
|
1844
|
+
"reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759",
|
1845
|
+
"shasum": ""
|
1846
|
+
},
|
1847
|
+
"require": {
|
1848
|
+
"php": "^5.6 || ^7.0 || ^8.0"
|
1849
|
+
},
|
1850
|
+
"require-dev": {
|
1851
|
+
"phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0",
|
1852
|
+
"symfony/process": "^3.3"
|
1853
|
+
},
|
1854
|
+
"type": "library",
|
1855
|
+
"autoload": {
|
1856
|
+
"classmap": [
|
1857
|
+
"src/"
|
1858
|
+
]
|
1859
|
+
},
|
1860
|
+
"notification-url": "https://packagist.org/downloads/",
|
1861
|
+
"license": [
|
1862
|
+
"BSD-3-Clause"
|
1863
|
+
],
|
1864
|
+
"authors": [
|
1865
|
+
{
|
1866
|
+
"name": "Sebastian Bergmann",
|
1867
|
+
"email": "sebastian@phpunit.de"
|
1868
|
+
},
|
1869
|
+
{
|
1870
|
+
"name": "Kore Nordmann",
|
1871
|
+
"email": "mail@kore-nordmann.de"
|
1872
|
+
},
|
1873
|
+
{
|
1874
|
+
"name": "SpacePossum"
|
1875
|
+
}
|
1876
|
+
],
|
1877
|
+
"description": "sebastian/diff v2 backport support for PHP5.6",
|
1878
|
+
"homepage": "https://github.com/PHP-CS-Fixer",
|
1879
|
+
"keywords": [
|
1880
|
+
"diff"
|
1881
|
+
],
|
1882
|
+
"time": "2020-10-14T08:39:05+00:00"
|
1883
|
+
},
|
1884
|
+
{
|
1885
|
+
"name": "phpstan/phpstan",
|
1886
|
+
"version": "0.12.64",
|
1887
|
+
"source": {
|
1888
|
+
"type": "git",
|
1889
|
+
"url": "https://github.com/phpstan/phpstan.git",
|
1890
|
+
"reference": "23eb1cb7ae125f45f1d0e48051bcf67a9a9b08aa"
|
1891
|
+
},
|
1892
|
+
"dist": {
|
1893
|
+
"type": "zip",
|
1894
|
+
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/23eb1cb7ae125f45f1d0e48051bcf67a9a9b08aa",
|
1895
|
+
"reference": "23eb1cb7ae125f45f1d0e48051bcf67a9a9b08aa",
|
1896
|
+
"shasum": ""
|
1897
|
+
},
|
1898
|
+
"require": {
|
1899
|
+
"php": "^7.1|^8.0"
|
1900
|
+
},
|
1901
|
+
"conflict": {
|
1902
|
+
"phpstan/phpstan-shim": "*"
|
1903
|
+
},
|
1904
|
+
"bin": [
|
1905
|
+
"phpstan",
|
1906
|
+
"phpstan.phar"
|
1907
|
+
],
|
1908
|
+
"type": "library",
|
1909
|
+
"extra": {
|
1910
|
+
"branch-alias": {
|
1911
|
+
"dev-master": "0.12-dev"
|
1912
|
+
}
|
1913
|
+
},
|
1914
|
+
"autoload": {
|
1915
|
+
"files": [
|
1916
|
+
"bootstrap.php"
|
1917
|
+
]
|
1918
|
+
},
|
1919
|
+
"notification-url": "https://packagist.org/downloads/",
|
1920
|
+
"license": [
|
1921
|
+
"MIT"
|
1922
|
+
],
|
1923
|
+
"description": "PHPStan - PHP Static Analysis Tool",
|
1924
|
+
"funding": [
|
1925
|
+
{
|
1926
|
+
"url": "https://github.com/ondrejmirtes",
|
1927
|
+
"type": "github"
|
1928
|
+
},
|
1929
|
+
{
|
1930
|
+
"url": "https://www.patreon.com/phpstan",
|
1931
|
+
"type": "patreon"
|
1932
|
+
},
|
1933
|
+
{
|
1934
|
+
"url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
|
1935
|
+
"type": "tidelift"
|
1936
|
+
}
|
1937
|
+
],
|
1938
|
+
"time": "2020-12-21T11:59:02+00:00"
|
1939
|
+
},
|
1940
|
+
{
|
1941
|
+
"name": "psr/event-dispatcher",
|
1942
|
+
"version": "1.0.0",
|
1943
|
+
"source": {
|
1944
|
+
"type": "git",
|
1945
|
+
"url": "https://github.com/php-fig/event-dispatcher.git",
|
1946
|
+
"reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
|
1947
|
+
},
|
1948
|
+
"dist": {
|
1949
|
+
"type": "zip",
|
1950
|
+
"url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
|
1951
|
+
"reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
|
1952
|
+
"shasum": ""
|
1953
|
+
},
|
1954
|
+
"require": {
|
1955
|
+
"php": ">=7.2.0"
|
1956
|
+
},
|
1957
|
+
"type": "library",
|
1958
|
+
"extra": {
|
1959
|
+
"branch-alias": {
|
1960
|
+
"dev-master": "1.0.x-dev"
|
1961
|
+
}
|
1962
|
+
},
|
1963
|
+
"autoload": {
|
1964
|
+
"psr-4": {
|
1965
|
+
"Psr\\EventDispatcher\\": "src/"
|
1966
|
+
}
|
1967
|
+
},
|
1968
|
+
"notification-url": "https://packagist.org/downloads/",
|
1969
|
+
"license": [
|
1970
|
+
"MIT"
|
1971
|
+
],
|
1972
|
+
"authors": [
|
1973
|
+
{
|
1974
|
+
"name": "PHP-FIG",
|
1975
|
+
"homepage": "http://www.php-fig.org/"
|
1976
|
+
}
|
1977
|
+
],
|
1978
|
+
"description": "Standard interfaces for event handling.",
|
1979
|
+
"keywords": [
|
1980
|
+
"events",
|
1981
|
+
"psr",
|
1982
|
+
"psr-14"
|
1983
|
+
],
|
1984
|
+
"time": "2019-01-08T18:20:26+00:00"
|
1985
|
+
},
|
1986
|
+
{
|
1987
|
+
"name": "symfony/deprecation-contracts",
|
1988
|
+
"version": "v2.2.0",
|
1989
|
+
"source": {
|
1990
|
+
"type": "git",
|
1991
|
+
"url": "https://github.com/symfony/deprecation-contracts.git",
|
1992
|
+
"reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
|
1993
|
+
},
|
1994
|
+
"dist": {
|
1995
|
+
"type": "zip",
|
1996
|
+
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
|
1997
|
+
"reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
|
1998
|
+
"shasum": ""
|
1999
|
+
},
|
2000
|
+
"require": {
|
2001
|
+
"php": ">=7.1"
|
2002
|
+
},
|
2003
|
+
"type": "library",
|
2004
|
+
"extra": {
|
2005
|
+
"branch-alias": {
|
2006
|
+
"dev-master": "2.2-dev"
|
2007
|
+
},
|
2008
|
+
"thanks": {
|
2009
|
+
"name": "symfony/contracts",
|
2010
|
+
"url": "https://github.com/symfony/contracts"
|
2011
|
+
}
|
2012
|
+
},
|
2013
|
+
"autoload": {
|
2014
|
+
"files": [
|
2015
|
+
"function.php"
|
2016
|
+
]
|
2017
|
+
},
|
2018
|
+
"notification-url": "https://packagist.org/downloads/",
|
2019
|
+
"license": [
|
2020
|
+
"MIT"
|
2021
|
+
],
|
2022
|
+
"authors": [
|
2023
|
+
{
|
2024
|
+
"name": "Nicolas Grekas",
|
2025
|
+
"email": "p@tchwork.com"
|
2026
|
+
},
|
2027
|
+
{
|
2028
|
+
"name": "Symfony Community",
|
2029
|
+
"homepage": "https://symfony.com/contributors"
|
2030
|
+
}
|
2031
|
+
],
|
2032
|
+
"description": "A generic function and convention to trigger deprecation notices",
|
2033
|
+
"homepage": "https://symfony.com",
|
2034
|
+
"funding": [
|
2035
|
+
{
|
2036
|
+
"url": "https://symfony.com/sponsor",
|
2037
|
+
"type": "custom"
|
2038
|
+
},
|
2039
|
+
{
|
2040
|
+
"url": "https://github.com/fabpot",
|
2041
|
+
"type": "github"
|
2042
|
+
},
|
2043
|
+
{
|
2044
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
2045
|
+
"type": "tidelift"
|
2046
|
+
}
|
2047
|
+
],
|
2048
|
+
"time": "2020-09-07T11:33:47+00:00"
|
2049
|
+
},
|
2050
|
+
{
|
2051
|
+
"name": "symfony/event-dispatcher",
|
2052
|
+
"version": "v5.2.1",
|
2053
|
+
"source": {
|
2054
|
+
"type": "git",
|
2055
|
+
"url": "https://github.com/symfony/event-dispatcher.git",
|
2056
|
+
"reference": "1c93f7a1dff592c252574c79a8635a8a80856042"
|
2057
|
+
},
|
2058
|
+
"dist": {
|
2059
|
+
"type": "zip",
|
2060
|
+
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042",
|
2061
|
+
"reference": "1c93f7a1dff592c252574c79a8635a8a80856042",
|
2062
|
+
"shasum": ""
|
2063
|
+
},
|
2064
|
+
"require": {
|
2065
|
+
"php": ">=7.2.5",
|
2066
|
+
"symfony/deprecation-contracts": "^2.1",
|
2067
|
+
"symfony/event-dispatcher-contracts": "^2",
|
2068
|
+
"symfony/polyfill-php80": "^1.15"
|
2069
|
+
},
|
2070
|
+
"conflict": {
|
2071
|
+
"symfony/dependency-injection": "<4.4"
|
2072
|
+
},
|
2073
|
+
"provide": {
|
2074
|
+
"psr/event-dispatcher-implementation": "1.0",
|
2075
|
+
"symfony/event-dispatcher-implementation": "2.0"
|
2076
|
+
},
|
2077
|
+
"require-dev": {
|
2078
|
+
"psr/log": "~1.0",
|
2079
|
+
"symfony/config": "^4.4|^5.0",
|
2080
|
+
"symfony/dependency-injection": "^4.4|^5.0",
|
2081
|
+
"symfony/error-handler": "^4.4|^5.0",
|
2082
|
+
"symfony/expression-language": "^4.4|^5.0",
|
2083
|
+
"symfony/http-foundation": "^4.4|^5.0",
|
2084
|
+
"symfony/service-contracts": "^1.1|^2",
|
2085
|
+
"symfony/stopwatch": "^4.4|^5.0"
|
2086
|
+
},
|
2087
|
+
"suggest": {
|
2088
|
+
"symfony/dependency-injection": "",
|
2089
|
+
"symfony/http-kernel": ""
|
2090
|
+
},
|
2091
|
+
"type": "library",
|
2092
|
+
"autoload": {
|
2093
|
+
"psr-4": {
|
2094
|
+
"Symfony\\Component\\EventDispatcher\\": ""
|
2095
|
+
},
|
2096
|
+
"exclude-from-classmap": [
|
2097
|
+
"/Tests/"
|
2098
|
+
]
|
2099
|
+
},
|
2100
|
+
"notification-url": "https://packagist.org/downloads/",
|
2101
|
+
"license": [
|
2102
|
+
"MIT"
|
2103
|
+
],
|
2104
|
+
"authors": [
|
2105
|
+
{
|
2106
|
+
"name": "Fabien Potencier",
|
2107
|
+
"email": "fabien@symfony.com"
|
2108
|
+
},
|
2109
|
+
{
|
2110
|
+
"name": "Symfony Community",
|
2111
|
+
"homepage": "https://symfony.com/contributors"
|
2112
|
+
}
|
2113
|
+
],
|
2114
|
+
"description": "Symfony EventDispatcher Component",
|
2115
|
+
"homepage": "https://symfony.com",
|
2116
|
+
"funding": [
|
2117
|
+
{
|
2118
|
+
"url": "https://symfony.com/sponsor",
|
2119
|
+
"type": "custom"
|
2120
|
+
},
|
2121
|
+
{
|
2122
|
+
"url": "https://github.com/fabpot",
|
2123
|
+
"type": "github"
|
2124
|
+
},
|
2125
|
+
{
|
2126
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
2127
|
+
"type": "tidelift"
|
2128
|
+
}
|
2129
|
+
],
|
2130
|
+
"time": "2020-12-18T08:03:05+00:00"
|
2131
|
+
},
|
2132
|
+
{
|
2133
|
+
"name": "symfony/event-dispatcher-contracts",
|
2134
|
+
"version": "v2.2.0",
|
2135
|
+
"source": {
|
2136
|
+
"type": "git",
|
2137
|
+
"url": "https://github.com/symfony/event-dispatcher-contracts.git",
|
2138
|
+
"reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
|
2139
|
+
},
|
2140
|
+
"dist": {
|
2141
|
+
"type": "zip",
|
2142
|
+
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
|
2143
|
+
"reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
|
2144
|
+
"shasum": ""
|
2145
|
+
},
|
2146
|
+
"require": {
|
2147
|
+
"php": ">=7.2.5",
|
2148
|
+
"psr/event-dispatcher": "^1"
|
2149
|
+
},
|
2150
|
+
"suggest": {
|
2151
|
+
"symfony/event-dispatcher-implementation": ""
|
2152
|
+
},
|
2153
|
+
"type": "library",
|
2154
|
+
"extra": {
|
2155
|
+
"branch-alias": {
|
2156
|
+
"dev-master": "2.2-dev"
|
2157
|
+
},
|
2158
|
+
"thanks": {
|
2159
|
+
"name": "symfony/contracts",
|
2160
|
+
"url": "https://github.com/symfony/contracts"
|
2161
|
+
}
|
2162
|
+
},
|
2163
|
+
"autoload": {
|
2164
|
+
"psr-4": {
|
2165
|
+
"Symfony\\Contracts\\EventDispatcher\\": ""
|
2166
|
+
}
|
2167
|
+
},
|
2168
|
+
"notification-url": "https://packagist.org/downloads/",
|
2169
|
+
"license": [
|
2170
|
+
"MIT"
|
2171
|
+
],
|
2172
|
+
"authors": [
|
2173
|
+
{
|
2174
|
+
"name": "Nicolas Grekas",
|
2175
|
+
"email": "p@tchwork.com"
|
2176
|
+
},
|
2177
|
+
{
|
2178
|
+
"name": "Symfony Community",
|
2179
|
+
"homepage": "https://symfony.com/contributors"
|
2180
|
+
}
|
2181
|
+
],
|
2182
|
+
"description": "Generic abstractions related to dispatching event",
|
2183
|
+
"homepage": "https://symfony.com",
|
2184
|
+
"keywords": [
|
2185
|
+
"abstractions",
|
2186
|
+
"contracts",
|
2187
|
+
"decoupling",
|
2188
|
+
"interfaces",
|
2189
|
+
"interoperability",
|
2190
|
+
"standards"
|
2191
|
+
],
|
2192
|
+
"funding": [
|
2193
|
+
{
|
2194
|
+
"url": "https://symfony.com/sponsor",
|
2195
|
+
"type": "custom"
|
2196
|
+
},
|
2197
|
+
{
|
2198
|
+
"url": "https://github.com/fabpot",
|
2199
|
+
"type": "github"
|
2200
|
+
},
|
2201
|
+
{
|
2202
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
2203
|
+
"type": "tidelift"
|
2204
|
+
}
|
2205
|
+
],
|
2206
|
+
"time": "2020-09-07T11:33:47+00:00"
|
2207
|
+
},
|
2208
|
+
{
|
2209
|
+
"name": "symfony/options-resolver",
|
2210
|
+
"version": "v5.2.1",
|
2211
|
+
"source": {
|
2212
|
+
"type": "git",
|
2213
|
+
"url": "https://github.com/symfony/options-resolver.git",
|
2214
|
+
"reference": "87a2a4a766244e796dd9cb9d6f58c123358cd986"
|
2215
|
+
},
|
2216
|
+
"dist": {
|
2217
|
+
"type": "zip",
|
2218
|
+
"url": "https://api.github.com/repos/symfony/options-resolver/zipball/87a2a4a766244e796dd9cb9d6f58c123358cd986",
|
2219
|
+
"reference": "87a2a4a766244e796dd9cb9d6f58c123358cd986",
|
2220
|
+
"shasum": ""
|
2221
|
+
},
|
2222
|
+
"require": {
|
2223
|
+
"php": ">=7.2.5",
|
2224
|
+
"symfony/deprecation-contracts": "^2.1",
|
2225
|
+
"symfony/polyfill-php73": "~1.0",
|
2226
|
+
"symfony/polyfill-php80": "^1.15"
|
2227
|
+
},
|
2228
|
+
"type": "library",
|
2229
|
+
"autoload": {
|
2230
|
+
"psr-4": {
|
2231
|
+
"Symfony\\Component\\OptionsResolver\\": ""
|
2232
|
+
},
|
2233
|
+
"exclude-from-classmap": [
|
2234
|
+
"/Tests/"
|
2235
|
+
]
|
2236
|
+
},
|
2237
|
+
"notification-url": "https://packagist.org/downloads/",
|
2238
|
+
"license": [
|
2239
|
+
"MIT"
|
2240
|
+
],
|
2241
|
+
"authors": [
|
2242
|
+
{
|
2243
|
+
"name": "Fabien Potencier",
|
2244
|
+
"email": "fabien@symfony.com"
|
2245
|
+
},
|
2246
|
+
{
|
2247
|
+
"name": "Symfony Community",
|
2248
|
+
"homepage": "https://symfony.com/contributors"
|
2249
|
+
}
|
2250
|
+
],
|
2251
|
+
"description": "Symfony OptionsResolver Component",
|
2252
|
+
"homepage": "https://symfony.com",
|
2253
|
+
"keywords": [
|
2254
|
+
"config",
|
2255
|
+
"configuration",
|
2256
|
+
"options"
|
2257
|
+
],
|
2258
|
+
"funding": [
|
2259
|
+
{
|
2260
|
+
"url": "https://symfony.com/sponsor",
|
2261
|
+
"type": "custom"
|
2262
|
+
},
|
2263
|
+
{
|
2264
|
+
"url": "https://github.com/fabpot",
|
2265
|
+
"type": "github"
|
2266
|
+
},
|
2267
|
+
{
|
2268
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
2269
|
+
"type": "tidelift"
|
2270
|
+
}
|
2271
|
+
],
|
2272
|
+
"time": "2020-10-24T12:08:07+00:00"
|
2273
|
+
},
|
2274
|
+
{
|
2275
|
+
"name": "symfony/polyfill-php70",
|
2276
|
+
"version": "v1.20.0",
|
2277
|
+
"source": {
|
2278
|
+
"type": "git",
|
2279
|
+
"url": "https://github.com/symfony/polyfill-php70.git",
|
2280
|
+
"reference": "5f03a781d984aae42cebd18e7912fa80f02ee644"
|
2281
|
+
},
|
2282
|
+
"dist": {
|
2283
|
+
"type": "zip",
|
2284
|
+
"url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644",
|
2285
|
+
"reference": "5f03a781d984aae42cebd18e7912fa80f02ee644",
|
2286
|
+
"shasum": ""
|
2287
|
+
},
|
2288
|
+
"require": {
|
2289
|
+
"php": ">=7.1"
|
2290
|
+
},
|
2291
|
+
"type": "metapackage",
|
2292
|
+
"extra": {
|
2293
|
+
"branch-alias": {
|
2294
|
+
"dev-main": "1.20-dev"
|
2295
|
+
},
|
2296
|
+
"thanks": {
|
2297
|
+
"name": "symfony/polyfill",
|
2298
|
+
"url": "https://github.com/symfony/polyfill"
|
2299
|
+
}
|
2300
|
+
},
|
2301
|
+
"notification-url": "https://packagist.org/downloads/",
|
2302
|
+
"license": [
|
2303
|
+
"MIT"
|
2304
|
+
],
|
2305
|
+
"authors": [
|
2306
|
+
{
|
2307
|
+
"name": "Nicolas Grekas",
|
2308
|
+
"email": "p@tchwork.com"
|
2309
|
+
},
|
2310
|
+
{
|
2311
|
+
"name": "Symfony Community",
|
2312
|
+
"homepage": "https://symfony.com/contributors"
|
2313
|
+
}
|
2314
|
+
],
|
2315
|
+
"description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
|
2316
|
+
"homepage": "https://symfony.com",
|
2317
|
+
"keywords": [
|
2318
|
+
"compatibility",
|
2319
|
+
"polyfill",
|
2320
|
+
"portable",
|
2321
|
+
"shim"
|
2322
|
+
],
|
2323
|
+
"funding": [
|
2324
|
+
{
|
2325
|
+
"url": "https://symfony.com/sponsor",
|
2326
|
+
"type": "custom"
|
2327
|
+
},
|
2328
|
+
{
|
2329
|
+
"url": "https://github.com/fabpot",
|
2330
|
+
"type": "github"
|
2331
|
+
},
|
2332
|
+
{
|
2333
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
2334
|
+
"type": "tidelift"
|
2335
|
+
}
|
2336
|
+
],
|
2337
|
+
"time": "2020-10-23T14:02:19+00:00"
|
2338
|
+
},
|
2339
|
+
{
|
2340
|
+
"name": "symfony/polyfill-php72",
|
2341
|
+
"version": "v1.20.0",
|
2342
|
+
"source": {
|
2343
|
+
"type": "git",
|
2344
|
+
"url": "https://github.com/symfony/polyfill-php72.git",
|
2345
|
+
"reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
|
2346
|
+
},
|
2347
|
+
"dist": {
|
2348
|
+
"type": "zip",
|
2349
|
+
"url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
|
2350
|
+
"reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
|
2351
|
+
"shasum": ""
|
2352
|
+
},
|
2353
|
+
"require": {
|
2354
|
+
"php": ">=7.1"
|
2355
|
+
},
|
2356
|
+
"type": "library",
|
2357
|
+
"extra": {
|
2358
|
+
"branch-alias": {
|
2359
|
+
"dev-main": "1.20-dev"
|
2360
|
+
},
|
2361
|
+
"thanks": {
|
2362
|
+
"name": "symfony/polyfill",
|
2363
|
+
"url": "https://github.com/symfony/polyfill"
|
2364
|
+
}
|
2365
|
+
},
|
2366
|
+
"autoload": {
|
2367
|
+
"psr-4": {
|
2368
|
+
"Symfony\\Polyfill\\Php72\\": ""
|
2369
|
+
},
|
2370
|
+
"files": [
|
2371
|
+
"bootstrap.php"
|
2372
|
+
]
|
2373
|
+
},
|
2374
|
+
"notification-url": "https://packagist.org/downloads/",
|
2375
|
+
"license": [
|
2376
|
+
"MIT"
|
2377
|
+
],
|
2378
|
+
"authors": [
|
2379
|
+
{
|
2380
|
+
"name": "Nicolas Grekas",
|
2381
|
+
"email": "p@tchwork.com"
|
2382
|
+
},
|
2383
|
+
{
|
2384
|
+
"name": "Symfony Community",
|
2385
|
+
"homepage": "https://symfony.com/contributors"
|
2386
|
+
}
|
2387
|
+
],
|
2388
|
+
"description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
|
2389
|
+
"homepage": "https://symfony.com",
|
2390
|
+
"keywords": [
|
2391
|
+
"compatibility",
|
2392
|
+
"polyfill",
|
2393
|
+
"portable",
|
2394
|
+
"shim"
|
2395
|
+
],
|
2396
|
+
"funding": [
|
2397
|
+
{
|
2398
|
+
"url": "https://symfony.com/sponsor",
|
2399
|
+
"type": "custom"
|
2400
|
+
},
|
2401
|
+
{
|
2402
|
+
"url": "https://github.com/fabpot",
|
2403
|
+
"type": "github"
|
2404
|
+
},
|
2405
|
+
{
|
2406
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
2407
|
+
"type": "tidelift"
|
2408
|
+
}
|
2409
|
+
],
|
2410
|
+
"time": "2020-10-23T14:02:19+00:00"
|
2411
|
+
},
|
2412
|
+
{
|
2413
|
+
"name": "symfony/stopwatch",
|
2414
|
+
"version": "v5.2.1",
|
2415
|
+
"source": {
|
2416
|
+
"type": "git",
|
2417
|
+
"url": "https://github.com/symfony/stopwatch.git",
|
2418
|
+
"reference": "2b105c0354f39a63038a1d8bf776ee92852813af"
|
2419
|
+
},
|
2420
|
+
"dist": {
|
2421
|
+
"type": "zip",
|
2422
|
+
"url": "https://api.github.com/repos/symfony/stopwatch/zipball/2b105c0354f39a63038a1d8bf776ee92852813af",
|
2423
|
+
"reference": "2b105c0354f39a63038a1d8bf776ee92852813af",
|
2424
|
+
"shasum": ""
|
2425
|
+
},
|
2426
|
+
"require": {
|
2427
|
+
"php": ">=7.2.5",
|
2428
|
+
"symfony/service-contracts": "^1.0|^2"
|
2429
|
+
},
|
2430
|
+
"type": "library",
|
2431
|
+
"autoload": {
|
2432
|
+
"psr-4": {
|
2433
|
+
"Symfony\\Component\\Stopwatch\\": ""
|
2434
|
+
},
|
2435
|
+
"exclude-from-classmap": [
|
2436
|
+
"/Tests/"
|
2437
|
+
]
|
2438
|
+
},
|
2439
|
+
"notification-url": "https://packagist.org/downloads/",
|
2440
|
+
"license": [
|
2441
|
+
"MIT"
|
2442
|
+
],
|
2443
|
+
"authors": [
|
2444
|
+
{
|
2445
|
+
"name": "Fabien Potencier",
|
2446
|
+
"email": "fabien@symfony.com"
|
2447
|
+
},
|
2448
|
+
{
|
2449
|
+
"name": "Symfony Community",
|
2450
|
+
"homepage": "https://symfony.com/contributors"
|
2451
|
+
}
|
2452
|
+
],
|
2453
|
+
"description": "Symfony Stopwatch Component",
|
2454
|
+
"homepage": "https://symfony.com",
|
2455
|
+
"funding": [
|
2456
|
+
{
|
2457
|
+
"url": "https://symfony.com/sponsor",
|
2458
|
+
"type": "custom"
|
2459
|
+
},
|
2460
|
+
{
|
2461
|
+
"url": "https://github.com/fabpot",
|
2462
|
+
"type": "github"
|
2463
|
+
},
|
2464
|
+
{
|
2465
|
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
2466
|
+
"type": "tidelift"
|
2467
|
+
}
|
2468
|
+
],
|
2469
|
+
"time": "2020-11-01T16:14:45+00:00"
|
2470
|
+
}
|
2471
|
+
],
|
2472
|
+
"aliases": [],
|
2473
|
+
"minimum-stability": "stable",
|
2474
|
+
"stability-flags": [],
|
2475
|
+
"prefer-stable": false,
|
2476
|
+
"prefer-lowest": false,
|
2477
|
+
"platform": {
|
2478
|
+
"php": "^7.4",
|
2479
|
+
"ext-json": "*"
|
2480
|
+
},
|
2481
|
+
"platform-dev": [],
|
2482
|
+
"plugin-api-version": "1.1.0"
|
2483
|
+
}
|