dependabot-core 0.88.3 → 0.89.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/helpers/test/run.rb +3 -0
  4. data/lib/dependabot/file_fetchers.rb +0 -2
  5. data/lib/dependabot/file_parsers.rb +0 -2
  6. data/lib/dependabot/file_updaters.rb +0 -2
  7. data/lib/dependabot/file_updaters/go/dep/lockfile_updater.rb +11 -8
  8. data/lib/dependabot/metadata_finders.rb +0 -2
  9. data/lib/dependabot/shared_helpers.rb +47 -24
  10. data/lib/dependabot/update_checkers.rb +0 -2
  11. data/lib/dependabot/update_checkers/go/dep/version_resolver.rb +11 -7
  12. data/lib/dependabot/utils.rb +0 -4
  13. data/lib/dependabot/version.rb +1 -1
  14. metadata +2 -25
  15. data/helpers/php/.php_cs +0 -34
  16. data/helpers/php/bin/run.php +0 -84
  17. data/helpers/php/composer.json +0 -14
  18. data/helpers/php/composer.lock +0 -1528
  19. data/helpers/php/composer.phar +0 -0
  20. data/helpers/php/setup.sh +0 -4
  21. data/helpers/php/src/DependabotInstallationManager.php +0 -61
  22. data/helpers/php/src/DependabotPluginManager.php +0 -23
  23. data/helpers/php/src/ExceptionIO.php +0 -25
  24. data/helpers/php/src/Hasher.php +0 -21
  25. data/helpers/php/src/UpdateChecker.php +0 -123
  26. data/helpers/php/src/Updater.php +0 -97
  27. data/lib/dependabot/file_fetchers/php/composer.rb +0 -131
  28. data/lib/dependabot/file_parsers/php/composer.rb +0 -177
  29. data/lib/dependabot/file_updaters/php/composer.rb +0 -78
  30. data/lib/dependabot/file_updaters/php/composer/lockfile_updater.rb +0 -269
  31. data/lib/dependabot/file_updaters/php/composer/manifest_updater.rb +0 -70
  32. data/lib/dependabot/metadata_finders/php/composer.rb +0 -66
  33. data/lib/dependabot/update_checkers/php/composer.rb +0 -175
  34. data/lib/dependabot/update_checkers/php/composer/requirements_updater.rb +0 -258
  35. data/lib/dependabot/update_checkers/php/composer/version_resolver.rb +0 -216
  36. data/lib/dependabot/utils/php/requirement.rb +0 -97
  37. data/lib/dependabot/utils/php/version.rb +0 -24
@@ -1,84 +0,0 @@
1
- <?php
2
-
3
- declare(strict_types=1);
4
-
5
- namespace Dependabot\PHP;
6
-
7
- require __DIR__ . '/../vendor/autoload.php';
8
-
9
- // Get details of the process to run from STDIN. It will have a `function`
10
- // and an `args` method, as passed in by UpdateCheckers::Php
11
- $request = json_decode(file_get_contents('php://stdin'), true);
12
-
13
- // Increase the default memory limit. Calling `composer update` is otherwise
14
- // vulnerable to scenarios where there are unconstrained versions, resulting in
15
- // it checking huge numbers of dependency combinations and causing OOM issues.
16
- // This logic is a duplicate of the logic found in Composer
17
- $memoryInBytes = function ($value) {
18
- $unit = strtolower(substr($value, -1, 1));
19
- $value = (int) $value;
20
- switch ($unit) {
21
- case 'g':
22
- $value *= 1024;
23
- // no break (cumulative multiplier)
24
- case 'm':
25
- $value *= 1024;
26
- // no break (cumulative multiplier)
27
- case 'k':
28
- $value *= 1024;
29
- }
30
-
31
- return $value;
32
- };
33
-
34
- $memoryLimit = trim(ini_get('memory_limit'));
35
- // Increase memory_limit if it is lower than 1900MB
36
- if ($memoryLimit != -1 && $memoryInBytes($memoryLimit) < 1024 * 1024 * 1900) {
37
- ini_set('memory_limit', '1900M');
38
- }
39
-
40
- // Set user defined memory limit
41
- if ($memoryLimit = getenv('COMPOSER_MEMORY_LIMIT')) {
42
- ini_set('memory_limit', $memoryLimit);
43
- }
44
- unset($memoryInBytes, $memoryLimit);
45
-
46
- date_default_timezone_set('Europe/London');
47
-
48
- // This storage is freed on error (case of allowed memory exhausted)
49
- $memory = str_repeat('*', 1024 * 1024);
50
-
51
- register_shutdown_function(function (): void {
52
- $memory = null;
53
- $error = error_get_last();
54
- if (null !== $error) {
55
- fwrite(STDOUT, json_encode(['error' => $error['message']]));
56
- }
57
- });
58
-
59
- try {
60
- switch ($request['function']) {
61
- case 'update':
62
- $updatedFiles = Updater::update($request['args']);
63
- fwrite(STDOUT, json_encode(['result' => $updatedFiles]));
64
- error_clear_last();
65
- break;
66
- case 'get_latest_resolvable_version':
67
- $latestVersion = UpdateChecker::getLatestResolvableVersion($request['args']);
68
- fwrite(STDOUT, json_encode(['result' => $latestVersion]));
69
- error_clear_last();
70
- break;
71
- case 'get_content_hash':
72
- $content_hash = Hasher::getContentHash($request['args']);
73
- fwrite(STDOUT, json_encode(['result' => $content_hash]));
74
- error_clear_last();
75
- break;
76
- default:
77
- fwrite(STDOUT, '{"error": "Invalid function ' . $request['function'] . '" }');
78
- exit(1);
79
- }
80
- } catch (\Exception $e) {
81
- fwrite(STDOUT, json_encode(['error' => $e->getMessage()]));
82
- error_clear_last();
83
- exit(1);
84
- }
@@ -1,14 +0,0 @@
1
- {
2
- "require": {
3
- "composer/composer": "1.8.0",
4
- "php": "^7.1"
5
- },
6
- "require-dev": {
7
- "friendsofphp/php-cs-fixer": "^2.9"
8
- },
9
- "autoload": {
10
- "psr-4": {
11
- "Dependabot\\PHP\\": "src/"
12
- }
13
- }
14
- }
@@ -1,1528 +0,0 @@
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": "766c33e53f8c659066a2cdd06ee3223b",
8
- "packages": [
9
- {
10
- "name": "composer/ca-bundle",
11
- "version": "1.1.3",
12
- "source": {
13
- "type": "git",
14
- "url": "https://github.com/composer/ca-bundle.git",
15
- "reference": "8afa52cd417f4ec417b4bfe86b68106538a87660"
16
- },
17
- "dist": {
18
- "type": "zip",
19
- "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8afa52cd417f4ec417b4bfe86b68106538a87660",
20
- "reference": "8afa52cd417f4ec417b4bfe86b68106538a87660",
21
- "shasum": ""
22
- },
23
- "require": {
24
- "ext-openssl": "*",
25
- "ext-pcre": "*",
26
- "php": "^5.3.2 || ^7.0"
27
- },
28
- "require-dev": {
29
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
30
- "psr/log": "^1.0",
31
- "symfony/process": "^2.5 || ^3.0 || ^4.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
- "time": "2018-10-18T06:09:13+00:00"
64
- },
65
- {
66
- "name": "composer/composer",
67
- "version": "1.8.0",
68
- "source": {
69
- "type": "git",
70
- "url": "https://github.com/composer/composer.git",
71
- "reference": "d8aef3af866b28786ce9b8647e52c42496436669"
72
- },
73
- "dist": {
74
- "type": "zip",
75
- "url": "https://api.github.com/repos/composer/composer/zipball/d8aef3af866b28786ce9b8647e52c42496436669",
76
- "reference": "d8aef3af866b28786ce9b8647e52c42496436669",
77
- "shasum": ""
78
- },
79
- "require": {
80
- "composer/ca-bundle": "^1.0",
81
- "composer/semver": "^1.0",
82
- "composer/spdx-licenses": "^1.2",
83
- "composer/xdebug-handler": "^1.1",
84
- "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
85
- "php": "^5.3.2 || ^7.0",
86
- "psr/log": "^1.0",
87
- "seld/jsonlint": "^1.4",
88
- "seld/phar-utils": "^1.0",
89
- "symfony/console": "^2.7 || ^3.0 || ^4.0",
90
- "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
91
- "symfony/finder": "^2.7 || ^3.0 || ^4.0",
92
- "symfony/process": "^2.7 || ^3.0 || ^4.0"
93
- },
94
- "conflict": {
95
- "symfony/console": "2.8.38"
96
- },
97
- "require-dev": {
98
- "phpunit/phpunit": "^4.8.35 || ^5.7",
99
- "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
100
- },
101
- "suggest": {
102
- "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
103
- "ext-zip": "Enabling the zip extension allows you to unzip archives",
104
- "ext-zlib": "Allow gzip compression of HTTP requests"
105
- },
106
- "bin": [
107
- "bin/composer"
108
- ],
109
- "type": "library",
110
- "extra": {
111
- "branch-alias": {
112
- "dev-master": "1.8-dev"
113
- }
114
- },
115
- "autoload": {
116
- "psr-4": {
117
- "Composer\\": "src/Composer"
118
- }
119
- },
120
- "notification-url": "https://packagist.org/downloads/",
121
- "license": [
122
- "MIT"
123
- ],
124
- "authors": [
125
- {
126
- "name": "Nils Adermann",
127
- "email": "naderman@naderman.de",
128
- "homepage": "http://www.naderman.de"
129
- },
130
- {
131
- "name": "Jordi Boggiano",
132
- "email": "j.boggiano@seld.be",
133
- "homepage": "http://seld.be"
134
- }
135
- ],
136
- "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
137
- "homepage": "https://getcomposer.org/",
138
- "keywords": [
139
- "autoload",
140
- "dependency",
141
- "package"
142
- ],
143
- "time": "2018-12-03T09:31:16+00:00"
144
- },
145
- {
146
- "name": "composer/semver",
147
- "version": "1.4.2",
148
- "source": {
149
- "type": "git",
150
- "url": "https://github.com/composer/semver.git",
151
- "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
152
- },
153
- "dist": {
154
- "type": "zip",
155
- "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
156
- "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
157
- "shasum": ""
158
- },
159
- "require": {
160
- "php": "^5.3.2 || ^7.0"
161
- },
162
- "require-dev": {
163
- "phpunit/phpunit": "^4.5 || ^5.0.5",
164
- "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
165
- },
166
- "type": "library",
167
- "extra": {
168
- "branch-alias": {
169
- "dev-master": "1.x-dev"
170
- }
171
- },
172
- "autoload": {
173
- "psr-4": {
174
- "Composer\\Semver\\": "src"
175
- }
176
- },
177
- "notification-url": "https://packagist.org/downloads/",
178
- "license": [
179
- "MIT"
180
- ],
181
- "authors": [
182
- {
183
- "name": "Nils Adermann",
184
- "email": "naderman@naderman.de",
185
- "homepage": "http://www.naderman.de"
186
- },
187
- {
188
- "name": "Jordi Boggiano",
189
- "email": "j.boggiano@seld.be",
190
- "homepage": "http://seld.be"
191
- },
192
- {
193
- "name": "Rob Bast",
194
- "email": "rob.bast@gmail.com",
195
- "homepage": "http://robbast.nl"
196
- }
197
- ],
198
- "description": "Semver library that offers utilities, version constraint parsing and validation.",
199
- "keywords": [
200
- "semantic",
201
- "semver",
202
- "validation",
203
- "versioning"
204
- ],
205
- "time": "2016-08-30T16:08:34+00:00"
206
- },
207
- {
208
- "name": "composer/spdx-licenses",
209
- "version": "1.5.0",
210
- "source": {
211
- "type": "git",
212
- "url": "https://github.com/composer/spdx-licenses.git",
213
- "reference": "7a9556b22bd9d4df7cad89876b00af58ef20d3a2"
214
- },
215
- "dist": {
216
- "type": "zip",
217
- "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/7a9556b22bd9d4df7cad89876b00af58ef20d3a2",
218
- "reference": "7a9556b22bd9d4df7cad89876b00af58ef20d3a2",
219
- "shasum": ""
220
- },
221
- "require": {
222
- "php": "^5.3.2 || ^7.0"
223
- },
224
- "require-dev": {
225
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
226
- "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
227
- },
228
- "type": "library",
229
- "extra": {
230
- "branch-alias": {
231
- "dev-master": "1.x-dev"
232
- }
233
- },
234
- "autoload": {
235
- "psr-4": {
236
- "Composer\\Spdx\\": "src"
237
- }
238
- },
239
- "notification-url": "https://packagist.org/downloads/",
240
- "license": [
241
- "MIT"
242
- ],
243
- "authors": [
244
- {
245
- "name": "Nils Adermann",
246
- "email": "naderman@naderman.de",
247
- "homepage": "http://www.naderman.de"
248
- },
249
- {
250
- "name": "Jordi Boggiano",
251
- "email": "j.boggiano@seld.be",
252
- "homepage": "http://seld.be"
253
- },
254
- {
255
- "name": "Rob Bast",
256
- "email": "rob.bast@gmail.com",
257
- "homepage": "http://robbast.nl"
258
- }
259
- ],
260
- "description": "SPDX licenses list and validation library.",
261
- "keywords": [
262
- "license",
263
- "spdx",
264
- "validator"
265
- ],
266
- "time": "2018-11-01T09:45:54+00:00"
267
- },
268
- {
269
- "name": "composer/xdebug-handler",
270
- "version": "1.3.1",
271
- "source": {
272
- "type": "git",
273
- "url": "https://github.com/composer/xdebug-handler.git",
274
- "reference": "dc523135366eb68f22268d069ea7749486458562"
275
- },
276
- "dist": {
277
- "type": "zip",
278
- "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/dc523135366eb68f22268d069ea7749486458562",
279
- "reference": "dc523135366eb68f22268d069ea7749486458562",
280
- "shasum": ""
281
- },
282
- "require": {
283
- "php": "^5.3.2 || ^7.0",
284
- "psr/log": "^1.0"
285
- },
286
- "require-dev": {
287
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
288
- },
289
- "type": "library",
290
- "autoload": {
291
- "psr-4": {
292
- "Composer\\XdebugHandler\\": "src"
293
- }
294
- },
295
- "notification-url": "https://packagist.org/downloads/",
296
- "license": [
297
- "MIT"
298
- ],
299
- "authors": [
300
- {
301
- "name": "John Stevenson",
302
- "email": "john-stevenson@blueyonder.co.uk"
303
- }
304
- ],
305
- "description": "Restarts a process without xdebug.",
306
- "keywords": [
307
- "Xdebug",
308
- "performance"
309
- ],
310
- "time": "2018-11-29T10:59:02+00:00"
311
- },
312
- {
313
- "name": "justinrainbow/json-schema",
314
- "version": "5.2.7",
315
- "source": {
316
- "type": "git",
317
- "url": "https://github.com/justinrainbow/json-schema.git",
318
- "reference": "8560d4314577199ba51bf2032f02cd1315587c23"
319
- },
320
- "dist": {
321
- "type": "zip",
322
- "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/8560d4314577199ba51bf2032f02cd1315587c23",
323
- "reference": "8560d4314577199ba51bf2032f02cd1315587c23",
324
- "shasum": ""
325
- },
326
- "require": {
327
- "php": ">=5.3.3"
328
- },
329
- "require-dev": {
330
- "friendsofphp/php-cs-fixer": "^2.1",
331
- "json-schema/json-schema-test-suite": "1.2.0",
332
- "phpunit/phpunit": "^4.8.35"
333
- },
334
- "bin": [
335
- "bin/validate-json"
336
- ],
337
- "type": "library",
338
- "extra": {
339
- "branch-alias": {
340
- "dev-master": "5.0.x-dev"
341
- }
342
- },
343
- "autoload": {
344
- "psr-4": {
345
- "JsonSchema\\": "src/JsonSchema/"
346
- }
347
- },
348
- "notification-url": "https://packagist.org/downloads/",
349
- "license": [
350
- "MIT"
351
- ],
352
- "authors": [
353
- {
354
- "name": "Bruno Prieto Reis",
355
- "email": "bruno.p.reis@gmail.com"
356
- },
357
- {
358
- "name": "Justin Rainbow",
359
- "email": "justin.rainbow@gmail.com"
360
- },
361
- {
362
- "name": "Igor Wiedler",
363
- "email": "igor@wiedler.ch"
364
- },
365
- {
366
- "name": "Robert Schönthal",
367
- "email": "seroscho@googlemail.com"
368
- }
369
- ],
370
- "description": "A library to validate a json schema.",
371
- "homepage": "https://github.com/justinrainbow/json-schema",
372
- "keywords": [
373
- "json",
374
- "schema"
375
- ],
376
- "time": "2018-02-14T22:26:30+00:00"
377
- },
378
- {
379
- "name": "psr/log",
380
- "version": "1.1.0",
381
- "source": {
382
- "type": "git",
383
- "url": "https://github.com/php-fig/log.git",
384
- "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
385
- },
386
- "dist": {
387
- "type": "zip",
388
- "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
389
- "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
390
- "shasum": ""
391
- },
392
- "require": {
393
- "php": ">=5.3.0"
394
- },
395
- "type": "library",
396
- "extra": {
397
- "branch-alias": {
398
- "dev-master": "1.0.x-dev"
399
- }
400
- },
401
- "autoload": {
402
- "psr-4": {
403
- "Psr\\Log\\": "Psr/Log/"
404
- }
405
- },
406
- "notification-url": "https://packagist.org/downloads/",
407
- "license": [
408
- "MIT"
409
- ],
410
- "authors": [
411
- {
412
- "name": "PHP-FIG",
413
- "homepage": "http://www.php-fig.org/"
414
- }
415
- ],
416
- "description": "Common interface for logging libraries",
417
- "homepage": "https://github.com/php-fig/log",
418
- "keywords": [
419
- "log",
420
- "psr",
421
- "psr-3"
422
- ],
423
- "time": "2018-11-20T15:27:04+00:00"
424
- },
425
- {
426
- "name": "seld/jsonlint",
427
- "version": "1.7.1",
428
- "source": {
429
- "type": "git",
430
- "url": "https://github.com/Seldaek/jsonlint.git",
431
- "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
432
- },
433
- "dist": {
434
- "type": "zip",
435
- "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
436
- "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
437
- "shasum": ""
438
- },
439
- "require": {
440
- "php": "^5.3 || ^7.0"
441
- },
442
- "require-dev": {
443
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
444
- },
445
- "bin": [
446
- "bin/jsonlint"
447
- ],
448
- "type": "library",
449
- "autoload": {
450
- "psr-4": {
451
- "Seld\\JsonLint\\": "src/Seld/JsonLint/"
452
- }
453
- },
454
- "notification-url": "https://packagist.org/downloads/",
455
- "license": [
456
- "MIT"
457
- ],
458
- "authors": [
459
- {
460
- "name": "Jordi Boggiano",
461
- "email": "j.boggiano@seld.be",
462
- "homepage": "http://seld.be"
463
- }
464
- ],
465
- "description": "JSON Linter",
466
- "keywords": [
467
- "json",
468
- "linter",
469
- "parser",
470
- "validator"
471
- ],
472
- "time": "2018-01-24T12:46:19+00:00"
473
- },
474
- {
475
- "name": "seld/phar-utils",
476
- "version": "1.0.1",
477
- "source": {
478
- "type": "git",
479
- "url": "https://github.com/Seldaek/phar-utils.git",
480
- "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
481
- },
482
- "dist": {
483
- "type": "zip",
484
- "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
485
- "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
486
- "shasum": ""
487
- },
488
- "require": {
489
- "php": ">=5.3"
490
- },
491
- "type": "library",
492
- "extra": {
493
- "branch-alias": {
494
- "dev-master": "1.x-dev"
495
- }
496
- },
497
- "autoload": {
498
- "psr-4": {
499
- "Seld\\PharUtils\\": "src/"
500
- }
501
- },
502
- "notification-url": "https://packagist.org/downloads/",
503
- "license": [
504
- "MIT"
505
- ],
506
- "authors": [
507
- {
508
- "name": "Jordi Boggiano",
509
- "email": "j.boggiano@seld.be"
510
- }
511
- ],
512
- "description": "PHAR file format utilities, for when PHP phars you up",
513
- "keywords": [
514
- "phra"
515
- ],
516
- "time": "2015-10-13T18:44:15+00:00"
517
- },
518
- {
519
- "name": "symfony/console",
520
- "version": "v4.2.2",
521
- "source": {
522
- "type": "git",
523
- "url": "https://github.com/symfony/console.git",
524
- "reference": "b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522"
525
- },
526
- "dist": {
527
- "type": "zip",
528
- "url": "https://api.github.com/repos/symfony/console/zipball/b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522",
529
- "reference": "b0a03c1bb0fcbe288629956cf2f1dd3f1dc97522",
530
- "shasum": ""
531
- },
532
- "require": {
533
- "php": "^7.1.3",
534
- "symfony/contracts": "^1.0",
535
- "symfony/polyfill-mbstring": "~1.0"
536
- },
537
- "conflict": {
538
- "symfony/dependency-injection": "<3.4",
539
- "symfony/process": "<3.3"
540
- },
541
- "require-dev": {
542
- "psr/log": "~1.0",
543
- "symfony/config": "~3.4|~4.0",
544
- "symfony/dependency-injection": "~3.4|~4.0",
545
- "symfony/event-dispatcher": "~3.4|~4.0",
546
- "symfony/lock": "~3.4|~4.0",
547
- "symfony/process": "~3.4|~4.0"
548
- },
549
- "suggest": {
550
- "psr/log-implementation": "For using the console logger",
551
- "symfony/event-dispatcher": "",
552
- "symfony/lock": "",
553
- "symfony/process": ""
554
- },
555
- "type": "library",
556
- "extra": {
557
- "branch-alias": {
558
- "dev-master": "4.2-dev"
559
- }
560
- },
561
- "autoload": {
562
- "psr-4": {
563
- "Symfony\\Component\\Console\\": ""
564
- },
565
- "exclude-from-classmap": [
566
- "/Tests/"
567
- ]
568
- },
569
- "notification-url": "https://packagist.org/downloads/",
570
- "license": [
571
- "MIT"
572
- ],
573
- "authors": [
574
- {
575
- "name": "Fabien Potencier",
576
- "email": "fabien@symfony.com"
577
- },
578
- {
579
- "name": "Symfony Community",
580
- "homepage": "https://symfony.com/contributors"
581
- }
582
- ],
583
- "description": "Symfony Console Component",
584
- "homepage": "https://symfony.com",
585
- "time": "2019-01-04T15:13:53+00:00"
586
- },
587
- {
588
- "name": "symfony/contracts",
589
- "version": "v1.0.2",
590
- "source": {
591
- "type": "git",
592
- "url": "https://github.com/symfony/contracts.git",
593
- "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
594
- },
595
- "dist": {
596
- "type": "zip",
597
- "url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
598
- "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
599
- "shasum": ""
600
- },
601
- "require": {
602
- "php": "^7.1.3"
603
- },
604
- "require-dev": {
605
- "psr/cache": "^1.0",
606
- "psr/container": "^1.0"
607
- },
608
- "suggest": {
609
- "psr/cache": "When using the Cache contracts",
610
- "psr/container": "When using the Service contracts",
611
- "symfony/cache-contracts-implementation": "",
612
- "symfony/service-contracts-implementation": "",
613
- "symfony/translation-contracts-implementation": ""
614
- },
615
- "type": "library",
616
- "extra": {
617
- "branch-alias": {
618
- "dev-master": "1.0-dev"
619
- }
620
- },
621
- "autoload": {
622
- "psr-4": {
623
- "Symfony\\Contracts\\": ""
624
- },
625
- "exclude-from-classmap": [
626
- "**/Tests/"
627
- ]
628
- },
629
- "notification-url": "https://packagist.org/downloads/",
630
- "license": [
631
- "MIT"
632
- ],
633
- "authors": [
634
- {
635
- "name": "Nicolas Grekas",
636
- "email": "p@tchwork.com"
637
- },
638
- {
639
- "name": "Symfony Community",
640
- "homepage": "https://symfony.com/contributors"
641
- }
642
- ],
643
- "description": "A set of abstractions extracted out of the Symfony components",
644
- "homepage": "https://symfony.com",
645
- "keywords": [
646
- "abstractions",
647
- "contracts",
648
- "decoupling",
649
- "interfaces",
650
- "interoperability",
651
- "standards"
652
- ],
653
- "time": "2018-12-05T08:06:11+00:00"
654
- },
655
- {
656
- "name": "symfony/filesystem",
657
- "version": "v4.2.2",
658
- "source": {
659
- "type": "git",
660
- "url": "https://github.com/symfony/filesystem.git",
661
- "reference": "c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8"
662
- },
663
- "dist": {
664
- "type": "zip",
665
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8",
666
- "reference": "c2ffd9a93f2d6c5be2f68a0aa7953cc229f871f8",
667
- "shasum": ""
668
- },
669
- "require": {
670
- "php": "^7.1.3",
671
- "symfony/polyfill-ctype": "~1.8"
672
- },
673
- "type": "library",
674
- "extra": {
675
- "branch-alias": {
676
- "dev-master": "4.2-dev"
677
- }
678
- },
679
- "autoload": {
680
- "psr-4": {
681
- "Symfony\\Component\\Filesystem\\": ""
682
- },
683
- "exclude-from-classmap": [
684
- "/Tests/"
685
- ]
686
- },
687
- "notification-url": "https://packagist.org/downloads/",
688
- "license": [
689
- "MIT"
690
- ],
691
- "authors": [
692
- {
693
- "name": "Fabien Potencier",
694
- "email": "fabien@symfony.com"
695
- },
696
- {
697
- "name": "Symfony Community",
698
- "homepage": "https://symfony.com/contributors"
699
- }
700
- ],
701
- "description": "Symfony Filesystem Component",
702
- "homepage": "https://symfony.com",
703
- "time": "2019-01-03T09:07:35+00:00"
704
- },
705
- {
706
- "name": "symfony/finder",
707
- "version": "v4.2.2",
708
- "source": {
709
- "type": "git",
710
- "url": "https://github.com/symfony/finder.git",
711
- "reference": "9094d69e8c6ee3fe186a0ec5a4f1401e506071ce"
712
- },
713
- "dist": {
714
- "type": "zip",
715
- "url": "https://api.github.com/repos/symfony/finder/zipball/9094d69e8c6ee3fe186a0ec5a4f1401e506071ce",
716
- "reference": "9094d69e8c6ee3fe186a0ec5a4f1401e506071ce",
717
- "shasum": ""
718
- },
719
- "require": {
720
- "php": "^7.1.3"
721
- },
722
- "type": "library",
723
- "extra": {
724
- "branch-alias": {
725
- "dev-master": "4.2-dev"
726
- }
727
- },
728
- "autoload": {
729
- "psr-4": {
730
- "Symfony\\Component\\Finder\\": ""
731
- },
732
- "exclude-from-classmap": [
733
- "/Tests/"
734
- ]
735
- },
736
- "notification-url": "https://packagist.org/downloads/",
737
- "license": [
738
- "MIT"
739
- ],
740
- "authors": [
741
- {
742
- "name": "Fabien Potencier",
743
- "email": "fabien@symfony.com"
744
- },
745
- {
746
- "name": "Symfony Community",
747
- "homepage": "https://symfony.com/contributors"
748
- }
749
- ],
750
- "description": "Symfony Finder Component",
751
- "homepage": "https://symfony.com",
752
- "time": "2019-01-03T09:07:35+00:00"
753
- },
754
- {
755
- "name": "symfony/polyfill-ctype",
756
- "version": "v1.10.0",
757
- "source": {
758
- "type": "git",
759
- "url": "https://github.com/symfony/polyfill-ctype.git",
760
- "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
761
- },
762
- "dist": {
763
- "type": "zip",
764
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
765
- "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
766
- "shasum": ""
767
- },
768
- "require": {
769
- "php": ">=5.3.3"
770
- },
771
- "suggest": {
772
- "ext-ctype": "For best performance"
773
- },
774
- "type": "library",
775
- "extra": {
776
- "branch-alias": {
777
- "dev-master": "1.9-dev"
778
- }
779
- },
780
- "autoload": {
781
- "psr-4": {
782
- "Symfony\\Polyfill\\Ctype\\": ""
783
- },
784
- "files": [
785
- "bootstrap.php"
786
- ]
787
- },
788
- "notification-url": "https://packagist.org/downloads/",
789
- "license": [
790
- "MIT"
791
- ],
792
- "authors": [
793
- {
794
- "name": "Symfony Community",
795
- "homepage": "https://symfony.com/contributors"
796
- },
797
- {
798
- "name": "Gert de Pagter",
799
- "email": "BackEndTea@gmail.com"
800
- }
801
- ],
802
- "description": "Symfony polyfill for ctype functions",
803
- "homepage": "https://symfony.com",
804
- "keywords": [
805
- "compatibility",
806
- "ctype",
807
- "polyfill",
808
- "portable"
809
- ],
810
- "time": "2018-08-06T14:22:27+00:00"
811
- },
812
- {
813
- "name": "symfony/polyfill-mbstring",
814
- "version": "v1.10.0",
815
- "source": {
816
- "type": "git",
817
- "url": "https://github.com/symfony/polyfill-mbstring.git",
818
- "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
819
- },
820
- "dist": {
821
- "type": "zip",
822
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
823
- "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
824
- "shasum": ""
825
- },
826
- "require": {
827
- "php": ">=5.3.3"
828
- },
829
- "suggest": {
830
- "ext-mbstring": "For best performance"
831
- },
832
- "type": "library",
833
- "extra": {
834
- "branch-alias": {
835
- "dev-master": "1.9-dev"
836
- }
837
- },
838
- "autoload": {
839
- "psr-4": {
840
- "Symfony\\Polyfill\\Mbstring\\": ""
841
- },
842
- "files": [
843
- "bootstrap.php"
844
- ]
845
- },
846
- "notification-url": "https://packagist.org/downloads/",
847
- "license": [
848
- "MIT"
849
- ],
850
- "authors": [
851
- {
852
- "name": "Nicolas Grekas",
853
- "email": "p@tchwork.com"
854
- },
855
- {
856
- "name": "Symfony Community",
857
- "homepage": "https://symfony.com/contributors"
858
- }
859
- ],
860
- "description": "Symfony polyfill for the Mbstring extension",
861
- "homepage": "https://symfony.com",
862
- "keywords": [
863
- "compatibility",
864
- "mbstring",
865
- "polyfill",
866
- "portable",
867
- "shim"
868
- ],
869
- "time": "2018-09-21T13:07:52+00:00"
870
- },
871
- {
872
- "name": "symfony/process",
873
- "version": "v4.2.2",
874
- "source": {
875
- "type": "git",
876
- "url": "https://github.com/symfony/process.git",
877
- "reference": "ea043ab5d8ed13b467a9087d81cb876aee7f689a"
878
- },
879
- "dist": {
880
- "type": "zip",
881
- "url": "https://api.github.com/repos/symfony/process/zipball/ea043ab5d8ed13b467a9087d81cb876aee7f689a",
882
- "reference": "ea043ab5d8ed13b467a9087d81cb876aee7f689a",
883
- "shasum": ""
884
- },
885
- "require": {
886
- "php": "^7.1.3"
887
- },
888
- "type": "library",
889
- "extra": {
890
- "branch-alias": {
891
- "dev-master": "4.2-dev"
892
- }
893
- },
894
- "autoload": {
895
- "psr-4": {
896
- "Symfony\\Component\\Process\\": ""
897
- },
898
- "exclude-from-classmap": [
899
- "/Tests/"
900
- ]
901
- },
902
- "notification-url": "https://packagist.org/downloads/",
903
- "license": [
904
- "MIT"
905
- ],
906
- "authors": [
907
- {
908
- "name": "Fabien Potencier",
909
- "email": "fabien@symfony.com"
910
- },
911
- {
912
- "name": "Symfony Community",
913
- "homepage": "https://symfony.com/contributors"
914
- }
915
- ],
916
- "description": "Symfony Process Component",
917
- "homepage": "https://symfony.com",
918
- "time": "2019-01-03T14:48:52+00:00"
919
- }
920
- ],
921
- "packages-dev": [
922
- {
923
- "name": "doctrine/annotations",
924
- "version": "v1.6.0",
925
- "source": {
926
- "type": "git",
927
- "url": "https://github.com/doctrine/annotations.git",
928
- "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
929
- },
930
- "dist": {
931
- "type": "zip",
932
- "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
933
- "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
934
- "shasum": ""
935
- },
936
- "require": {
937
- "doctrine/lexer": "1.*",
938
- "php": "^7.1"
939
- },
940
- "require-dev": {
941
- "doctrine/cache": "1.*",
942
- "phpunit/phpunit": "^6.4"
943
- },
944
- "type": "library",
945
- "extra": {
946
- "branch-alias": {
947
- "dev-master": "1.6.x-dev"
948
- }
949
- },
950
- "autoload": {
951
- "psr-4": {
952
- "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
953
- }
954
- },
955
- "notification-url": "https://packagist.org/downloads/",
956
- "license": [
957
- "MIT"
958
- ],
959
- "authors": [
960
- {
961
- "name": "Roman Borschel",
962
- "email": "roman@code-factory.org"
963
- },
964
- {
965
- "name": "Benjamin Eberlei",
966
- "email": "kontakt@beberlei.de"
967
- },
968
- {
969
- "name": "Guilherme Blanco",
970
- "email": "guilhermeblanco@gmail.com"
971
- },
972
- {
973
- "name": "Jonathan Wage",
974
- "email": "jonwage@gmail.com"
975
- },
976
- {
977
- "name": "Johannes Schmitt",
978
- "email": "schmittjoh@gmail.com"
979
- }
980
- ],
981
- "description": "Docblock Annotations Parser",
982
- "homepage": "http://www.doctrine-project.org",
983
- "keywords": [
984
- "annotations",
985
- "docblock",
986
- "parser"
987
- ],
988
- "time": "2017-12-06T07:11:42+00:00"
989
- },
990
- {
991
- "name": "doctrine/lexer",
992
- "version": "v1.0.1",
993
- "source": {
994
- "type": "git",
995
- "url": "https://github.com/doctrine/lexer.git",
996
- "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
997
- },
998
- "dist": {
999
- "type": "zip",
1000
- "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
1001
- "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
1002
- "shasum": ""
1003
- },
1004
- "require": {
1005
- "php": ">=5.3.2"
1006
- },
1007
- "type": "library",
1008
- "extra": {
1009
- "branch-alias": {
1010
- "dev-master": "1.0.x-dev"
1011
- }
1012
- },
1013
- "autoload": {
1014
- "psr-0": {
1015
- "Doctrine\\Common\\Lexer\\": "lib/"
1016
- }
1017
- },
1018
- "notification-url": "https://packagist.org/downloads/",
1019
- "license": [
1020
- "MIT"
1021
- ],
1022
- "authors": [
1023
- {
1024
- "name": "Roman Borschel",
1025
- "email": "roman@code-factory.org"
1026
- },
1027
- {
1028
- "name": "Guilherme Blanco",
1029
- "email": "guilhermeblanco@gmail.com"
1030
- },
1031
- {
1032
- "name": "Johannes Schmitt",
1033
- "email": "schmittjoh@gmail.com"
1034
- }
1035
- ],
1036
- "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
1037
- "homepage": "http://www.doctrine-project.org",
1038
- "keywords": [
1039
- "lexer",
1040
- "parser"
1041
- ],
1042
- "time": "2014-09-09T13:34:57+00:00"
1043
- },
1044
- {
1045
- "name": "friendsofphp/php-cs-fixer",
1046
- "version": "v2.14.0",
1047
- "source": {
1048
- "type": "git",
1049
- "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
1050
- "reference": "b788ea0af899cedc8114dca7db119c93b6685da2"
1051
- },
1052
- "dist": {
1053
- "type": "zip",
1054
- "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/b788ea0af899cedc8114dca7db119c93b6685da2",
1055
- "reference": "b788ea0af899cedc8114dca7db119c93b6685da2",
1056
- "shasum": ""
1057
- },
1058
- "require": {
1059
- "composer/semver": "^1.4",
1060
- "composer/xdebug-handler": "^1.2",
1061
- "doctrine/annotations": "^1.2",
1062
- "ext-json": "*",
1063
- "ext-tokenizer": "*",
1064
- "php": "^5.6 || ^7.0",
1065
- "php-cs-fixer/diff": "^1.3",
1066
- "symfony/console": "^3.4.17 || ^4.1.6",
1067
- "symfony/event-dispatcher": "^3.0 || ^4.0",
1068
- "symfony/filesystem": "^3.0 || ^4.0",
1069
- "symfony/finder": "^3.0 || ^4.0",
1070
- "symfony/options-resolver": "^3.0 || ^4.0",
1071
- "symfony/polyfill-php70": "^1.0",
1072
- "symfony/polyfill-php72": "^1.4",
1073
- "symfony/process": "^3.0 || ^4.0",
1074
- "symfony/stopwatch": "^3.0 || ^4.0"
1075
- },
1076
- "conflict": {
1077
- "hhvm": "*"
1078
- },
1079
- "require-dev": {
1080
- "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
1081
- "justinrainbow/json-schema": "^5.0",
1082
- "keradus/cli-executor": "^1.2",
1083
- "mikey179/vfsstream": "^1.6",
1084
- "php-coveralls/php-coveralls": "^2.1",
1085
- "php-cs-fixer/accessible-object": "^1.0",
1086
- "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.0.1",
1087
- "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.0.1",
1088
- "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1",
1089
- "phpunitgoodpractices/traits": "^1.5.1",
1090
- "symfony/phpunit-bridge": "^4.0"
1091
- },
1092
- "suggest": {
1093
- "ext-mbstring": "For handling non-UTF8 characters in cache signature.",
1094
- "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
1095
- "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
1096
- "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
1097
- },
1098
- "bin": [
1099
- "php-cs-fixer"
1100
- ],
1101
- "type": "application",
1102
- "extra": {
1103
- "branch-alias": {
1104
- "dev-master": "2.14-dev"
1105
- }
1106
- },
1107
- "autoload": {
1108
- "psr-4": {
1109
- "PhpCsFixer\\": "src/"
1110
- },
1111
- "classmap": [
1112
- "tests/Test/AbstractFixerTestCase.php",
1113
- "tests/Test/AbstractIntegrationCaseFactory.php",
1114
- "tests/Test/AbstractIntegrationTestCase.php",
1115
- "tests/Test/Assert/AssertTokensTrait.php",
1116
- "tests/Test/IntegrationCase.php",
1117
- "tests/Test/IntegrationCaseFactory.php",
1118
- "tests/Test/IntegrationCaseFactoryInterface.php",
1119
- "tests/Test/InternalIntegrationCaseFactory.php",
1120
- "tests/TestCase.php"
1121
- ]
1122
- },
1123
- "notification-url": "https://packagist.org/downloads/",
1124
- "license": [
1125
- "MIT"
1126
- ],
1127
- "authors": [
1128
- {
1129
- "name": "Dariusz Rumiński",
1130
- "email": "dariusz.ruminski@gmail.com"
1131
- },
1132
- {
1133
- "name": "Fabien Potencier",
1134
- "email": "fabien@symfony.com"
1135
- }
1136
- ],
1137
- "description": "A tool to automatically fix PHP code style",
1138
- "time": "2019-01-04T18:29:47+00:00"
1139
- },
1140
- {
1141
- "name": "paragonie/random_compat",
1142
- "version": "v9.99.99",
1143
- "source": {
1144
- "type": "git",
1145
- "url": "https://github.com/paragonie/random_compat.git",
1146
- "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
1147
- },
1148
- "dist": {
1149
- "type": "zip",
1150
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
1151
- "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
1152
- "shasum": ""
1153
- },
1154
- "require": {
1155
- "php": "^7"
1156
- },
1157
- "require-dev": {
1158
- "phpunit/phpunit": "4.*|5.*",
1159
- "vimeo/psalm": "^1"
1160
- },
1161
- "suggest": {
1162
- "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
1163
- },
1164
- "type": "library",
1165
- "notification-url": "https://packagist.org/downloads/",
1166
- "license": [
1167
- "MIT"
1168
- ],
1169
- "authors": [
1170
- {
1171
- "name": "Paragon Initiative Enterprises",
1172
- "email": "security@paragonie.com",
1173
- "homepage": "https://paragonie.com"
1174
- }
1175
- ],
1176
- "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
1177
- "keywords": [
1178
- "csprng",
1179
- "polyfill",
1180
- "pseudorandom",
1181
- "random"
1182
- ],
1183
- "time": "2018-07-02T15:55:56+00:00"
1184
- },
1185
- {
1186
- "name": "php-cs-fixer/diff",
1187
- "version": "v1.3.0",
1188
- "source": {
1189
- "type": "git",
1190
- "url": "https://github.com/PHP-CS-Fixer/diff.git",
1191
- "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756"
1192
- },
1193
- "dist": {
1194
- "type": "zip",
1195
- "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756",
1196
- "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756",
1197
- "shasum": ""
1198
- },
1199
- "require": {
1200
- "php": "^5.6 || ^7.0"
1201
- },
1202
- "require-dev": {
1203
- "phpunit/phpunit": "^5.7.23 || ^6.4.3",
1204
- "symfony/process": "^3.3"
1205
- },
1206
- "type": "library",
1207
- "autoload": {
1208
- "classmap": [
1209
- "src/"
1210
- ]
1211
- },
1212
- "notification-url": "https://packagist.org/downloads/",
1213
- "license": [
1214
- "BSD-3-Clause"
1215
- ],
1216
- "authors": [
1217
- {
1218
- "name": "Kore Nordmann",
1219
- "email": "mail@kore-nordmann.de"
1220
- },
1221
- {
1222
- "name": "Sebastian Bergmann",
1223
- "email": "sebastian@phpunit.de"
1224
- },
1225
- {
1226
- "name": "SpacePossum"
1227
- }
1228
- ],
1229
- "description": "sebastian/diff v2 backport support for PHP5.6",
1230
- "homepage": "https://github.com/PHP-CS-Fixer",
1231
- "keywords": [
1232
- "diff"
1233
- ],
1234
- "time": "2018-02-15T16:58:55+00:00"
1235
- },
1236
- {
1237
- "name": "symfony/event-dispatcher",
1238
- "version": "v4.2.2",
1239
- "source": {
1240
- "type": "git",
1241
- "url": "https://github.com/symfony/event-dispatcher.git",
1242
- "reference": "887de6d34c86cf0cb6cbf910afb170cdb743cb5e"
1243
- },
1244
- "dist": {
1245
- "type": "zip",
1246
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/887de6d34c86cf0cb6cbf910afb170cdb743cb5e",
1247
- "reference": "887de6d34c86cf0cb6cbf910afb170cdb743cb5e",
1248
- "shasum": ""
1249
- },
1250
- "require": {
1251
- "php": "^7.1.3",
1252
- "symfony/contracts": "^1.0"
1253
- },
1254
- "conflict": {
1255
- "symfony/dependency-injection": "<3.4"
1256
- },
1257
- "require-dev": {
1258
- "psr/log": "~1.0",
1259
- "symfony/config": "~3.4|~4.0",
1260
- "symfony/dependency-injection": "~3.4|~4.0",
1261
- "symfony/expression-language": "~3.4|~4.0",
1262
- "symfony/stopwatch": "~3.4|~4.0"
1263
- },
1264
- "suggest": {
1265
- "symfony/dependency-injection": "",
1266
- "symfony/http-kernel": ""
1267
- },
1268
- "type": "library",
1269
- "extra": {
1270
- "branch-alias": {
1271
- "dev-master": "4.2-dev"
1272
- }
1273
- },
1274
- "autoload": {
1275
- "psr-4": {
1276
- "Symfony\\Component\\EventDispatcher\\": ""
1277
- },
1278
- "exclude-from-classmap": [
1279
- "/Tests/"
1280
- ]
1281
- },
1282
- "notification-url": "https://packagist.org/downloads/",
1283
- "license": [
1284
- "MIT"
1285
- ],
1286
- "authors": [
1287
- {
1288
- "name": "Fabien Potencier",
1289
- "email": "fabien@symfony.com"
1290
- },
1291
- {
1292
- "name": "Symfony Community",
1293
- "homepage": "https://symfony.com/contributors"
1294
- }
1295
- ],
1296
- "description": "Symfony EventDispatcher Component",
1297
- "homepage": "https://symfony.com",
1298
- "time": "2019-01-05T16:37:49+00:00"
1299
- },
1300
- {
1301
- "name": "symfony/options-resolver",
1302
- "version": "v4.2.2",
1303
- "source": {
1304
- "type": "git",
1305
- "url": "https://github.com/symfony/options-resolver.git",
1306
- "reference": "fbcb106aeee72f3450298bf73324d2cc00d083d1"
1307
- },
1308
- "dist": {
1309
- "type": "zip",
1310
- "url": "https://api.github.com/repos/symfony/options-resolver/zipball/fbcb106aeee72f3450298bf73324d2cc00d083d1",
1311
- "reference": "fbcb106aeee72f3450298bf73324d2cc00d083d1",
1312
- "shasum": ""
1313
- },
1314
- "require": {
1315
- "php": "^7.1.3"
1316
- },
1317
- "type": "library",
1318
- "extra": {
1319
- "branch-alias": {
1320
- "dev-master": "4.2-dev"
1321
- }
1322
- },
1323
- "autoload": {
1324
- "psr-4": {
1325
- "Symfony\\Component\\OptionsResolver\\": ""
1326
- },
1327
- "exclude-from-classmap": [
1328
- "/Tests/"
1329
- ]
1330
- },
1331
- "notification-url": "https://packagist.org/downloads/",
1332
- "license": [
1333
- "MIT"
1334
- ],
1335
- "authors": [
1336
- {
1337
- "name": "Fabien Potencier",
1338
- "email": "fabien@symfony.com"
1339
- },
1340
- {
1341
- "name": "Symfony Community",
1342
- "homepage": "https://symfony.com/contributors"
1343
- }
1344
- ],
1345
- "description": "Symfony OptionsResolver Component",
1346
- "homepage": "https://symfony.com",
1347
- "keywords": [
1348
- "config",
1349
- "configuration",
1350
- "options"
1351
- ],
1352
- "time": "2019-01-03T09:07:35+00:00"
1353
- },
1354
- {
1355
- "name": "symfony/polyfill-php70",
1356
- "version": "v1.10.0",
1357
- "source": {
1358
- "type": "git",
1359
- "url": "https://github.com/symfony/polyfill-php70.git",
1360
- "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
1361
- },
1362
- "dist": {
1363
- "type": "zip",
1364
- "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
1365
- "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
1366
- "shasum": ""
1367
- },
1368
- "require": {
1369
- "paragonie/random_compat": "~1.0|~2.0|~9.99",
1370
- "php": ">=5.3.3"
1371
- },
1372
- "type": "library",
1373
- "extra": {
1374
- "branch-alias": {
1375
- "dev-master": "1.9-dev"
1376
- }
1377
- },
1378
- "autoload": {
1379
- "psr-4": {
1380
- "Symfony\\Polyfill\\Php70\\": ""
1381
- },
1382
- "files": [
1383
- "bootstrap.php"
1384
- ],
1385
- "classmap": [
1386
- "Resources/stubs"
1387
- ]
1388
- },
1389
- "notification-url": "https://packagist.org/downloads/",
1390
- "license": [
1391
- "MIT"
1392
- ],
1393
- "authors": [
1394
- {
1395
- "name": "Nicolas Grekas",
1396
- "email": "p@tchwork.com"
1397
- },
1398
- {
1399
- "name": "Symfony Community",
1400
- "homepage": "https://symfony.com/contributors"
1401
- }
1402
- ],
1403
- "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
1404
- "homepage": "https://symfony.com",
1405
- "keywords": [
1406
- "compatibility",
1407
- "polyfill",
1408
- "portable",
1409
- "shim"
1410
- ],
1411
- "time": "2018-09-21T06:26:08+00:00"
1412
- },
1413
- {
1414
- "name": "symfony/polyfill-php72",
1415
- "version": "v1.10.0",
1416
- "source": {
1417
- "type": "git",
1418
- "url": "https://github.com/symfony/polyfill-php72.git",
1419
- "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631"
1420
- },
1421
- "dist": {
1422
- "type": "zip",
1423
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
1424
- "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
1425
- "shasum": ""
1426
- },
1427
- "require": {
1428
- "php": ">=5.3.3"
1429
- },
1430
- "type": "library",
1431
- "extra": {
1432
- "branch-alias": {
1433
- "dev-master": "1.9-dev"
1434
- }
1435
- },
1436
- "autoload": {
1437
- "psr-4": {
1438
- "Symfony\\Polyfill\\Php72\\": ""
1439
- },
1440
- "files": [
1441
- "bootstrap.php"
1442
- ]
1443
- },
1444
- "notification-url": "https://packagist.org/downloads/",
1445
- "license": [
1446
- "MIT"
1447
- ],
1448
- "authors": [
1449
- {
1450
- "name": "Nicolas Grekas",
1451
- "email": "p@tchwork.com"
1452
- },
1453
- {
1454
- "name": "Symfony Community",
1455
- "homepage": "https://symfony.com/contributors"
1456
- }
1457
- ],
1458
- "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
1459
- "homepage": "https://symfony.com",
1460
- "keywords": [
1461
- "compatibility",
1462
- "polyfill",
1463
- "portable",
1464
- "shim"
1465
- ],
1466
- "time": "2018-09-21T13:07:52+00:00"
1467
- },
1468
- {
1469
- "name": "symfony/stopwatch",
1470
- "version": "v4.2.2",
1471
- "source": {
1472
- "type": "git",
1473
- "url": "https://github.com/symfony/stopwatch.git",
1474
- "reference": "af62b35760fc92c8dbdce659b4eebdfe0e6a0472"
1475
- },
1476
- "dist": {
1477
- "type": "zip",
1478
- "url": "https://api.github.com/repos/symfony/stopwatch/zipball/af62b35760fc92c8dbdce659b4eebdfe0e6a0472",
1479
- "reference": "af62b35760fc92c8dbdce659b4eebdfe0e6a0472",
1480
- "shasum": ""
1481
- },
1482
- "require": {
1483
- "php": "^7.1.3",
1484
- "symfony/contracts": "^1.0"
1485
- },
1486
- "type": "library",
1487
- "extra": {
1488
- "branch-alias": {
1489
- "dev-master": "4.2-dev"
1490
- }
1491
- },
1492
- "autoload": {
1493
- "psr-4": {
1494
- "Symfony\\Component\\Stopwatch\\": ""
1495
- },
1496
- "exclude-from-classmap": [
1497
- "/Tests/"
1498
- ]
1499
- },
1500
- "notification-url": "https://packagist.org/downloads/",
1501
- "license": [
1502
- "MIT"
1503
- ],
1504
- "authors": [
1505
- {
1506
- "name": "Fabien Potencier",
1507
- "email": "fabien@symfony.com"
1508
- },
1509
- {
1510
- "name": "Symfony Community",
1511
- "homepage": "https://symfony.com/contributors"
1512
- }
1513
- ],
1514
- "description": "Symfony Stopwatch Component",
1515
- "homepage": "https://symfony.com",
1516
- "time": "2019-01-03T09:07:35+00:00"
1517
- }
1518
- ],
1519
- "aliases": [],
1520
- "minimum-stability": "stable",
1521
- "stability-flags": [],
1522
- "prefer-stable": false,
1523
- "prefer-lowest": false,
1524
- "platform": {
1525
- "php": "^7.1"
1526
- },
1527
- "platform-dev": []
1528
- }