dependabot-composer 0.128.2 → 0.129.0

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