xref: /webtrees/composer.lock (revision 26c0efaa53fae3c1687c1b9e1ee19ca56feb1627)
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": "e22273a27154a3154f8c05d33ac2f5f2",
8    "packages": [
9        {
10            "name": "aura/router",
11            "version": "3.1.0",
12            "source": {
13                "type": "git",
14                "url": "https://github.com/auraphp/Aura.Router.git",
15                "reference": "52507bc813c92511dbcacc7463f163ef5149ad38"
16            },
17            "dist": {
18                "type": "zip",
19                "url": "https://api.github.com/repos/auraphp/Aura.Router/zipball/52507bc813c92511dbcacc7463f163ef5149ad38",
20                "reference": "52507bc813c92511dbcacc7463f163ef5149ad38",
21                "shasum": ""
22            },
23            "require": {
24                "php": ">=5.5.0",
25                "psr/http-message": "~1.0",
26                "psr/log": "~1.0"
27            },
28            "require-dev": {
29                "phpunit/phpunit": "~5.7 || ~4.8",
30                "zendframework/zend-diactoros": "~1.0"
31            },
32            "type": "library",
33            "autoload": {
34                "psr-4": {
35                    "Aura\\Router\\": "src/"
36                }
37            },
38            "notification-url": "https://packagist.org/downloads/",
39            "license": [
40                "MIT"
41            ],
42            "authors": [
43                {
44                    "name": "Aura.Router Contributors",
45                    "homepage": "https://github.com/auraphp/Aura.Router/contributors"
46                }
47            ],
48            "description": "Powerful, flexible web routing for PSR-7 requests.",
49            "homepage": "https://github.com/auraphp/Aura.Router",
50            "keywords": [
51                "psr-7",
52                "route",
53                "router",
54                "routing"
55            ],
56            "time": "2017-03-02T16:34:47+00:00"
57        },
58        {
59            "name": "cweagans/composer-patches",
60            "version": "1.6.7",
61            "source": {
62                "type": "git",
63                "url": "https://github.com/cweagans/composer-patches.git",
64                "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
65            },
66            "dist": {
67                "type": "zip",
68                "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
69                "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
70                "shasum": ""
71            },
72            "require": {
73                "composer-plugin-api": "^1.0",
74                "php": ">=5.3.0"
75            },
76            "require-dev": {
77                "composer/composer": "~1.0",
78                "phpunit/phpunit": "~4.6"
79            },
80            "type": "composer-plugin",
81            "extra": {
82                "class": "cweagans\\Composer\\Patches"
83            },
84            "autoload": {
85                "psr-4": {
86                    "cweagans\\Composer\\": "src"
87                }
88            },
89            "notification-url": "https://packagist.org/downloads/",
90            "license": [
91                "BSD-3-Clause"
92            ],
93            "authors": [
94                {
95                    "name": "Cameron Eagans",
96                    "email": "me@cweagans.net"
97                }
98            ],
99            "description": "Provides a way to patch Composer packages.",
100            "time": "2019-08-29T20:11:49+00:00"
101        },
102        {
103            "name": "doctrine/cache",
104            "version": "1.10.0",
105            "source": {
106                "type": "git",
107                "url": "https://github.com/doctrine/cache.git",
108                "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62"
109            },
110            "dist": {
111                "type": "zip",
112                "url": "https://api.github.com/repos/doctrine/cache/zipball/382e7f4db9a12dc6c19431743a2b096041bcdd62",
113                "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62",
114                "shasum": ""
115            },
116            "require": {
117                "php": "~7.1"
118            },
119            "conflict": {
120                "doctrine/common": ">2.2,<2.4"
121            },
122            "require-dev": {
123                "alcaeus/mongo-php-adapter": "^1.1",
124                "doctrine/coding-standard": "^6.0",
125                "mongodb/mongodb": "^1.1",
126                "phpunit/phpunit": "^7.0",
127                "predis/predis": "~1.0"
128            },
129            "suggest": {
130                "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
131            },
132            "type": "library",
133            "extra": {
134                "branch-alias": {
135                    "dev-master": "1.9.x-dev"
136                }
137            },
138            "autoload": {
139                "psr-4": {
140                    "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
141                }
142            },
143            "notification-url": "https://packagist.org/downloads/",
144            "license": [
145                "MIT"
146            ],
147            "authors": [
148                {
149                    "name": "Guilherme Blanco",
150                    "email": "guilhermeblanco@gmail.com"
151                },
152                {
153                    "name": "Roman Borschel",
154                    "email": "roman@code-factory.org"
155                },
156                {
157                    "name": "Benjamin Eberlei",
158                    "email": "kontakt@beberlei.de"
159                },
160                {
161                    "name": "Jonathan Wage",
162                    "email": "jonwage@gmail.com"
163                },
164                {
165                    "name": "Johannes Schmitt",
166                    "email": "schmittjoh@gmail.com"
167                }
168            ],
169            "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
170            "homepage": "https://www.doctrine-project.org/projects/cache.html",
171            "keywords": [
172                "abstraction",
173                "apcu",
174                "cache",
175                "caching",
176                "couchdb",
177                "memcached",
178                "php",
179                "redis",
180                "xcache"
181            ],
182            "time": "2019-11-29T15:36:20+00:00"
183        },
184        {
185            "name": "doctrine/dbal",
186            "version": "v2.9.3",
187            "source": {
188                "type": "git",
189                "url": "https://github.com/doctrine/dbal.git",
190                "reference": "7345cd59edfa2036eb0fa4264b77ae2576842035"
191            },
192            "dist": {
193                "type": "zip",
194                "url": "https://api.github.com/repos/doctrine/dbal/zipball/7345cd59edfa2036eb0fa4264b77ae2576842035",
195                "reference": "7345cd59edfa2036eb0fa4264b77ae2576842035",
196                "shasum": ""
197            },
198            "require": {
199                "doctrine/cache": "^1.0",
200                "doctrine/event-manager": "^1.0",
201                "ext-pdo": "*",
202                "php": "^7.1"
203            },
204            "require-dev": {
205                "doctrine/coding-standard": "^5.0",
206                "jetbrains/phpstorm-stubs": "^2018.1.2",
207                "phpstan/phpstan": "^0.10.1",
208                "phpunit/phpunit": "^7.4",
209                "symfony/console": "^2.0.5|^3.0|^4.0",
210                "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
211            },
212            "suggest": {
213                "symfony/console": "For helpful console commands such as SQL execution and import of files."
214            },
215            "bin": [
216                "bin/doctrine-dbal"
217            ],
218            "type": "library",
219            "extra": {
220                "branch-alias": {
221                    "dev-master": "2.9.x-dev",
222                    "dev-develop": "3.0.x-dev"
223                }
224            },
225            "autoload": {
226                "psr-4": {
227                    "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
228                }
229            },
230            "notification-url": "https://packagist.org/downloads/",
231            "license": [
232                "MIT"
233            ],
234            "authors": [
235                {
236                    "name": "Guilherme Blanco",
237                    "email": "guilhermeblanco@gmail.com"
238                },
239                {
240                    "name": "Roman Borschel",
241                    "email": "roman@code-factory.org"
242                },
243                {
244                    "name": "Benjamin Eberlei",
245                    "email": "kontakt@beberlei.de"
246                },
247                {
248                    "name": "Jonathan Wage",
249                    "email": "jonwage@gmail.com"
250                }
251            ],
252            "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
253            "homepage": "https://www.doctrine-project.org/projects/dbal.html",
254            "keywords": [
255                "abstraction",
256                "database",
257                "dbal",
258                "mysql",
259                "persistence",
260                "pgsql",
261                "php",
262                "queryobject"
263            ],
264            "time": "2019-11-02T22:19:34+00:00"
265        },
266        {
267            "name": "doctrine/event-manager",
268            "version": "1.1.0",
269            "source": {
270                "type": "git",
271                "url": "https://github.com/doctrine/event-manager.git",
272                "reference": "629572819973f13486371cb611386eb17851e85c"
273            },
274            "dist": {
275                "type": "zip",
276                "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c",
277                "reference": "629572819973f13486371cb611386eb17851e85c",
278                "shasum": ""
279            },
280            "require": {
281                "php": "^7.1"
282            },
283            "conflict": {
284                "doctrine/common": "<2.9@dev"
285            },
286            "require-dev": {
287                "doctrine/coding-standard": "^6.0",
288                "phpunit/phpunit": "^7.0"
289            },
290            "type": "library",
291            "extra": {
292                "branch-alias": {
293                    "dev-master": "1.0.x-dev"
294                }
295            },
296            "autoload": {
297                "psr-4": {
298                    "Doctrine\\Common\\": "lib/Doctrine/Common"
299                }
300            },
301            "notification-url": "https://packagist.org/downloads/",
302            "license": [
303                "MIT"
304            ],
305            "authors": [
306                {
307                    "name": "Guilherme Blanco",
308                    "email": "guilhermeblanco@gmail.com"
309                },
310                {
311                    "name": "Roman Borschel",
312                    "email": "roman@code-factory.org"
313                },
314                {
315                    "name": "Benjamin Eberlei",
316                    "email": "kontakt@beberlei.de"
317                },
318                {
319                    "name": "Jonathan Wage",
320                    "email": "jonwage@gmail.com"
321                },
322                {
323                    "name": "Johannes Schmitt",
324                    "email": "schmittjoh@gmail.com"
325                },
326                {
327                    "name": "Marco Pivetta",
328                    "email": "ocramius@gmail.com"
329                }
330            ],
331            "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
332            "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
333            "keywords": [
334                "event",
335                "event dispatcher",
336                "event manager",
337                "event system",
338                "events"
339            ],
340            "time": "2019-11-10T09:48:07+00:00"
341        },
342        {
343            "name": "doctrine/inflector",
344            "version": "1.3.1",
345            "source": {
346                "type": "git",
347                "url": "https://github.com/doctrine/inflector.git",
348                "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1"
349            },
350            "dist": {
351                "type": "zip",
352                "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
353                "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
354                "shasum": ""
355            },
356            "require": {
357                "php": "^7.1"
358            },
359            "require-dev": {
360                "phpunit/phpunit": "^6.2"
361            },
362            "type": "library",
363            "extra": {
364                "branch-alias": {
365                    "dev-master": "1.3.x-dev"
366                }
367            },
368            "autoload": {
369                "psr-4": {
370                    "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
371                }
372            },
373            "notification-url": "https://packagist.org/downloads/",
374            "license": [
375                "MIT"
376            ],
377            "authors": [
378                {
379                    "name": "Guilherme Blanco",
380                    "email": "guilhermeblanco@gmail.com"
381                },
382                {
383                    "name": "Roman Borschel",
384                    "email": "roman@code-factory.org"
385                },
386                {
387                    "name": "Benjamin Eberlei",
388                    "email": "kontakt@beberlei.de"
389                },
390                {
391                    "name": "Jonathan Wage",
392                    "email": "jonwage@gmail.com"
393                },
394                {
395                    "name": "Johannes Schmitt",
396                    "email": "schmittjoh@gmail.com"
397                }
398            ],
399            "description": "Common String Manipulations with regard to casing and singular/plural rules.",
400            "homepage": "http://www.doctrine-project.org",
401            "keywords": [
402                "inflection",
403                "pluralize",
404                "singularize",
405                "string"
406            ],
407            "time": "2019-10-30T19:59:35+00:00"
408        },
409        {
410            "name": "doctrine/lexer",
411            "version": "1.0.2",
412            "source": {
413                "type": "git",
414                "url": "https://github.com/doctrine/lexer.git",
415                "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
416            },
417            "dist": {
418                "type": "zip",
419                "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
420                "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
421                "shasum": ""
422            },
423            "require": {
424                "php": ">=5.3.2"
425            },
426            "require-dev": {
427                "phpunit/phpunit": "^4.5"
428            },
429            "type": "library",
430            "extra": {
431                "branch-alias": {
432                    "dev-master": "1.0.x-dev"
433                }
434            },
435            "autoload": {
436                "psr-4": {
437                    "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
438                }
439            },
440            "notification-url": "https://packagist.org/downloads/",
441            "license": [
442                "MIT"
443            ],
444            "authors": [
445                {
446                    "name": "Roman Borschel",
447                    "email": "roman@code-factory.org"
448                },
449                {
450                    "name": "Guilherme Blanco",
451                    "email": "guilhermeblanco@gmail.com"
452                },
453                {
454                    "name": "Johannes Schmitt",
455                    "email": "schmittjoh@gmail.com"
456                }
457            ],
458            "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
459            "homepage": "https://www.doctrine-project.org/projects/lexer.html",
460            "keywords": [
461                "annotations",
462                "docblock",
463                "lexer",
464                "parser",
465                "php"
466            ],
467            "time": "2019-06-08T11:03:04+00:00"
468        },
469        {
470            "name": "egulias/email-validator",
471            "version": "2.1.14",
472            "source": {
473                "type": "git",
474                "url": "https://github.com/egulias/EmailValidator.git",
475                "reference": "c4b8d12921999d8a561004371701dbc2e05b5ece"
476            },
477            "dist": {
478                "type": "zip",
479                "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c4b8d12921999d8a561004371701dbc2e05b5ece",
480                "reference": "c4b8d12921999d8a561004371701dbc2e05b5ece",
481                "shasum": ""
482            },
483            "require": {
484                "doctrine/lexer": "^1.0.1",
485                "php": ">=5.5"
486            },
487            "require-dev": {
488                "dominicsayers/isemail": "^3.0.7",
489                "phpunit/phpunit": "^4.8.36|^7.5.15",
490                "satooshi/php-coveralls": "^1.0.1"
491            },
492            "suggest": {
493                "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
494            },
495            "type": "library",
496            "extra": {
497                "branch-alias": {
498                    "dev-master": "2.1.x-dev"
499                }
500            },
501            "autoload": {
502                "psr-4": {
503                    "Egulias\\EmailValidator\\": "EmailValidator"
504                }
505            },
506            "notification-url": "https://packagist.org/downloads/",
507            "license": [
508                "MIT"
509            ],
510            "authors": [
511                {
512                    "name": "Eduardo Gulias Davis"
513                }
514            ],
515            "description": "A library for validating emails against several RFCs",
516            "homepage": "https://github.com/egulias/EmailValidator",
517            "keywords": [
518                "email",
519                "emailvalidation",
520                "emailvalidator",
521                "validation",
522                "validator"
523            ],
524            "time": "2020-01-05T14:11:20+00:00"
525        },
526        {
527            "name": "ezyang/htmlpurifier",
528            "version": "v4.12.0",
529            "source": {
530                "type": "git",
531                "url": "https://github.com/ezyang/htmlpurifier.git",
532                "reference": "a617e55bc62a87eec73bd456d146d134ad716f03"
533            },
534            "dist": {
535                "type": "zip",
536                "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/a617e55bc62a87eec73bd456d146d134ad716f03",
537                "reference": "a617e55bc62a87eec73bd456d146d134ad716f03",
538                "shasum": ""
539            },
540            "require": {
541                "php": ">=5.2"
542            },
543            "require-dev": {
544                "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
545            },
546            "type": "library",
547            "autoload": {
548                "psr-0": {
549                    "HTMLPurifier": "library/"
550                },
551                "files": [
552                    "library/HTMLPurifier.composer.php"
553                ]
554            },
555            "notification-url": "https://packagist.org/downloads/",
556            "license": [
557                "LGPL-2.1-or-later"
558            ],
559            "authors": [
560                {
561                    "name": "Edward Z. Yang",
562                    "email": "admin@htmlpurifier.org",
563                    "homepage": "http://ezyang.com"
564                }
565            ],
566            "description": "Standards compliant HTML filter written in PHP",
567            "homepage": "http://htmlpurifier.org/",
568            "keywords": [
569                "html"
570            ],
571            "time": "2019-10-28T03:44:26+00:00"
572        },
573        {
574            "name": "fig/http-message-util",
575            "version": "1.1.3",
576            "source": {
577                "type": "git",
578                "url": "https://github.com/php-fig/http-message-util.git",
579                "reference": "35b19404371b31b3a43823c755398c48c9966db4"
580            },
581            "dist": {
582                "type": "zip",
583                "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/35b19404371b31b3a43823c755398c48c9966db4",
584                "reference": "35b19404371b31b3a43823c755398c48c9966db4",
585                "shasum": ""
586            },
587            "require": {
588                "php": "^5.3 || ^7.0",
589                "psr/http-message": "^1.0"
590            },
591            "type": "library",
592            "extra": {
593                "branch-alias": {
594                    "dev-master": "1.1.x-dev"
595                }
596            },
597            "autoload": {
598                "psr-4": {
599                    "Fig\\Http\\Message\\": "src/"
600                }
601            },
602            "notification-url": "https://packagist.org/downloads/",
603            "license": [
604                "MIT"
605            ],
606            "authors": [
607                {
608                    "name": "PHP-FIG",
609                    "homepage": "http://www.php-fig.org/"
610                }
611            ],
612            "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
613            "keywords": [
614                "http",
615                "http-message",
616                "psr",
617                "psr-7",
618                "request",
619                "response"
620            ],
621            "time": "2018-11-19T16:19:58+00:00"
622        },
623        {
624            "name": "fisharebest/algorithm",
625            "version": "1.5.1",
626            "source": {
627                "type": "git",
628                "url": "https://github.com/fisharebest/algorithm.git",
629                "reference": "7d1bc0fc91b66cf613af9147e9a287c905a8b062"
630            },
631            "dist": {
632                "type": "zip",
633                "url": "https://api.github.com/repos/fisharebest/algorithm/zipball/7d1bc0fc91b66cf613af9147e9a287c905a8b062",
634                "reference": "7d1bc0fc91b66cf613af9147e9a287c905a8b062",
635                "shasum": ""
636            },
637            "require": {
638                "php": ">=5.3.0"
639            },
640            "require-dev": {
641                "php-coveralls/php-coveralls": "*",
642                "phpunit/phpunit": "4.*"
643            },
644            "type": "library",
645            "autoload": {
646                "psr-4": {
647                    "Fisharebest\\Algorithm\\": "src/"
648                }
649            },
650            "notification-url": "https://packagist.org/downloads/",
651            "license": [
652                "GPL-3.0+"
653            ],
654            "authors": [
655                {
656                    "name": "Greg Roach",
657                    "email": "greg@subaqua.co.uk",
658                    "role": "Developer"
659                }
660            ],
661            "description": "Implementation of standard algorithms in PHP.",
662            "homepage": "https://github.com/fisharebest/algorithm",
663            "keywords": [
664                "Algorithm",
665                "diff",
666                "dijkstra",
667                "myers"
668            ],
669            "time": "2018-12-24T08:53:40+00:00"
670        },
671        {
672            "name": "fisharebest/ext-calendar",
673            "version": "2.5.0",
674            "source": {
675                "type": "git",
676                "url": "https://github.com/fisharebest/ext-calendar.git",
677                "reference": "155a2d3f5713e1e1805d68cdb42a28ca842e7329"
678            },
679            "dist": {
680                "type": "zip",
681                "url": "https://api.github.com/repos/fisharebest/ext-calendar/zipball/155a2d3f5713e1e1805d68cdb42a28ca842e7329",
682                "reference": "155a2d3f5713e1e1805d68cdb42a28ca842e7329",
683                "shasum": ""
684            },
685            "require": {
686                "php": ">=5.3.0"
687            },
688            "require-dev": {
689                "phpunit/phpunit": "<6",
690                "satooshi/php-coveralls": "*"
691            },
692            "type": "library",
693            "autoload": {
694                "files": [
695                    "src/shims.php"
696                ],
697                "psr-4": {
698                    "Fisharebest\\ExtCalendar\\": "src/"
699                }
700            },
701            "notification-url": "https://packagist.org/downloads/",
702            "license": [
703                "GPL-3.0+"
704            ],
705            "authors": [
706                {
707                    "name": "Greg Roach",
708                    "email": "fisharebest@gmail.com",
709                    "role": "Developer"
710                }
711            ],
712            "description": "Implementation of the Arabic (Hijri), French, Gregorian, Jewish, Julian and Persian (Jalali) calendars.  Also provides a replacement for the PHP ext/calendar extension.",
713            "homepage": "https://github.com/fisharebest/ext-calendar",
714            "keywords": [
715                "Jalali",
716                "arabic",
717                "calendar",
718                "ext-calendar",
719                "french",
720                "gregorian",
721                "hebrew",
722                "hijri",
723                "jewish",
724                "julian",
725                "julian day",
726                "julian day number",
727                "persian",
728                "shamsi"
729            ],
730            "time": "2018-09-17T20:40:07+00:00"
731        },
732        {
733            "name": "fisharebest/flysystem-chroot-adapter",
734            "version": "1.0.1",
735            "source": {
736                "type": "git",
737                "url": "https://github.com/fisharebest/flysystem-chroot-adapter.git",
738                "reference": "378954c39f63996eb6171f1fd4fef1ee2eb03229"
739            },
740            "dist": {
741                "type": "zip",
742                "url": "https://api.github.com/repos/fisharebest/flysystem-chroot-adapter/zipball/378954c39f63996eb6171f1fd4fef1ee2eb03229",
743                "reference": "378954c39f63996eb6171f1fd4fef1ee2eb03229",
744                "shasum": ""
745            },
746            "require": {
747                "league/flysystem": "~1.0"
748            },
749            "require-dev": {
750                "league/flysystem-memory": "~1.0",
751                "php-coveralls/php-coveralls": "*",
752                "phpunit/phpunit": "~6.0"
753            },
754            "type": "library",
755            "autoload": {
756                "psr-4": {
757                    "Fisharebest\\Flysystem\\Adapter\\": "src/"
758                }
759            },
760            "notification-url": "https://packagist.org/downloads/",
761            "license": [
762                "MIT"
763            ],
764            "authors": [
765                {
766                    "name": "Greg Roach",
767                    "email": "fisharebest@gmail.com",
768                    "role": "Developer"
769                }
770            ],
771            "description": "Creates a filesystem from a sub-folder in another filesystem.",
772            "homepage": "https://github.com/fisharebest/flysystem-chroot-adapter",
773            "keywords": [
774                "Flysystem",
775                "adapter",
776                "chroot"
777            ],
778            "time": "2019-09-24T14:58:15+00:00"
779        },
780        {
781            "name": "fisharebest/localization",
782            "version": "1.15.1",
783            "source": {
784                "type": "git",
785                "url": "https://github.com/fisharebest/localization.git",
786                "reference": "2f2b620e90998cc263d9fcef87e8b173376d1b0c"
787            },
788            "dist": {
789                "type": "zip",
790                "url": "https://api.github.com/repos/fisharebest/localization/zipball/2f2b620e90998cc263d9fcef87e8b173376d1b0c",
791                "reference": "2f2b620e90998cc263d9fcef87e8b173376d1b0c",
792                "shasum": ""
793            },
794            "require": {
795                "php": ">=5.3.0"
796            },
797            "require-dev": {
798                "ext-simplexml": "*",
799                "php-coveralls/php-coveralls": "*",
800                "phpunit/phpunit": "*"
801            },
802            "type": "library",
803            "autoload": {
804                "psr-4": {
805                    "Fisharebest\\Localization\\": "src/"
806                }
807            },
808            "notification-url": "https://packagist.org/downloads/",
809            "license": [
810                "GPL-3.0+"
811            ],
812            "authors": [
813                {
814                    "name": "Greg Roach",
815                    "email": "fisharebest@gmail.com",
816                    "role": "Developer"
817                }
818            ],
819            "description": "A lightweight localization database and translation tools, with data from the CLDR, IANA, ISO, etc.",
820            "homepage": "https://github.com/fisharebest/localization",
821            "keywords": [
822                "cldr",
823                "gettext",
824                "i18n",
825                "l10n",
826                "language",
827                "locale",
828                "localization",
829                "script",
830                "translate",
831                "translation"
832            ],
833            "time": "2019-07-02T10:07:27+00:00"
834        },
835        {
836            "name": "guzzlehttp/guzzle",
837            "version": "6.5.2",
838            "source": {
839                "type": "git",
840                "url": "https://github.com/guzzle/guzzle.git",
841                "reference": "43ece0e75098b7ecd8d13918293029e555a50f82"
842            },
843            "dist": {
844                "type": "zip",
845                "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82",
846                "reference": "43ece0e75098b7ecd8d13918293029e555a50f82",
847                "shasum": ""
848            },
849            "require": {
850                "ext-json": "*",
851                "guzzlehttp/promises": "^1.0",
852                "guzzlehttp/psr7": "^1.6.1",
853                "php": ">=5.5"
854            },
855            "require-dev": {
856                "ext-curl": "*",
857                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
858                "psr/log": "^1.1"
859            },
860            "suggest": {
861                "ext-intl": "Required for Internationalized Domain Name (IDN) support",
862                "psr/log": "Required for using the Log middleware"
863            },
864            "type": "library",
865            "extra": {
866                "branch-alias": {
867                    "dev-master": "6.5-dev"
868                }
869            },
870            "autoload": {
871                "psr-4": {
872                    "GuzzleHttp\\": "src/"
873                },
874                "files": [
875                    "src/functions_include.php"
876                ]
877            },
878            "notification-url": "https://packagist.org/downloads/",
879            "license": [
880                "MIT"
881            ],
882            "authors": [
883                {
884                    "name": "Michael Dowling",
885                    "email": "mtdowling@gmail.com",
886                    "homepage": "https://github.com/mtdowling"
887                }
888            ],
889            "description": "Guzzle is a PHP HTTP client library",
890            "homepage": "http://guzzlephp.org/",
891            "keywords": [
892                "client",
893                "curl",
894                "framework",
895                "http",
896                "http client",
897                "rest",
898                "web service"
899            ],
900            "time": "2019-12-23T11:57:10+00:00"
901        },
902        {
903            "name": "guzzlehttp/promises",
904            "version": "v1.3.1",
905            "source": {
906                "type": "git",
907                "url": "https://github.com/guzzle/promises.git",
908                "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
909            },
910            "dist": {
911                "type": "zip",
912                "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
913                "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
914                "shasum": ""
915            },
916            "require": {
917                "php": ">=5.5.0"
918            },
919            "require-dev": {
920                "phpunit/phpunit": "^4.0"
921            },
922            "type": "library",
923            "extra": {
924                "branch-alias": {
925                    "dev-master": "1.4-dev"
926                }
927            },
928            "autoload": {
929                "psr-4": {
930                    "GuzzleHttp\\Promise\\": "src/"
931                },
932                "files": [
933                    "src/functions_include.php"
934                ]
935            },
936            "notification-url": "https://packagist.org/downloads/",
937            "license": [
938                "MIT"
939            ],
940            "authors": [
941                {
942                    "name": "Michael Dowling",
943                    "email": "mtdowling@gmail.com",
944                    "homepage": "https://github.com/mtdowling"
945                }
946            ],
947            "description": "Guzzle promises library",
948            "keywords": [
949                "promise"
950            ],
951            "time": "2016-12-20T10:07:11+00:00"
952        },
953        {
954            "name": "guzzlehttp/psr7",
955            "version": "1.6.1",
956            "source": {
957                "type": "git",
958                "url": "https://github.com/guzzle/psr7.git",
959                "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
960            },
961            "dist": {
962                "type": "zip",
963                "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
964                "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
965                "shasum": ""
966            },
967            "require": {
968                "php": ">=5.4.0",
969                "psr/http-message": "~1.0",
970                "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
971            },
972            "provide": {
973                "psr/http-message-implementation": "1.0"
974            },
975            "require-dev": {
976                "ext-zlib": "*",
977                "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
978            },
979            "suggest": {
980                "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
981            },
982            "type": "library",
983            "extra": {
984                "branch-alias": {
985                    "dev-master": "1.6-dev"
986                }
987            },
988            "autoload": {
989                "psr-4": {
990                    "GuzzleHttp\\Psr7\\": "src/"
991                },
992                "files": [
993                    "src/functions_include.php"
994                ]
995            },
996            "notification-url": "https://packagist.org/downloads/",
997            "license": [
998                "MIT"
999            ],
1000            "authors": [
1001                {
1002                    "name": "Michael Dowling",
1003                    "email": "mtdowling@gmail.com",
1004                    "homepage": "https://github.com/mtdowling"
1005                },
1006                {
1007                    "name": "Tobias Schultze",
1008                    "homepage": "https://github.com/Tobion"
1009                }
1010            ],
1011            "description": "PSR-7 message implementation that also provides common utility methods",
1012            "keywords": [
1013                "http",
1014                "message",
1015                "psr-7",
1016                "request",
1017                "response",
1018                "stream",
1019                "uri",
1020                "url"
1021            ],
1022            "time": "2019-07-01T23:21:34+00:00"
1023        },
1024        {
1025            "name": "illuminate/container",
1026            "version": "v5.8.36",
1027            "source": {
1028                "type": "git",
1029                "url": "https://github.com/illuminate/container.git",
1030                "reference": "b42e5ef939144b77f78130918da0ce2d9ee16574"
1031            },
1032            "dist": {
1033                "type": "zip",
1034                "url": "https://api.github.com/repos/illuminate/container/zipball/b42e5ef939144b77f78130918da0ce2d9ee16574",
1035                "reference": "b42e5ef939144b77f78130918da0ce2d9ee16574",
1036                "shasum": ""
1037            },
1038            "require": {
1039                "illuminate/contracts": "5.8.*",
1040                "illuminate/support": "5.8.*",
1041                "php": "^7.1.3",
1042                "psr/container": "^1.0"
1043            },
1044            "type": "library",
1045            "extra": {
1046                "branch-alias": {
1047                    "dev-master": "5.8-dev"
1048                }
1049            },
1050            "autoload": {
1051                "psr-4": {
1052                    "Illuminate\\Container\\": ""
1053                }
1054            },
1055            "notification-url": "https://packagist.org/downloads/",
1056            "license": [
1057                "MIT"
1058            ],
1059            "authors": [
1060                {
1061                    "name": "Taylor Otwell",
1062                    "email": "taylor@laravel.com"
1063                }
1064            ],
1065            "description": "The Illuminate Container package.",
1066            "homepage": "https://laravel.com",
1067            "time": "2019-08-20T02:00:23+00:00"
1068        },
1069        {
1070            "name": "illuminate/contracts",
1071            "version": "v5.8.36",
1072            "source": {
1073                "type": "git",
1074                "url": "https://github.com/illuminate/contracts.git",
1075                "reference": "00fc6afee788fa07c311b0650ad276585f8aef96"
1076            },
1077            "dist": {
1078                "type": "zip",
1079                "url": "https://api.github.com/repos/illuminate/contracts/zipball/00fc6afee788fa07c311b0650ad276585f8aef96",
1080                "reference": "00fc6afee788fa07c311b0650ad276585f8aef96",
1081                "shasum": ""
1082            },
1083            "require": {
1084                "php": "^7.1.3",
1085                "psr/container": "^1.0",
1086                "psr/simple-cache": "^1.0"
1087            },
1088            "type": "library",
1089            "extra": {
1090                "branch-alias": {
1091                    "dev-master": "5.8-dev"
1092                }
1093            },
1094            "autoload": {
1095                "psr-4": {
1096                    "Illuminate\\Contracts\\": ""
1097                }
1098            },
1099            "notification-url": "https://packagist.org/downloads/",
1100            "license": [
1101                "MIT"
1102            ],
1103            "authors": [
1104                {
1105                    "name": "Taylor Otwell",
1106                    "email": "taylor@laravel.com"
1107                }
1108            ],
1109            "description": "The Illuminate Contracts package.",
1110            "homepage": "https://laravel.com",
1111            "time": "2019-07-30T13:57:21+00:00"
1112        },
1113        {
1114            "name": "illuminate/database",
1115            "version": "v5.8.36",
1116            "source": {
1117                "type": "git",
1118                "url": "https://github.com/illuminate/database.git",
1119                "reference": "ac9ae2d82b8a6137400f17b3eea258be3518daa9"
1120            },
1121            "dist": {
1122                "type": "zip",
1123                "url": "https://api.github.com/repos/illuminate/database/zipball/ac9ae2d82b8a6137400f17b3eea258be3518daa9",
1124                "reference": "ac9ae2d82b8a6137400f17b3eea258be3518daa9",
1125                "shasum": ""
1126            },
1127            "require": {
1128                "ext-json": "*",
1129                "illuminate/container": "5.8.*",
1130                "illuminate/contracts": "5.8.*",
1131                "illuminate/support": "5.8.*",
1132                "php": "^7.1.3"
1133            },
1134            "suggest": {
1135                "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
1136                "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
1137                "illuminate/console": "Required to use the database commands (5.8.*).",
1138                "illuminate/events": "Required to use the observers with Eloquent (5.8.*).",
1139                "illuminate/filesystem": "Required to use the migrations (5.8.*).",
1140                "illuminate/pagination": "Required to paginate the result set (5.8.*)."
1141            },
1142            "type": "library",
1143            "extra": {
1144                "branch-alias": {
1145                    "dev-master": "5.8-dev"
1146                }
1147            },
1148            "autoload": {
1149                "psr-4": {
1150                    "Illuminate\\Database\\": ""
1151                }
1152            },
1153            "notification-url": "https://packagist.org/downloads/",
1154            "license": [
1155                "MIT"
1156            ],
1157            "authors": [
1158                {
1159                    "name": "Taylor Otwell",
1160                    "email": "taylor@laravel.com"
1161                }
1162            ],
1163            "description": "The Illuminate Database package.",
1164            "homepage": "https://laravel.com",
1165            "keywords": [
1166                "database",
1167                "laravel",
1168                "orm",
1169                "sql"
1170            ],
1171            "time": "2019-10-03T16:22:57+00:00"
1172        },
1173        {
1174            "name": "illuminate/support",
1175            "version": "v5.8.36",
1176            "source": {
1177                "type": "git",
1178                "url": "https://github.com/illuminate/support.git",
1179                "reference": "df4af6a32908f1d89d74348624b57e3233eea247"
1180            },
1181            "dist": {
1182                "type": "zip",
1183                "url": "https://api.github.com/repos/illuminate/support/zipball/df4af6a32908f1d89d74348624b57e3233eea247",
1184                "reference": "df4af6a32908f1d89d74348624b57e3233eea247",
1185                "shasum": ""
1186            },
1187            "require": {
1188                "doctrine/inflector": "^1.1",
1189                "ext-json": "*",
1190                "ext-mbstring": "*",
1191                "illuminate/contracts": "5.8.*",
1192                "nesbot/carbon": "^1.26.3 || ^2.0",
1193                "php": "^7.1.3"
1194            },
1195            "conflict": {
1196                "tightenco/collect": "<5.5.33"
1197            },
1198            "suggest": {
1199                "illuminate/filesystem": "Required to use the composer class (5.8.*).",
1200                "moontoast/math": "Required to use ordered UUIDs (^1.1).",
1201                "ramsey/uuid": "Required to use Str::uuid() (^3.7).",
1202                "symfony/process": "Required to use the composer class (^4.2).",
1203                "symfony/var-dumper": "Required to use the dd function (^4.2).",
1204                "vlucas/phpdotenv": "Required to use the env helper (^3.3)."
1205            },
1206            "type": "library",
1207            "extra": {
1208                "branch-alias": {
1209                    "dev-master": "5.8-dev"
1210                }
1211            },
1212            "autoload": {
1213                "psr-4": {
1214                    "Illuminate\\Support\\": ""
1215                },
1216                "files": [
1217                    "helpers.php"
1218                ]
1219            },
1220            "notification-url": "https://packagist.org/downloads/",
1221            "license": [
1222                "MIT"
1223            ],
1224            "authors": [
1225                {
1226                    "name": "Taylor Otwell",
1227                    "email": "taylor@laravel.com"
1228                }
1229            ],
1230            "description": "The Illuminate Support package.",
1231            "homepage": "https://laravel.com",
1232            "time": "2019-12-12T14:16:47+00:00"
1233        },
1234        {
1235            "name": "intervention/image",
1236            "version": "2.5.1",
1237            "source": {
1238                "type": "git",
1239                "url": "https://github.com/Intervention/image.git",
1240                "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
1241            },
1242            "dist": {
1243                "type": "zip",
1244                "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
1245                "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
1246                "shasum": ""
1247            },
1248            "require": {
1249                "ext-fileinfo": "*",
1250                "guzzlehttp/psr7": "~1.1",
1251                "php": ">=5.4.0"
1252            },
1253            "require-dev": {
1254                "mockery/mockery": "~0.9.2",
1255                "phpunit/phpunit": "^4.8 || ^5.7"
1256            },
1257            "suggest": {
1258                "ext-gd": "to use GD library based image processing.",
1259                "ext-imagick": "to use Imagick based image processing.",
1260                "intervention/imagecache": "Caching extension for the Intervention Image library"
1261            },
1262            "type": "library",
1263            "extra": {
1264                "branch-alias": {
1265                    "dev-master": "2.4-dev"
1266                },
1267                "laravel": {
1268                    "providers": [
1269                        "Intervention\\Image\\ImageServiceProvider"
1270                    ],
1271                    "aliases": {
1272                        "Image": "Intervention\\Image\\Facades\\Image"
1273                    }
1274                }
1275            },
1276            "autoload": {
1277                "psr-4": {
1278                    "Intervention\\Image\\": "src/Intervention/Image"
1279                }
1280            },
1281            "notification-url": "https://packagist.org/downloads/",
1282            "license": [
1283                "MIT"
1284            ],
1285            "authors": [
1286                {
1287                    "name": "Oliver Vogel",
1288                    "email": "oliver@olivervogel.com",
1289                    "homepage": "http://olivervogel.com/"
1290                }
1291            ],
1292            "description": "Image handling and manipulation library with support for Laravel integration",
1293            "homepage": "http://image.intervention.io/",
1294            "keywords": [
1295                "gd",
1296                "image",
1297                "imagick",
1298                "laravel",
1299                "thumbnail",
1300                "watermark"
1301            ],
1302            "time": "2019-11-02T09:15:47+00:00"
1303        },
1304        {
1305            "name": "league/commonmark",
1306            "version": "1.2.0",
1307            "source": {
1308                "type": "git",
1309                "url": "https://github.com/thephpleague/commonmark.git",
1310                "reference": "2533c389fd2a7573d4f7be279b1c33cf941c8dfc"
1311            },
1312            "dist": {
1313                "type": "zip",
1314                "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2533c389fd2a7573d4f7be279b1c33cf941c8dfc",
1315                "reference": "2533c389fd2a7573d4f7be279b1c33cf941c8dfc",
1316                "shasum": ""
1317            },
1318            "require": {
1319                "ext-mbstring": "*",
1320                "php": "^7.1"
1321            },
1322            "replace": {
1323                "colinodell/commonmark-php": "*"
1324            },
1325            "require-dev": {
1326                "cebe/markdown": "~1.0",
1327                "commonmark/commonmark.js": "0.29.1",
1328                "erusev/parsedown": "~1.0",
1329                "ext-json": "*",
1330                "michelf/php-markdown": "~1.4",
1331                "mikehaertl/php-shellcommand": "^1.4",
1332                "phpstan/phpstan-shim": "^0.11.5",
1333                "phpunit/phpunit": "^7.5",
1334                "scrutinizer/ocular": "^1.5",
1335                "symfony/finder": "^4.2"
1336            },
1337            "suggest": {
1338                "league/commonmark-extras": "Library of useful extensions including smart punctuation"
1339            },
1340            "bin": [
1341                "bin/commonmark"
1342            ],
1343            "type": "library",
1344            "extra": {
1345                "branch-alias": {
1346                    "dev-master": "1.3-dev"
1347                }
1348            },
1349            "autoload": {
1350                "psr-4": {
1351                    "League\\CommonMark\\": "src"
1352                }
1353            },
1354            "notification-url": "https://packagist.org/downloads/",
1355            "license": [
1356                "BSD-3-Clause"
1357            ],
1358            "authors": [
1359                {
1360                    "name": "Colin O'Dell",
1361                    "email": "colinodell@gmail.com",
1362                    "homepage": "https://www.colinodell.com",
1363                    "role": "Lead Developer"
1364                }
1365            ],
1366            "description": "PHP Markdown parser based on the CommonMark spec",
1367            "homepage": "https://commonmark.thephpleague.com",
1368            "keywords": [
1369                "commonmark",
1370                "markdown",
1371                "parser"
1372            ],
1373            "time": "2020-01-09T22:41:09+00:00"
1374        },
1375        {
1376            "name": "league/commonmark-ext-table",
1377            "version": "v2.1.0",
1378            "source": {
1379                "type": "git",
1380                "url": "https://github.com/thephpleague/commonmark-ext-table.git",
1381                "reference": "3228888ea69636e855efcf6636ff8e6316933fe7"
1382            },
1383            "dist": {
1384                "type": "zip",
1385                "url": "https://api.github.com/repos/thephpleague/commonmark-ext-table/zipball/3228888ea69636e855efcf6636ff8e6316933fe7",
1386                "reference": "3228888ea69636e855efcf6636ff8e6316933fe7",
1387                "shasum": ""
1388            },
1389            "require": {
1390                "league/commonmark": "~0.19.3|^1.0",
1391                "php": "^7.1"
1392            },
1393            "require-dev": {
1394                "friendsofphp/php-cs-fixer": "^2.14",
1395                "phpstan/phpstan": "~0.11",
1396                "phpunit/phpunit": "^7.0|^8.0",
1397                "symfony/var-dumper": "^4.0",
1398                "vimeo/psalm": "^3.0"
1399            },
1400            "type": "commonmark-extension",
1401            "extra": {
1402                "branch-alias": {
1403                    "dev-master": "2.2-dev"
1404                }
1405            },
1406            "autoload": {
1407                "psr-4": {
1408                    "League\\CommonMark\\Ext\\Table\\": "src"
1409                }
1410            },
1411            "notification-url": "https://packagist.org/downloads/",
1412            "license": [
1413                "MIT"
1414            ],
1415            "authors": [
1416                {
1417                    "name": "Martin Hasoň",
1418                    "email": "martin.hason@gmail.com"
1419                },
1420                {
1421                    "name": "Webuni s.r.o.",
1422                    "homepage": "https://www.webuni.cz"
1423                },
1424                {
1425                    "name": "Colin O'Dell",
1426                    "email": "colinodell@gmail.com",
1427                    "homepage": "https://www.colinodell.com"
1428                }
1429            ],
1430            "description": "Table extension for league/commonmark",
1431            "homepage": "https://github.com/thephpleague/commonmark-ext-table",
1432            "keywords": [
1433                "commonmark",
1434                "extension",
1435                "markdown",
1436                "table"
1437            ],
1438            "time": "2019-09-26T13:28:33+00:00"
1439        },
1440        {
1441            "name": "league/flysystem",
1442            "version": "1.0.63",
1443            "source": {
1444                "type": "git",
1445                "url": "https://github.com/thephpleague/flysystem.git",
1446                "reference": "8132daec326565036bc8e8d1876f77ec183a7bd6"
1447            },
1448            "dist": {
1449                "type": "zip",
1450                "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8132daec326565036bc8e8d1876f77ec183a7bd6",
1451                "reference": "8132daec326565036bc8e8d1876f77ec183a7bd6",
1452                "shasum": ""
1453            },
1454            "require": {
1455                "ext-fileinfo": "*",
1456                "php": ">=5.5.9"
1457            },
1458            "conflict": {
1459                "league/flysystem-sftp": "<1.0.6"
1460            },
1461            "require-dev": {
1462                "phpspec/phpspec": "^3.4",
1463                "phpunit/phpunit": "^5.7.10"
1464            },
1465            "suggest": {
1466                "ext-fileinfo": "Required for MimeType",
1467                "ext-ftp": "Allows you to use FTP server storage",
1468                "ext-openssl": "Allows you to use FTPS server storage",
1469                "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
1470                "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
1471                "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
1472                "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
1473                "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
1474                "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
1475                "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
1476                "league/flysystem-webdav": "Allows you to use WebDAV storage",
1477                "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
1478                "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
1479                "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
1480            },
1481            "type": "library",
1482            "extra": {
1483                "branch-alias": {
1484                    "dev-master": "1.1-dev"
1485                }
1486            },
1487            "autoload": {
1488                "psr-4": {
1489                    "League\\Flysystem\\": "src/"
1490                }
1491            },
1492            "notification-url": "https://packagist.org/downloads/",
1493            "license": [
1494                "MIT"
1495            ],
1496            "authors": [
1497                {
1498                    "name": "Frank de Jonge",
1499                    "email": "info@frenky.net"
1500                }
1501            ],
1502            "description": "Filesystem abstraction: Many filesystems, one API.",
1503            "keywords": [
1504                "Cloud Files",
1505                "WebDAV",
1506                "abstraction",
1507                "aws",
1508                "cloud",
1509                "copy.com",
1510                "dropbox",
1511                "file systems",
1512                "files",
1513                "filesystem",
1514                "filesystems",
1515                "ftp",
1516                "rackspace",
1517                "remote",
1518                "s3",
1519                "sftp",
1520                "storage"
1521            ],
1522            "time": "2020-01-04T16:30:31+00:00"
1523        },
1524        {
1525            "name": "league/flysystem-cached-adapter",
1526            "version": "1.0.9",
1527            "source": {
1528                "type": "git",
1529                "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
1530                "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f"
1531            },
1532            "dist": {
1533                "type": "zip",
1534                "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
1535                "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
1536                "shasum": ""
1537            },
1538            "require": {
1539                "league/flysystem": "~1.0",
1540                "psr/cache": "^1.0.0"
1541            },
1542            "require-dev": {
1543                "mockery/mockery": "~0.9",
1544                "phpspec/phpspec": "^3.4",
1545                "phpunit/phpunit": "^5.7",
1546                "predis/predis": "~1.0",
1547                "tedivm/stash": "~0.12"
1548            },
1549            "suggest": {
1550                "ext-phpredis": "Pure C implemented extension for PHP"
1551            },
1552            "type": "library",
1553            "autoload": {
1554                "psr-4": {
1555                    "League\\Flysystem\\Cached\\": "src/"
1556                }
1557            },
1558            "notification-url": "https://packagist.org/downloads/",
1559            "license": [
1560                "MIT"
1561            ],
1562            "authors": [
1563                {
1564                    "name": "frankdejonge",
1565                    "email": "info@frenky.net"
1566                }
1567            ],
1568            "description": "An adapter decorator to enable meta-data caching.",
1569            "time": "2018-07-09T20:51:04+00:00"
1570        },
1571        {
1572            "name": "league/flysystem-ziparchive",
1573            "version": "1.0.3",
1574            "source": {
1575                "type": "git",
1576                "url": "https://github.com/thephpleague/flysystem-ziparchive.git",
1577                "reference": "c6d7c7ea23a57ee802d533ab9eb9f19dd5c5fc45"
1578            },
1579            "dist": {
1580                "type": "zip",
1581                "url": "https://api.github.com/repos/thephpleague/flysystem-ziparchive/zipball/c6d7c7ea23a57ee802d533ab9eb9f19dd5c5fc45",
1582                "reference": "c6d7c7ea23a57ee802d533ab9eb9f19dd5c5fc45",
1583                "shasum": ""
1584            },
1585            "require": {
1586                "ext-zip": "*",
1587                "league/flysystem": "~1.0",
1588                "php": ">=5.4.0"
1589            },
1590            "require-dev": {
1591                "mockery/mockery": "0.9.*",
1592                "phpunit/phpunit": "~4.0"
1593            },
1594            "type": "library",
1595            "extra": {
1596                "branch-alias": {
1597                    "dev-master": "1.0-dev"
1598                }
1599            },
1600            "autoload": {
1601                "psr-4": {
1602                    "League\\Flysystem\\ZipArchive\\": "src/"
1603                }
1604            },
1605            "notification-url": "https://packagist.org/downloads/",
1606            "license": [
1607                "MIT"
1608            ],
1609            "authors": [
1610                {
1611                    "name": "Frank de Jonge",
1612                    "email": "info@frenky.net"
1613                }
1614            ],
1615            "description": "Flysystem adapter for ZipArchive's",
1616            "time": "2016-12-20T08:36:16+00:00"
1617        },
1618        {
1619            "name": "league/glide",
1620            "version": "1.5.0",
1621            "source": {
1622                "type": "git",
1623                "url": "https://github.com/thephpleague/glide.git",
1624                "reference": "a5477e9e822ed57b39861a17092b92553634932d"
1625            },
1626            "dist": {
1627                "type": "zip",
1628                "url": "https://api.github.com/repos/thephpleague/glide/zipball/a5477e9e822ed57b39861a17092b92553634932d",
1629                "reference": "a5477e9e822ed57b39861a17092b92553634932d",
1630                "shasum": ""
1631            },
1632            "require": {
1633                "intervention/image": "^2.4",
1634                "league/flysystem": "^1.0",
1635                "php": "^5.5 | ^7.0",
1636                "psr/http-message": "^1.0"
1637            },
1638            "require-dev": {
1639                "mockery/mockery": "~0.9",
1640                "phpunit/php-token-stream": "^1.4",
1641                "phpunit/phpunit": "~4.4"
1642            },
1643            "type": "library",
1644            "extra": {
1645                "branch-alias": {
1646                    "dev-master": "1.1-dev"
1647                }
1648            },
1649            "autoload": {
1650                "psr-4": {
1651                    "League\\Glide\\": "src/"
1652                }
1653            },
1654            "notification-url": "https://packagist.org/downloads/",
1655            "license": [
1656                "MIT"
1657            ],
1658            "authors": [
1659                {
1660                    "name": "Jonathan Reinink",
1661                    "email": "jonathan@reinink.ca",
1662                    "homepage": "http://reinink.ca"
1663                }
1664            ],
1665            "description": "Wonderfully easy on-demand image manipulation library with an HTTP based API.",
1666            "homepage": "http://glide.thephpleague.com",
1667            "keywords": [
1668                "ImageMagick",
1669                "editing",
1670                "gd",
1671                "image",
1672                "imagick",
1673                "league",
1674                "manipulation",
1675                "processing"
1676            ],
1677            "time": "2019-04-03T23:46:42+00:00"
1678        },
1679        {
1680            "name": "middlewares/client-ip",
1681            "version": "v1.3.0",
1682            "source": {
1683                "type": "git",
1684                "url": "https://github.com/middlewares/client-ip.git",
1685                "reference": "514d62f13839a045db095b03c25faeeaf0509c9c"
1686            },
1687            "dist": {
1688                "type": "zip",
1689                "url": "https://api.github.com/repos/middlewares/client-ip/zipball/514d62f13839a045db095b03c25faeeaf0509c9c",
1690                "reference": "514d62f13839a045db095b03c25faeeaf0509c9c",
1691                "shasum": ""
1692            },
1693            "require": {
1694                "php": "^7.0",
1695                "psr/http-server-middleware": "^1.0"
1696            },
1697            "require-dev": {
1698                "eloquent/phony-phpunit": "^3.0|^4.0",
1699                "friendsofphp/php-cs-fixer": "^2.0",
1700                "middlewares/utils": "^2.1",
1701                "phpstan/phpstan": "^0.9.2|^0.10.3",
1702                "phpunit/phpunit": "^6.0|^7.0",
1703                "squizlabs/php_codesniffer": "^3.0",
1704                "zendframework/zend-diactoros": "^1.3"
1705            },
1706            "type": "library",
1707            "autoload": {
1708                "psr-4": {
1709                    "Middlewares\\": "src/"
1710                }
1711            },
1712            "notification-url": "https://packagist.org/downloads/",
1713            "license": [
1714                "MIT"
1715            ],
1716            "description": "Middleware to detect the client ip and save it as a request attribute",
1717            "homepage": "https://github.com/middlewares/client-ip",
1718            "keywords": [
1719                "IP",
1720                "http",
1721                "middleware",
1722                "psr-15",
1723                "psr-7",
1724                "server"
1725            ],
1726            "time": "2019-03-29T09:10:29+00:00"
1727        },
1728        {
1729            "name": "nesbot/carbon",
1730            "version": "2.28.0",
1731            "source": {
1732                "type": "git",
1733                "url": "https://github.com/briannesbitt/Carbon.git",
1734                "reference": "e2bcbcd43e67ee6101d321d5de916251d2870ca8"
1735            },
1736            "dist": {
1737                "type": "zip",
1738                "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e2bcbcd43e67ee6101d321d5de916251d2870ca8",
1739                "reference": "e2bcbcd43e67ee6101d321d5de916251d2870ca8",
1740                "shasum": ""
1741            },
1742            "require": {
1743                "ext-json": "*",
1744                "php": "^7.1.8 || ^8.0",
1745                "symfony/translation": "^3.4 || ^4.0 || ^5.0"
1746            },
1747            "require-dev": {
1748                "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
1749                "kylekatarnls/multi-tester": "^1.1",
1750                "phpmd/phpmd": "dev-php-7.1-compatibility",
1751                "phpstan/phpstan": "^0.11",
1752                "phpunit/phpunit": "^7.5 || ^8.0",
1753                "squizlabs/php_codesniffer": "^3.4"
1754            },
1755            "bin": [
1756                "bin/carbon"
1757            ],
1758            "type": "library",
1759            "extra": {
1760                "branch-alias": {
1761                    "dev-master": "2.x-dev"
1762                },
1763                "laravel": {
1764                    "providers": [
1765                        "Carbon\\Laravel\\ServiceProvider"
1766                    ]
1767                }
1768            },
1769            "autoload": {
1770                "psr-4": {
1771                    "Carbon\\": "src/Carbon/"
1772                }
1773            },
1774            "notification-url": "https://packagist.org/downloads/",
1775            "license": [
1776                "MIT"
1777            ],
1778            "authors": [
1779                {
1780                    "name": "Brian Nesbitt",
1781                    "email": "brian@nesbot.com",
1782                    "homepage": "http://nesbot.com"
1783                },
1784                {
1785                    "name": "kylekatarnls",
1786                    "homepage": "http://github.com/kylekatarnls"
1787                }
1788            ],
1789            "description": "An API extension for DateTime that supports 281 different languages.",
1790            "homepage": "http://carbon.nesbot.com",
1791            "keywords": [
1792                "date",
1793                "datetime",
1794                "time"
1795            ],
1796            "time": "2019-12-16T16:30:25+00:00"
1797        },
1798        {
1799            "name": "nyholm/psr7",
1800            "version": "1.2.1",
1801            "source": {
1802                "type": "git",
1803                "url": "https://github.com/Nyholm/psr7.git",
1804                "reference": "55ff6b76573f5b242554c9775792bd59fb52e11c"
1805            },
1806            "dist": {
1807                "type": "zip",
1808                "url": "https://api.github.com/repos/Nyholm/psr7/zipball/55ff6b76573f5b242554c9775792bd59fb52e11c",
1809                "reference": "55ff6b76573f5b242554c9775792bd59fb52e11c",
1810                "shasum": ""
1811            },
1812            "require": {
1813                "php": "^7.1",
1814                "php-http/message-factory": "^1.0",
1815                "psr/http-factory": "^1.0",
1816                "psr/http-message": "^1.0"
1817            },
1818            "provide": {
1819                "psr/http-factory-implementation": "1.0",
1820                "psr/http-message-implementation": "1.0"
1821            },
1822            "require-dev": {
1823                "http-interop/http-factory-tests": "dev-master",
1824                "php-http/psr7-integration-tests": "dev-master",
1825                "phpunit/phpunit": "^7.5"
1826            },
1827            "type": "library",
1828            "extra": {
1829                "branch-alias": {
1830                    "dev-master": "1.0-dev"
1831                }
1832            },
1833            "autoload": {
1834                "psr-4": {
1835                    "Nyholm\\Psr7\\": "src/"
1836                }
1837            },
1838            "notification-url": "https://packagist.org/downloads/",
1839            "license": [
1840                "MIT"
1841            ],
1842            "authors": [
1843                {
1844                    "name": "Tobias Nyholm",
1845                    "email": "tobias.nyholm@gmail.com"
1846                },
1847                {
1848                    "name": "Martijn van der Ven",
1849                    "email": "martijn@vanderven.se"
1850                }
1851            ],
1852            "description": "A fast PHP7 implementation of PSR-7",
1853            "homepage": "http://tnyholm.se",
1854            "keywords": [
1855                "psr-17",
1856                "psr-7"
1857            ],
1858            "time": "2019-09-05T13:24:16+00:00"
1859        },
1860        {
1861            "name": "nyholm/psr7-server",
1862            "version": "0.4.1",
1863            "source": {
1864                "type": "git",
1865                "url": "https://github.com/Nyholm/psr7-server.git",
1866                "reference": "e6a526e9170e6e33a13efc2b61703ca476b7ea68"
1867            },
1868            "dist": {
1869                "type": "zip",
1870                "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/e6a526e9170e6e33a13efc2b61703ca476b7ea68",
1871                "reference": "e6a526e9170e6e33a13efc2b61703ca476b7ea68",
1872                "shasum": ""
1873            },
1874            "require": {
1875                "php": "^7.1",
1876                "psr/http-factory": "^1.0",
1877                "psr/http-message": "^1.0"
1878            },
1879            "require-dev": {
1880                "nyholm/nsa": "^1.1",
1881                "nyholm/psr7": "^1.0",
1882                "phpunit/phpunit": "^7.0"
1883            },
1884            "type": "library",
1885            "autoload": {
1886                "psr-4": {
1887                    "Nyholm\\Psr7Server\\": "src/"
1888                }
1889            },
1890            "notification-url": "https://packagist.org/downloads/",
1891            "license": [
1892                "MIT"
1893            ],
1894            "authors": [
1895                {
1896                    "name": "Tobias Nyholm",
1897                    "email": "tobias.nyholm@gmail.com"
1898                },
1899                {
1900                    "name": "Martijn van der Ven",
1901                    "email": "martijn@vanderven.se"
1902                }
1903            ],
1904            "description": "Helper classes to handle PSR-7 server requests",
1905            "homepage": "http://tnyholm.se",
1906            "keywords": [
1907                "psr-17",
1908                "psr-7"
1909            ],
1910            "time": "2019-11-05T20:36:33+00:00"
1911        },
1912        {
1913            "name": "oscarotero/middleland",
1914            "version": "v1.0.0",
1915            "source": {
1916                "type": "git",
1917                "url": "https://github.com/oscarotero/middleland.git",
1918                "reference": "abd480afe264714095d043edd76c542a99f1695b"
1919            },
1920            "dist": {
1921                "type": "zip",
1922                "url": "https://api.github.com/repos/oscarotero/middleland/zipball/abd480afe264714095d043edd76c542a99f1695b",
1923                "reference": "abd480afe264714095d043edd76c542a99f1695b",
1924                "shasum": ""
1925            },
1926            "require": {
1927                "php": "^7.0",
1928                "psr/container": "^1.0",
1929                "psr/http-server-middleware": "^1.0"
1930            },
1931            "require-dev": {
1932                "friendsofphp/php-cs-fixer": "^2.0",
1933                "phpunit/phpunit": "^6.0",
1934                "zendframework/zend-diactoros": "^1.3"
1935            },
1936            "type": "library",
1937            "autoload": {
1938                "psr-4": {
1939                    "Middleland\\": "src/"
1940                }
1941            },
1942            "notification-url": "https://packagist.org/downloads/",
1943            "license": [
1944                "MIT"
1945            ],
1946            "authors": [
1947                {
1948                    "name": "Oscar Otero",
1949                    "email": "oom@oscarotero.com",
1950                    "homepage": "http://oscarotero.com",
1951                    "role": "Developer"
1952                }
1953            ],
1954            "description": "PSR-15 middleware dispatcher",
1955            "homepage": "https://github.com/oscarotero/dispatcher",
1956            "keywords": [
1957                "http",
1958                "middleware",
1959                "psr-15",
1960                "psr-7"
1961            ],
1962            "time": "2018-01-24T20:41:57+00:00"
1963        },
1964        {
1965            "name": "paragonie/random_compat",
1966            "version": "v9.99.99",
1967            "source": {
1968                "type": "git",
1969                "url": "https://github.com/paragonie/random_compat.git",
1970                "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
1971            },
1972            "dist": {
1973                "type": "zip",
1974                "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
1975                "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
1976                "shasum": ""
1977            },
1978            "require": {
1979                "php": "^7"
1980            },
1981            "require-dev": {
1982                "phpunit/phpunit": "4.*|5.*",
1983                "vimeo/psalm": "^1"
1984            },
1985            "suggest": {
1986                "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
1987            },
1988            "type": "library",
1989            "notification-url": "https://packagist.org/downloads/",
1990            "license": [
1991                "MIT"
1992            ],
1993            "authors": [
1994                {
1995                    "name": "Paragon Initiative Enterprises",
1996                    "email": "security@paragonie.com",
1997                    "homepage": "https://paragonie.com"
1998                }
1999            ],
2000            "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
2001            "keywords": [
2002                "csprng",
2003                "polyfill",
2004                "pseudorandom",
2005                "random"
2006            ],
2007            "time": "2018-07-02T15:55:56+00:00"
2008        },
2009        {
2010            "name": "php-http/message-factory",
2011            "version": "v1.0.2",
2012            "source": {
2013                "type": "git",
2014                "url": "https://github.com/php-http/message-factory.git",
2015                "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
2016            },
2017            "dist": {
2018                "type": "zip",
2019                "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
2020                "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
2021                "shasum": ""
2022            },
2023            "require": {
2024                "php": ">=5.4",
2025                "psr/http-message": "^1.0"
2026            },
2027            "type": "library",
2028            "extra": {
2029                "branch-alias": {
2030                    "dev-master": "1.0-dev"
2031                }
2032            },
2033            "autoload": {
2034                "psr-4": {
2035                    "Http\\Message\\": "src/"
2036                }
2037            },
2038            "notification-url": "https://packagist.org/downloads/",
2039            "license": [
2040                "MIT"
2041            ],
2042            "authors": [
2043                {
2044                    "name": "Márk Sági-Kazár",
2045                    "email": "mark.sagikazar@gmail.com"
2046                }
2047            ],
2048            "description": "Factory interfaces for PSR-7 HTTP Message",
2049            "homepage": "http://php-http.org",
2050            "keywords": [
2051                "factory",
2052                "http",
2053                "message",
2054                "stream",
2055                "uri"
2056            ],
2057            "time": "2015-12-19T14:08:53+00:00"
2058        },
2059        {
2060            "name": "psr/cache",
2061            "version": "1.0.1",
2062            "source": {
2063                "type": "git",
2064                "url": "https://github.com/php-fig/cache.git",
2065                "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
2066            },
2067            "dist": {
2068                "type": "zip",
2069                "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
2070                "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
2071                "shasum": ""
2072            },
2073            "require": {
2074                "php": ">=5.3.0"
2075            },
2076            "type": "library",
2077            "extra": {
2078                "branch-alias": {
2079                    "dev-master": "1.0.x-dev"
2080                }
2081            },
2082            "autoload": {
2083                "psr-4": {
2084                    "Psr\\Cache\\": "src/"
2085                }
2086            },
2087            "notification-url": "https://packagist.org/downloads/",
2088            "license": [
2089                "MIT"
2090            ],
2091            "authors": [
2092                {
2093                    "name": "PHP-FIG",
2094                    "homepage": "http://www.php-fig.org/"
2095                }
2096            ],
2097            "description": "Common interface for caching libraries",
2098            "keywords": [
2099                "cache",
2100                "psr",
2101                "psr-6"
2102            ],
2103            "time": "2016-08-06T20:24:11+00:00"
2104        },
2105        {
2106            "name": "psr/container",
2107            "version": "1.0.0",
2108            "source": {
2109                "type": "git",
2110                "url": "https://github.com/php-fig/container.git",
2111                "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
2112            },
2113            "dist": {
2114                "type": "zip",
2115                "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
2116                "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
2117                "shasum": ""
2118            },
2119            "require": {
2120                "php": ">=5.3.0"
2121            },
2122            "type": "library",
2123            "extra": {
2124                "branch-alias": {
2125                    "dev-master": "1.0.x-dev"
2126                }
2127            },
2128            "autoload": {
2129                "psr-4": {
2130                    "Psr\\Container\\": "src/"
2131                }
2132            },
2133            "notification-url": "https://packagist.org/downloads/",
2134            "license": [
2135                "MIT"
2136            ],
2137            "authors": [
2138                {
2139                    "name": "PHP-FIG",
2140                    "homepage": "http://www.php-fig.org/"
2141                }
2142            ],
2143            "description": "Common Container Interface (PHP FIG PSR-11)",
2144            "homepage": "https://github.com/php-fig/container",
2145            "keywords": [
2146                "PSR-11",
2147                "container",
2148                "container-interface",
2149                "container-interop",
2150                "psr"
2151            ],
2152            "time": "2017-02-14T16:28:37+00:00"
2153        },
2154        {
2155            "name": "psr/http-factory",
2156            "version": "1.0.1",
2157            "source": {
2158                "type": "git",
2159                "url": "https://github.com/php-fig/http-factory.git",
2160                "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
2161            },
2162            "dist": {
2163                "type": "zip",
2164                "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
2165                "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
2166                "shasum": ""
2167            },
2168            "require": {
2169                "php": ">=7.0.0",
2170                "psr/http-message": "^1.0"
2171            },
2172            "type": "library",
2173            "extra": {
2174                "branch-alias": {
2175                    "dev-master": "1.0.x-dev"
2176                }
2177            },
2178            "autoload": {
2179                "psr-4": {
2180                    "Psr\\Http\\Message\\": "src/"
2181                }
2182            },
2183            "notification-url": "https://packagist.org/downloads/",
2184            "license": [
2185                "MIT"
2186            ],
2187            "authors": [
2188                {
2189                    "name": "PHP-FIG",
2190                    "homepage": "http://www.php-fig.org/"
2191                }
2192            ],
2193            "description": "Common interfaces for PSR-7 HTTP message factories",
2194            "keywords": [
2195                "factory",
2196                "http",
2197                "message",
2198                "psr",
2199                "psr-17",
2200                "psr-7",
2201                "request",
2202                "response"
2203            ],
2204            "time": "2019-04-30T12:38:16+00:00"
2205        },
2206        {
2207            "name": "psr/http-message",
2208            "version": "1.0.1",
2209            "source": {
2210                "type": "git",
2211                "url": "https://github.com/php-fig/http-message.git",
2212                "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
2213            },
2214            "dist": {
2215                "type": "zip",
2216                "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
2217                "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
2218                "shasum": ""
2219            },
2220            "require": {
2221                "php": ">=5.3.0"
2222            },
2223            "type": "library",
2224            "extra": {
2225                "branch-alias": {
2226                    "dev-master": "1.0.x-dev"
2227                }
2228            },
2229            "autoload": {
2230                "psr-4": {
2231                    "Psr\\Http\\Message\\": "src/"
2232                }
2233            },
2234            "notification-url": "https://packagist.org/downloads/",
2235            "license": [
2236                "MIT"
2237            ],
2238            "authors": [
2239                {
2240                    "name": "PHP-FIG",
2241                    "homepage": "http://www.php-fig.org/"
2242                }
2243            ],
2244            "description": "Common interface for HTTP messages",
2245            "homepage": "https://github.com/php-fig/http-message",
2246            "keywords": [
2247                "http",
2248                "http-message",
2249                "psr",
2250                "psr-7",
2251                "request",
2252                "response"
2253            ],
2254            "time": "2016-08-06T14:39:51+00:00"
2255        },
2256        {
2257            "name": "psr/http-server-handler",
2258            "version": "1.0.1",
2259            "source": {
2260                "type": "git",
2261                "url": "https://github.com/php-fig/http-server-handler.git",
2262                "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
2263            },
2264            "dist": {
2265                "type": "zip",
2266                "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
2267                "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
2268                "shasum": ""
2269            },
2270            "require": {
2271                "php": ">=7.0",
2272                "psr/http-message": "^1.0"
2273            },
2274            "type": "library",
2275            "extra": {
2276                "branch-alias": {
2277                    "dev-master": "1.0.x-dev"
2278                }
2279            },
2280            "autoload": {
2281                "psr-4": {
2282                    "Psr\\Http\\Server\\": "src/"
2283                }
2284            },
2285            "notification-url": "https://packagist.org/downloads/",
2286            "license": [
2287                "MIT"
2288            ],
2289            "authors": [
2290                {
2291                    "name": "PHP-FIG",
2292                    "homepage": "http://www.php-fig.org/"
2293                }
2294            ],
2295            "description": "Common interface for HTTP server-side request handler",
2296            "keywords": [
2297                "handler",
2298                "http",
2299                "http-interop",
2300                "psr",
2301                "psr-15",
2302                "psr-7",
2303                "request",
2304                "response",
2305                "server"
2306            ],
2307            "time": "2018-10-30T16:46:14+00:00"
2308        },
2309        {
2310            "name": "psr/http-server-middleware",
2311            "version": "1.0.1",
2312            "source": {
2313                "type": "git",
2314                "url": "https://github.com/php-fig/http-server-middleware.git",
2315                "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
2316            },
2317            "dist": {
2318                "type": "zip",
2319                "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
2320                "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
2321                "shasum": ""
2322            },
2323            "require": {
2324                "php": ">=7.0",
2325                "psr/http-message": "^1.0",
2326                "psr/http-server-handler": "^1.0"
2327            },
2328            "type": "library",
2329            "extra": {
2330                "branch-alias": {
2331                    "dev-master": "1.0.x-dev"
2332                }
2333            },
2334            "autoload": {
2335                "psr-4": {
2336                    "Psr\\Http\\Server\\": "src/"
2337                }
2338            },
2339            "notification-url": "https://packagist.org/downloads/",
2340            "license": [
2341                "MIT"
2342            ],
2343            "authors": [
2344                {
2345                    "name": "PHP-FIG",
2346                    "homepage": "http://www.php-fig.org/"
2347                }
2348            ],
2349            "description": "Common interface for HTTP server-side middleware",
2350            "keywords": [
2351                "http",
2352                "http-interop",
2353                "middleware",
2354                "psr",
2355                "psr-15",
2356                "psr-7",
2357                "request",
2358                "response"
2359            ],
2360            "time": "2018-10-30T17:12:04+00:00"
2361        },
2362        {
2363            "name": "psr/log",
2364            "version": "1.1.2",
2365            "source": {
2366                "type": "git",
2367                "url": "https://github.com/php-fig/log.git",
2368                "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
2369            },
2370            "dist": {
2371                "type": "zip",
2372                "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
2373                "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
2374                "shasum": ""
2375            },
2376            "require": {
2377                "php": ">=5.3.0"
2378            },
2379            "type": "library",
2380            "extra": {
2381                "branch-alias": {
2382                    "dev-master": "1.1.x-dev"
2383                }
2384            },
2385            "autoload": {
2386                "psr-4": {
2387                    "Psr\\Log\\": "Psr/Log/"
2388                }
2389            },
2390            "notification-url": "https://packagist.org/downloads/",
2391            "license": [
2392                "MIT"
2393            ],
2394            "authors": [
2395                {
2396                    "name": "PHP-FIG",
2397                    "homepage": "http://www.php-fig.org/"
2398                }
2399            ],
2400            "description": "Common interface for logging libraries",
2401            "homepage": "https://github.com/php-fig/log",
2402            "keywords": [
2403                "log",
2404                "psr",
2405                "psr-3"
2406            ],
2407            "time": "2019-11-01T11:05:21+00:00"
2408        },
2409        {
2410            "name": "psr/simple-cache",
2411            "version": "1.0.1",
2412            "source": {
2413                "type": "git",
2414                "url": "https://github.com/php-fig/simple-cache.git",
2415                "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
2416            },
2417            "dist": {
2418                "type": "zip",
2419                "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
2420                "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
2421                "shasum": ""
2422            },
2423            "require": {
2424                "php": ">=5.3.0"
2425            },
2426            "type": "library",
2427            "extra": {
2428                "branch-alias": {
2429                    "dev-master": "1.0.x-dev"
2430                }
2431            },
2432            "autoload": {
2433                "psr-4": {
2434                    "Psr\\SimpleCache\\": "src/"
2435                }
2436            },
2437            "notification-url": "https://packagist.org/downloads/",
2438            "license": [
2439                "MIT"
2440            ],
2441            "authors": [
2442                {
2443                    "name": "PHP-FIG",
2444                    "homepage": "http://www.php-fig.org/"
2445                }
2446            ],
2447            "description": "Common interfaces for simple caching",
2448            "keywords": [
2449                "cache",
2450                "caching",
2451                "psr",
2452                "psr-16",
2453                "simple-cache"
2454            ],
2455            "time": "2017-10-23T01:57:42+00:00"
2456        },
2457        {
2458            "name": "ralouphie/getallheaders",
2459            "version": "3.0.3",
2460            "source": {
2461                "type": "git",
2462                "url": "https://github.com/ralouphie/getallheaders.git",
2463                "reference": "120b605dfeb996808c31b6477290a714d356e822"
2464            },
2465            "dist": {
2466                "type": "zip",
2467                "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
2468                "reference": "120b605dfeb996808c31b6477290a714d356e822",
2469                "shasum": ""
2470            },
2471            "require": {
2472                "php": ">=5.6"
2473            },
2474            "require-dev": {
2475                "php-coveralls/php-coveralls": "^2.1",
2476                "phpunit/phpunit": "^5 || ^6.5"
2477            },
2478            "type": "library",
2479            "autoload": {
2480                "files": [
2481                    "src/getallheaders.php"
2482                ]
2483            },
2484            "notification-url": "https://packagist.org/downloads/",
2485            "license": [
2486                "MIT"
2487            ],
2488            "authors": [
2489                {
2490                    "name": "Ralph Khattar",
2491                    "email": "ralph.khattar@gmail.com"
2492                }
2493            ],
2494            "description": "A polyfill for getallheaders.",
2495            "time": "2019-03-08T08:55:37+00:00"
2496        },
2497        {
2498            "name": "ramsey/uuid",
2499            "version": "3.9.2",
2500            "source": {
2501                "type": "git",
2502                "url": "https://github.com/ramsey/uuid.git",
2503                "reference": "7779489a47d443f845271badbdcedfe4df8e06fb"
2504            },
2505            "dist": {
2506                "type": "zip",
2507                "url": "https://api.github.com/repos/ramsey/uuid/zipball/7779489a47d443f845271badbdcedfe4df8e06fb",
2508                "reference": "7779489a47d443f845271badbdcedfe4df8e06fb",
2509                "shasum": ""
2510            },
2511            "require": {
2512                "ext-json": "*",
2513                "paragonie/random_compat": "^1 | ^2 | 9.99.99",
2514                "php": "^5.4 | ^7 | ^8",
2515                "symfony/polyfill-ctype": "^1.8"
2516            },
2517            "replace": {
2518                "rhumsaa/uuid": "self.version"
2519            },
2520            "require-dev": {
2521                "codeception/aspect-mock": "^1 | ^2",
2522                "doctrine/annotations": "^1.2",
2523                "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
2524                "jakub-onderka/php-parallel-lint": "^1",
2525                "mockery/mockery": "^0.9.11 | ^1",
2526                "moontoast/math": "^1.1",
2527                "paragonie/random-lib": "^2",
2528                "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
2529                "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
2530                "squizlabs/php_codesniffer": "^3.5"
2531            },
2532            "suggest": {
2533                "ext-ctype": "Provides support for PHP Ctype functions",
2534                "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
2535                "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
2536                "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
2537                "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
2538                "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
2539                "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
2540                "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
2541            },
2542            "type": "library",
2543            "extra": {
2544                "branch-alias": {
2545                    "dev-master": "3.x-dev"
2546                }
2547            },
2548            "autoload": {
2549                "psr-4": {
2550                    "Ramsey\\Uuid\\": "src/"
2551                },
2552                "files": [
2553                    "src/functions.php"
2554                ]
2555            },
2556            "notification-url": "https://packagist.org/downloads/",
2557            "license": [
2558                "MIT"
2559            ],
2560            "authors": [
2561                {
2562                    "name": "Ben Ramsey",
2563                    "email": "ben@benramsey.com",
2564                    "homepage": "https://benramsey.com"
2565                },
2566                {
2567                    "name": "Marijn Huizendveld",
2568                    "email": "marijn.huizendveld@gmail.com"
2569                },
2570                {
2571                    "name": "Thibaud Fabre",
2572                    "email": "thibaud@aztech.io"
2573                }
2574            ],
2575            "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
2576            "homepage": "https://github.com/ramsey/uuid",
2577            "keywords": [
2578                "guid",
2579                "identifier",
2580                "uuid"
2581            ],
2582            "time": "2019-12-17T08:18:51+00:00"
2583        },
2584        {
2585            "name": "swiftmailer/swiftmailer",
2586            "version": "v6.2.3",
2587            "source": {
2588                "type": "git",
2589                "url": "https://github.com/swiftmailer/swiftmailer.git",
2590                "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
2591            },
2592            "dist": {
2593                "type": "zip",
2594                "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
2595                "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
2596                "shasum": ""
2597            },
2598            "require": {
2599                "egulias/email-validator": "~2.0",
2600                "php": ">=7.0.0",
2601                "symfony/polyfill-iconv": "^1.0",
2602                "symfony/polyfill-intl-idn": "^1.10",
2603                "symfony/polyfill-mbstring": "^1.0"
2604            },
2605            "require-dev": {
2606                "mockery/mockery": "~0.9.1",
2607                "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
2608            },
2609            "suggest": {
2610                "ext-intl": "Needed to support internationalized email addresses",
2611                "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
2612            },
2613            "type": "library",
2614            "extra": {
2615                "branch-alias": {
2616                    "dev-master": "6.2-dev"
2617                }
2618            },
2619            "autoload": {
2620                "files": [
2621                    "lib/swift_required.php"
2622                ]
2623            },
2624            "notification-url": "https://packagist.org/downloads/",
2625            "license": [
2626                "MIT"
2627            ],
2628            "authors": [
2629                {
2630                    "name": "Chris Corbyn"
2631                },
2632                {
2633                    "name": "Fabien Potencier",
2634                    "email": "fabien@symfony.com"
2635                }
2636            ],
2637            "description": "Swiftmailer, free feature-rich PHP mailer",
2638            "homepage": "https://swiftmailer.symfony.com",
2639            "keywords": [
2640                "email",
2641                "mail",
2642                "mailer"
2643            ],
2644            "time": "2019-11-12T09:31:26+00:00"
2645        },
2646        {
2647            "name": "symfony/cache",
2648            "version": "v4.4.2",
2649            "source": {
2650                "type": "git",
2651                "url": "https://github.com/symfony/cache.git",
2652                "reference": "6af64bab165e588300378a87bcd2df3c7c31c144"
2653            },
2654            "dist": {
2655                "type": "zip",
2656                "url": "https://api.github.com/repos/symfony/cache/zipball/6af64bab165e588300378a87bcd2df3c7c31c144",
2657                "reference": "6af64bab165e588300378a87bcd2df3c7c31c144",
2658                "shasum": ""
2659            },
2660            "require": {
2661                "php": "^7.1.3",
2662                "psr/cache": "~1.0",
2663                "psr/log": "~1.0",
2664                "symfony/cache-contracts": "^1.1.7|^2",
2665                "symfony/service-contracts": "^1.1|^2",
2666                "symfony/var-exporter": "^4.2|^5.0"
2667            },
2668            "conflict": {
2669                "doctrine/dbal": "<2.5",
2670                "symfony/dependency-injection": "<3.4",
2671                "symfony/http-kernel": "<4.4",
2672                "symfony/var-dumper": "<4.4"
2673            },
2674            "provide": {
2675                "psr/cache-implementation": "1.0",
2676                "psr/simple-cache-implementation": "1.0",
2677                "symfony/cache-implementation": "1.0"
2678            },
2679            "require-dev": {
2680                "cache/integration-tests": "dev-master",
2681                "doctrine/cache": "~1.6",
2682                "doctrine/dbal": "~2.5",
2683                "predis/predis": "~1.1",
2684                "psr/simple-cache": "^1.0",
2685                "symfony/config": "^4.2|^5.0",
2686                "symfony/dependency-injection": "^3.4|^4.1|^5.0",
2687                "symfony/var-dumper": "^4.4|^5.0"
2688            },
2689            "type": "library",
2690            "extra": {
2691                "branch-alias": {
2692                    "dev-master": "4.4-dev"
2693                }
2694            },
2695            "autoload": {
2696                "psr-4": {
2697                    "Symfony\\Component\\Cache\\": ""
2698                },
2699                "exclude-from-classmap": [
2700                    "/Tests/"
2701                ]
2702            },
2703            "notification-url": "https://packagist.org/downloads/",
2704            "license": [
2705                "MIT"
2706            ],
2707            "authors": [
2708                {
2709                    "name": "Nicolas Grekas",
2710                    "email": "p@tchwork.com"
2711                },
2712                {
2713                    "name": "Symfony Community",
2714                    "homepage": "https://symfony.com/contributors"
2715                }
2716            ],
2717            "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
2718            "homepage": "https://symfony.com",
2719            "keywords": [
2720                "caching",
2721                "psr6"
2722            ],
2723            "time": "2019-12-16T10:45:21+00:00"
2724        },
2725        {
2726            "name": "symfony/cache-contracts",
2727            "version": "v1.1.7",
2728            "source": {
2729                "type": "git",
2730                "url": "https://github.com/symfony/cache-contracts.git",
2731                "reference": "af50d14ada9e4e82cfabfabdc502d144f89be0a1"
2732            },
2733            "dist": {
2734                "type": "zip",
2735                "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/af50d14ada9e4e82cfabfabdc502d144f89be0a1",
2736                "reference": "af50d14ada9e4e82cfabfabdc502d144f89be0a1",
2737                "shasum": ""
2738            },
2739            "require": {
2740                "php": "^7.1.3",
2741                "psr/cache": "^1.0"
2742            },
2743            "suggest": {
2744                "symfony/cache-implementation": ""
2745            },
2746            "type": "library",
2747            "extra": {
2748                "branch-alias": {
2749                    "dev-master": "1.1-dev"
2750                }
2751            },
2752            "autoload": {
2753                "psr-4": {
2754                    "Symfony\\Contracts\\Cache\\": ""
2755                }
2756            },
2757            "notification-url": "https://packagist.org/downloads/",
2758            "license": [
2759                "MIT"
2760            ],
2761            "authors": [
2762                {
2763                    "name": "Nicolas Grekas",
2764                    "email": "p@tchwork.com"
2765                },
2766                {
2767                    "name": "Symfony Community",
2768                    "homepage": "https://symfony.com/contributors"
2769                }
2770            ],
2771            "description": "Generic abstractions related to caching",
2772            "homepage": "https://symfony.com",
2773            "keywords": [
2774                "abstractions",
2775                "contracts",
2776                "decoupling",
2777                "interfaces",
2778                "interoperability",
2779                "standards"
2780            ],
2781            "time": "2019-10-04T21:43:27+00:00"
2782        },
2783        {
2784            "name": "symfony/expression-language",
2785            "version": "v4.4.2",
2786            "source": {
2787                "type": "git",
2788                "url": "https://github.com/symfony/expression-language.git",
2789                "reference": "539e7ff0b635c8b90d8127bc929da781a96eab2d"
2790            },
2791            "dist": {
2792                "type": "zip",
2793                "url": "https://api.github.com/repos/symfony/expression-language/zipball/539e7ff0b635c8b90d8127bc929da781a96eab2d",
2794                "reference": "539e7ff0b635c8b90d8127bc929da781a96eab2d",
2795                "shasum": ""
2796            },
2797            "require": {
2798                "php": "^7.1.3",
2799                "symfony/cache": "^3.4|^4.0|^5.0",
2800                "symfony/service-contracts": "^1.1|^2"
2801            },
2802            "type": "library",
2803            "extra": {
2804                "branch-alias": {
2805                    "dev-master": "4.4-dev"
2806                }
2807            },
2808            "autoload": {
2809                "psr-4": {
2810                    "Symfony\\Component\\ExpressionLanguage\\": ""
2811                },
2812                "exclude-from-classmap": [
2813                    "/Tests/"
2814                ]
2815            },
2816            "notification-url": "https://packagist.org/downloads/",
2817            "license": [
2818                "MIT"
2819            ],
2820            "authors": [
2821                {
2822                    "name": "Fabien Potencier",
2823                    "email": "fabien@symfony.com"
2824                },
2825                {
2826                    "name": "Symfony Community",
2827                    "homepage": "https://symfony.com/contributors"
2828                }
2829            ],
2830            "description": "Symfony ExpressionLanguage Component",
2831            "homepage": "https://symfony.com",
2832            "time": "2019-12-10T10:33:21+00:00"
2833        },
2834        {
2835            "name": "symfony/polyfill-ctype",
2836            "version": "v1.13.1",
2837            "source": {
2838                "type": "git",
2839                "url": "https://github.com/symfony/polyfill-ctype.git",
2840                "reference": "f8f0b461be3385e56d6de3dbb5a0df24c0c275e3"
2841            },
2842            "dist": {
2843                "type": "zip",
2844                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f8f0b461be3385e56d6de3dbb5a0df24c0c275e3",
2845                "reference": "f8f0b461be3385e56d6de3dbb5a0df24c0c275e3",
2846                "shasum": ""
2847            },
2848            "require": {
2849                "php": ">=5.3.3"
2850            },
2851            "suggest": {
2852                "ext-ctype": "For best performance"
2853            },
2854            "type": "library",
2855            "extra": {
2856                "branch-alias": {
2857                    "dev-master": "1.13-dev"
2858                }
2859            },
2860            "autoload": {
2861                "psr-4": {
2862                    "Symfony\\Polyfill\\Ctype\\": ""
2863                },
2864                "files": [
2865                    "bootstrap.php"
2866                ]
2867            },
2868            "notification-url": "https://packagist.org/downloads/",
2869            "license": [
2870                "MIT"
2871            ],
2872            "authors": [
2873                {
2874                    "name": "Gert de Pagter",
2875                    "email": "BackEndTea@gmail.com"
2876                },
2877                {
2878                    "name": "Symfony Community",
2879                    "homepage": "https://symfony.com/contributors"
2880                }
2881            ],
2882            "description": "Symfony polyfill for ctype functions",
2883            "homepage": "https://symfony.com",
2884            "keywords": [
2885                "compatibility",
2886                "ctype",
2887                "polyfill",
2888                "portable"
2889            ],
2890            "time": "2019-11-27T13:56:44+00:00"
2891        },
2892        {
2893            "name": "symfony/polyfill-iconv",
2894            "version": "v1.13.1",
2895            "source": {
2896                "type": "git",
2897                "url": "https://github.com/symfony/polyfill-iconv.git",
2898                "reference": "a019efccc03f1a335af6b4f20c30f5ea8060be36"
2899            },
2900            "dist": {
2901                "type": "zip",
2902                "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/a019efccc03f1a335af6b4f20c30f5ea8060be36",
2903                "reference": "a019efccc03f1a335af6b4f20c30f5ea8060be36",
2904                "shasum": ""
2905            },
2906            "require": {
2907                "php": ">=5.3.3"
2908            },
2909            "suggest": {
2910                "ext-iconv": "For best performance"
2911            },
2912            "type": "library",
2913            "extra": {
2914                "branch-alias": {
2915                    "dev-master": "1.13-dev"
2916                }
2917            },
2918            "autoload": {
2919                "psr-4": {
2920                    "Symfony\\Polyfill\\Iconv\\": ""
2921                },
2922                "files": [
2923                    "bootstrap.php"
2924                ]
2925            },
2926            "notification-url": "https://packagist.org/downloads/",
2927            "license": [
2928                "MIT"
2929            ],
2930            "authors": [
2931                {
2932                    "name": "Nicolas Grekas",
2933                    "email": "p@tchwork.com"
2934                },
2935                {
2936                    "name": "Symfony Community",
2937                    "homepage": "https://symfony.com/contributors"
2938                }
2939            ],
2940            "description": "Symfony polyfill for the Iconv extension",
2941            "homepage": "https://symfony.com",
2942            "keywords": [
2943                "compatibility",
2944                "iconv",
2945                "polyfill",
2946                "portable",
2947                "shim"
2948            ],
2949            "time": "2019-11-27T13:56:44+00:00"
2950        },
2951        {
2952            "name": "symfony/polyfill-intl-idn",
2953            "version": "v1.13.1",
2954            "source": {
2955                "type": "git",
2956                "url": "https://github.com/symfony/polyfill-intl-idn.git",
2957                "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46"
2958            },
2959            "dist": {
2960                "type": "zip",
2961                "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6f9c239e61e1b0c9229a28ff89a812dc449c3d46",
2962                "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46",
2963                "shasum": ""
2964            },
2965            "require": {
2966                "php": ">=5.3.3",
2967                "symfony/polyfill-mbstring": "^1.3",
2968                "symfony/polyfill-php72": "^1.9"
2969            },
2970            "suggest": {
2971                "ext-intl": "For best performance"
2972            },
2973            "type": "library",
2974            "extra": {
2975                "branch-alias": {
2976                    "dev-master": "1.13-dev"
2977                }
2978            },
2979            "autoload": {
2980                "psr-4": {
2981                    "Symfony\\Polyfill\\Intl\\Idn\\": ""
2982                },
2983                "files": [
2984                    "bootstrap.php"
2985                ]
2986            },
2987            "notification-url": "https://packagist.org/downloads/",
2988            "license": [
2989                "MIT"
2990            ],
2991            "authors": [
2992                {
2993                    "name": "Laurent Bassin",
2994                    "email": "laurent@bassin.info"
2995                },
2996                {
2997                    "name": "Symfony Community",
2998                    "homepage": "https://symfony.com/contributors"
2999                }
3000            ],
3001            "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
3002            "homepage": "https://symfony.com",
3003            "keywords": [
3004                "compatibility",
3005                "idn",
3006                "intl",
3007                "polyfill",
3008                "portable",
3009                "shim"
3010            ],
3011            "time": "2019-11-27T13:56:44+00:00"
3012        },
3013        {
3014            "name": "symfony/polyfill-mbstring",
3015            "version": "v1.13.1",
3016            "source": {
3017                "type": "git",
3018                "url": "https://github.com/symfony/polyfill-mbstring.git",
3019                "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f"
3020            },
3021            "dist": {
3022                "type": "zip",
3023                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7b4aab9743c30be783b73de055d24a39cf4b954f",
3024                "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f",
3025                "shasum": ""
3026            },
3027            "require": {
3028                "php": ">=5.3.3"
3029            },
3030            "suggest": {
3031                "ext-mbstring": "For best performance"
3032            },
3033            "type": "library",
3034            "extra": {
3035                "branch-alias": {
3036                    "dev-master": "1.13-dev"
3037                }
3038            },
3039            "autoload": {
3040                "psr-4": {
3041                    "Symfony\\Polyfill\\Mbstring\\": ""
3042                },
3043                "files": [
3044                    "bootstrap.php"
3045                ]
3046            },
3047            "notification-url": "https://packagist.org/downloads/",
3048            "license": [
3049                "MIT"
3050            ],
3051            "authors": [
3052                {
3053                    "name": "Nicolas Grekas",
3054                    "email": "p@tchwork.com"
3055                },
3056                {
3057                    "name": "Symfony Community",
3058                    "homepage": "https://symfony.com/contributors"
3059                }
3060            ],
3061            "description": "Symfony polyfill for the Mbstring extension",
3062            "homepage": "https://symfony.com",
3063            "keywords": [
3064                "compatibility",
3065                "mbstring",
3066                "polyfill",
3067                "portable",
3068                "shim"
3069            ],
3070            "time": "2019-11-27T14:18:11+00:00"
3071        },
3072        {
3073            "name": "symfony/polyfill-php72",
3074            "version": "v1.13.1",
3075            "source": {
3076                "type": "git",
3077                "url": "https://github.com/symfony/polyfill-php72.git",
3078                "reference": "66fea50f6cb37a35eea048d75a7d99a45b586038"
3079            },
3080            "dist": {
3081                "type": "zip",
3082                "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/66fea50f6cb37a35eea048d75a7d99a45b586038",
3083                "reference": "66fea50f6cb37a35eea048d75a7d99a45b586038",
3084                "shasum": ""
3085            },
3086            "require": {
3087                "php": ">=5.3.3"
3088            },
3089            "type": "library",
3090            "extra": {
3091                "branch-alias": {
3092                    "dev-master": "1.13-dev"
3093                }
3094            },
3095            "autoload": {
3096                "psr-4": {
3097                    "Symfony\\Polyfill\\Php72\\": ""
3098                },
3099                "files": [
3100                    "bootstrap.php"
3101                ]
3102            },
3103            "notification-url": "https://packagist.org/downloads/",
3104            "license": [
3105                "MIT"
3106            ],
3107            "authors": [
3108                {
3109                    "name": "Nicolas Grekas",
3110                    "email": "p@tchwork.com"
3111                },
3112                {
3113                    "name": "Symfony Community",
3114                    "homepage": "https://symfony.com/contributors"
3115                }
3116            ],
3117            "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
3118            "homepage": "https://symfony.com",
3119            "keywords": [
3120                "compatibility",
3121                "polyfill",
3122                "portable",
3123                "shim"
3124            ],
3125            "time": "2019-11-27T13:56:44+00:00"
3126        },
3127        {
3128            "name": "symfony/service-contracts",
3129            "version": "v1.1.8",
3130            "source": {
3131                "type": "git",
3132                "url": "https://github.com/symfony/service-contracts.git",
3133                "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf"
3134            },
3135            "dist": {
3136                "type": "zip",
3137                "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffc7f5692092df31515df2a5ecf3b7302b3ddacf",
3138                "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf",
3139                "shasum": ""
3140            },
3141            "require": {
3142                "php": "^7.1.3",
3143                "psr/container": "^1.0"
3144            },
3145            "suggest": {
3146                "symfony/service-implementation": ""
3147            },
3148            "type": "library",
3149            "extra": {
3150                "branch-alias": {
3151                    "dev-master": "1.1-dev"
3152                }
3153            },
3154            "autoload": {
3155                "psr-4": {
3156                    "Symfony\\Contracts\\Service\\": ""
3157                }
3158            },
3159            "notification-url": "https://packagist.org/downloads/",
3160            "license": [
3161                "MIT"
3162            ],
3163            "authors": [
3164                {
3165                    "name": "Nicolas Grekas",
3166                    "email": "p@tchwork.com"
3167                },
3168                {
3169                    "name": "Symfony Community",
3170                    "homepage": "https://symfony.com/contributors"
3171                }
3172            ],
3173            "description": "Generic abstractions related to writing services",
3174            "homepage": "https://symfony.com",
3175            "keywords": [
3176                "abstractions",
3177                "contracts",
3178                "decoupling",
3179                "interfaces",
3180                "interoperability",
3181                "standards"
3182            ],
3183            "time": "2019-10-14T12:27:06+00:00"
3184        },
3185        {
3186            "name": "symfony/translation",
3187            "version": "v4.4.2",
3188            "source": {
3189                "type": "git",
3190                "url": "https://github.com/symfony/translation.git",
3191                "reference": "f7669f48a9633bf8139bc026c755e894b7206677"
3192            },
3193            "dist": {
3194                "type": "zip",
3195                "url": "https://api.github.com/repos/symfony/translation/zipball/f7669f48a9633bf8139bc026c755e894b7206677",
3196                "reference": "f7669f48a9633bf8139bc026c755e894b7206677",
3197                "shasum": ""
3198            },
3199            "require": {
3200                "php": "^7.1.3",
3201                "symfony/polyfill-mbstring": "~1.0",
3202                "symfony/translation-contracts": "^1.1.6|^2"
3203            },
3204            "conflict": {
3205                "symfony/config": "<3.4",
3206                "symfony/dependency-injection": "<3.4",
3207                "symfony/http-kernel": "<4.4",
3208                "symfony/yaml": "<3.4"
3209            },
3210            "provide": {
3211                "symfony/translation-implementation": "1.0"
3212            },
3213            "require-dev": {
3214                "psr/log": "~1.0",
3215                "symfony/config": "^3.4|^4.0|^5.0",
3216                "symfony/console": "^3.4|^4.0|^5.0",
3217                "symfony/dependency-injection": "^3.4|^4.0|^5.0",
3218                "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
3219                "symfony/http-kernel": "^4.4",
3220                "symfony/intl": "^3.4|^4.0|^5.0",
3221                "symfony/service-contracts": "^1.1.2|^2",
3222                "symfony/yaml": "^3.4|^4.0|^5.0"
3223            },
3224            "suggest": {
3225                "psr/log-implementation": "To use logging capability in translator",
3226                "symfony/config": "",
3227                "symfony/yaml": ""
3228            },
3229            "type": "library",
3230            "extra": {
3231                "branch-alias": {
3232                    "dev-master": "4.4-dev"
3233                }
3234            },
3235            "autoload": {
3236                "psr-4": {
3237                    "Symfony\\Component\\Translation\\": ""
3238                },
3239                "exclude-from-classmap": [
3240                    "/Tests/"
3241                ]
3242            },
3243            "notification-url": "https://packagist.org/downloads/",
3244            "license": [
3245                "MIT"
3246            ],
3247            "authors": [
3248                {
3249                    "name": "Fabien Potencier",
3250                    "email": "fabien@symfony.com"
3251                },
3252                {
3253                    "name": "Symfony Community",
3254                    "homepage": "https://symfony.com/contributors"
3255                }
3256            ],
3257            "description": "Symfony Translation Component",
3258            "homepage": "https://symfony.com",
3259            "time": "2019-12-12T12:53:52+00:00"
3260        },
3261        {
3262            "name": "symfony/translation-contracts",
3263            "version": "v1.1.7",
3264            "source": {
3265                "type": "git",
3266                "url": "https://github.com/symfony/translation-contracts.git",
3267                "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6"
3268            },
3269            "dist": {
3270                "type": "zip",
3271                "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/364518c132c95642e530d9b2d217acbc2ccac3e6",
3272                "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6",
3273                "shasum": ""
3274            },
3275            "require": {
3276                "php": "^7.1.3"
3277            },
3278            "suggest": {
3279                "symfony/translation-implementation": ""
3280            },
3281            "type": "library",
3282            "extra": {
3283                "branch-alias": {
3284                    "dev-master": "1.1-dev"
3285                }
3286            },
3287            "autoload": {
3288                "psr-4": {
3289                    "Symfony\\Contracts\\Translation\\": ""
3290                }
3291            },
3292            "notification-url": "https://packagist.org/downloads/",
3293            "license": [
3294                "MIT"
3295            ],
3296            "authors": [
3297                {
3298                    "name": "Nicolas Grekas",
3299                    "email": "p@tchwork.com"
3300                },
3301                {
3302                    "name": "Symfony Community",
3303                    "homepage": "https://symfony.com/contributors"
3304                }
3305            ],
3306            "description": "Generic abstractions related to translation",
3307            "homepage": "https://symfony.com",
3308            "keywords": [
3309                "abstractions",
3310                "contracts",
3311                "decoupling",
3312                "interfaces",
3313                "interoperability",
3314                "standards"
3315            ],
3316            "time": "2019-09-17T11:12:18+00:00"
3317        },
3318        {
3319            "name": "symfony/var-exporter",
3320            "version": "v4.4.2",
3321            "source": {
3322                "type": "git",
3323                "url": "https://github.com/symfony/var-exporter.git",
3324                "reference": "e566070effe60b8d16b99e958cdbd92aa2e470cb"
3325            },
3326            "dist": {
3327                "type": "zip",
3328                "url": "https://api.github.com/repos/symfony/var-exporter/zipball/e566070effe60b8d16b99e958cdbd92aa2e470cb",
3329                "reference": "e566070effe60b8d16b99e958cdbd92aa2e470cb",
3330                "shasum": ""
3331            },
3332            "require": {
3333                "php": "^7.1.3"
3334            },
3335            "require-dev": {
3336                "symfony/var-dumper": "^4.1.1|^5.0"
3337            },
3338            "type": "library",
3339            "extra": {
3340                "branch-alias": {
3341                    "dev-master": "4.4-dev"
3342                }
3343            },
3344            "autoload": {
3345                "psr-4": {
3346                    "Symfony\\Component\\VarExporter\\": ""
3347                },
3348                "exclude-from-classmap": [
3349                    "/Tests/"
3350                ]
3351            },
3352            "notification-url": "https://packagist.org/downloads/",
3353            "license": [
3354                "MIT"
3355            ],
3356            "authors": [
3357                {
3358                    "name": "Nicolas Grekas",
3359                    "email": "p@tchwork.com"
3360                },
3361                {
3362                    "name": "Symfony Community",
3363                    "homepage": "https://symfony.com/contributors"
3364                }
3365            ],
3366            "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
3367            "homepage": "https://symfony.com",
3368            "keywords": [
3369                "clone",
3370                "construct",
3371                "export",
3372                "hydrate",
3373                "instantiate",
3374                "serialize"
3375            ],
3376            "time": "2019-12-01T08:39:58+00:00"
3377        },
3378        {
3379            "name": "tecnickcom/tcpdf",
3380            "version": "6.3.2",
3381            "source": {
3382                "type": "git",
3383                "url": "https://github.com/tecnickcom/TCPDF.git",
3384                "reference": "9fde7bb9b404b945e7ea88fb7eccd23d9a4e324b"
3385            },
3386            "dist": {
3387                "type": "zip",
3388                "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/9fde7bb9b404b945e7ea88fb7eccd23d9a4e324b",
3389                "reference": "9fde7bb9b404b945e7ea88fb7eccd23d9a4e324b",
3390                "shasum": ""
3391            },
3392            "require": {
3393                "php": ">=5.3.0"
3394            },
3395            "type": "library",
3396            "extra": {
3397                "patches_applied": {
3398                    "PR #137": "https://github.com/tecnickcom/TCPDF/commit/0c73a9c580246b6f4e2eea196f0e4759f79ad632.patch"
3399                }
3400            },
3401            "autoload": {
3402                "classmap": [
3403                    "config",
3404                    "include",
3405                    "tcpdf.php",
3406                    "tcpdf_parser.php",
3407                    "tcpdf_import.php",
3408                    "tcpdf_barcodes_1d.php",
3409                    "tcpdf_barcodes_2d.php",
3410                    "include/tcpdf_colors.php",
3411                    "include/tcpdf_filters.php",
3412                    "include/tcpdf_font_data.php",
3413                    "include/tcpdf_fonts.php",
3414                    "include/tcpdf_images.php",
3415                    "include/tcpdf_static.php",
3416                    "include/barcodes/datamatrix.php",
3417                    "include/barcodes/pdf417.php",
3418                    "include/barcodes/qrcode.php"
3419                ]
3420            },
3421            "notification-url": "https://packagist.org/downloads/",
3422            "license": [
3423                "LGPL-3.0"
3424            ],
3425            "authors": [
3426                {
3427                    "name": "Nicola Asuni",
3428                    "email": "info@tecnick.com",
3429                    "role": "lead"
3430                }
3431            ],
3432            "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
3433            "homepage": "http://www.tcpdf.org/",
3434            "keywords": [
3435                "PDFD32000-2008",
3436                "TCPDF",
3437                "barcodes",
3438                "datamatrix",
3439                "pdf",
3440                "pdf417",
3441                "qrcode"
3442            ],
3443            "time": "2019-09-20T09:35:01+00:00"
3444        }
3445    ],
3446    "packages-dev": [
3447        {
3448            "name": "composer/ca-bundle",
3449            "version": "1.2.6",
3450            "source": {
3451                "type": "git",
3452                "url": "https://github.com/composer/ca-bundle.git",
3453                "reference": "47fe531de31fca4a1b997f87308e7d7804348f7e"
3454            },
3455            "dist": {
3456                "type": "zip",
3457                "url": "https://api.github.com/repos/composer/ca-bundle/zipball/47fe531de31fca4a1b997f87308e7d7804348f7e",
3458                "reference": "47fe531de31fca4a1b997f87308e7d7804348f7e",
3459                "shasum": ""
3460            },
3461            "require": {
3462                "ext-openssl": "*",
3463                "ext-pcre": "*",
3464                "php": "^5.3.2 || ^7.0 || ^8.0"
3465            },
3466            "require-dev": {
3467                "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
3468                "psr/log": "^1.0",
3469                "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
3470            },
3471            "type": "library",
3472            "extra": {
3473                "branch-alias": {
3474                    "dev-master": "1.x-dev"
3475                }
3476            },
3477            "autoload": {
3478                "psr-4": {
3479                    "Composer\\CaBundle\\": "src"
3480                }
3481            },
3482            "notification-url": "https://packagist.org/downloads/",
3483            "license": [
3484                "MIT"
3485            ],
3486            "authors": [
3487                {
3488                    "name": "Jordi Boggiano",
3489                    "email": "j.boggiano@seld.be",
3490                    "homepage": "http://seld.be"
3491                }
3492            ],
3493            "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
3494            "keywords": [
3495                "cabundle",
3496                "cacert",
3497                "certificate",
3498                "ssl",
3499                "tls"
3500            ],
3501            "time": "2020-01-13T10:02:55+00:00"
3502        },
3503        {
3504            "name": "composer/composer",
3505            "version": "1.9.1",
3506            "source": {
3507                "type": "git",
3508                "url": "https://github.com/composer/composer.git",
3509                "reference": "bb01f2180df87ce7992b8331a68904f80439dd2f"
3510            },
3511            "dist": {
3512                "type": "zip",
3513                "url": "https://api.github.com/repos/composer/composer/zipball/bb01f2180df87ce7992b8331a68904f80439dd2f",
3514                "reference": "bb01f2180df87ce7992b8331a68904f80439dd2f",
3515                "shasum": ""
3516            },
3517            "require": {
3518                "composer/ca-bundle": "^1.0",
3519                "composer/semver": "^1.0",
3520                "composer/spdx-licenses": "^1.2",
3521                "composer/xdebug-handler": "^1.1",
3522                "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
3523                "php": "^5.3.2 || ^7.0",
3524                "psr/log": "^1.0",
3525                "seld/jsonlint": "^1.4",
3526                "seld/phar-utils": "^1.0",
3527                "symfony/console": "^2.7 || ^3.0 || ^4.0",
3528                "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
3529                "symfony/finder": "^2.7 || ^3.0 || ^4.0",
3530                "symfony/process": "^2.7 || ^3.0 || ^4.0"
3531            },
3532            "conflict": {
3533                "symfony/console": "2.8.38"
3534            },
3535            "require-dev": {
3536                "phpunit/phpunit": "^4.8.35 || ^5.7",
3537                "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
3538            },
3539            "suggest": {
3540                "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
3541                "ext-zip": "Enabling the zip extension allows you to unzip archives",
3542                "ext-zlib": "Allow gzip compression of HTTP requests"
3543            },
3544            "bin": [
3545                "bin/composer"
3546            ],
3547            "type": "library",
3548            "extra": {
3549                "branch-alias": {
3550                    "dev-master": "1.9-dev"
3551                }
3552            },
3553            "autoload": {
3554                "psr-4": {
3555                    "Composer\\": "src/Composer"
3556                }
3557            },
3558            "notification-url": "https://packagist.org/downloads/",
3559            "license": [
3560                "MIT"
3561            ],
3562            "authors": [
3563                {
3564                    "name": "Nils Adermann",
3565                    "email": "naderman@naderman.de",
3566                    "homepage": "http://www.naderman.de"
3567                },
3568                {
3569                    "name": "Jordi Boggiano",
3570                    "email": "j.boggiano@seld.be",
3571                    "homepage": "http://seld.be"
3572                }
3573            ],
3574            "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
3575            "homepage": "https://getcomposer.org/",
3576            "keywords": [
3577                "autoload",
3578                "dependency",
3579                "package"
3580            ],
3581            "time": "2019-11-01T16:20:17+00:00"
3582        },
3583        {
3584            "name": "composer/semver",
3585            "version": "1.5.1",
3586            "source": {
3587                "type": "git",
3588                "url": "https://github.com/composer/semver.git",
3589                "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
3590            },
3591            "dist": {
3592                "type": "zip",
3593                "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
3594                "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
3595                "shasum": ""
3596            },
3597            "require": {
3598                "php": "^5.3.2 || ^7.0"
3599            },
3600            "require-dev": {
3601                "phpunit/phpunit": "^4.5 || ^5.0.5"
3602            },
3603            "type": "library",
3604            "extra": {
3605                "branch-alias": {
3606                    "dev-master": "1.x-dev"
3607                }
3608            },
3609            "autoload": {
3610                "psr-4": {
3611                    "Composer\\Semver\\": "src"
3612                }
3613            },
3614            "notification-url": "https://packagist.org/downloads/",
3615            "license": [
3616                "MIT"
3617            ],
3618            "authors": [
3619                {
3620                    "name": "Nils Adermann",
3621                    "email": "naderman@naderman.de",
3622                    "homepage": "http://www.naderman.de"
3623                },
3624                {
3625                    "name": "Jordi Boggiano",
3626                    "email": "j.boggiano@seld.be",
3627                    "homepage": "http://seld.be"
3628                },
3629                {
3630                    "name": "Rob Bast",
3631                    "email": "rob.bast@gmail.com",
3632                    "homepage": "http://robbast.nl"
3633                }
3634            ],
3635            "description": "Semver library that offers utilities, version constraint parsing and validation.",
3636            "keywords": [
3637                "semantic",
3638                "semver",
3639                "validation",
3640                "versioning"
3641            ],
3642            "time": "2020-01-13T12:06:48+00:00"
3643        },
3644        {
3645            "name": "composer/spdx-licenses",
3646            "version": "1.5.2",
3647            "source": {
3648                "type": "git",
3649                "url": "https://github.com/composer/spdx-licenses.git",
3650                "reference": "7ac1e6aec371357df067f8a688c3d6974df68fa5"
3651            },
3652            "dist": {
3653                "type": "zip",
3654                "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/7ac1e6aec371357df067f8a688c3d6974df68fa5",
3655                "reference": "7ac1e6aec371357df067f8a688c3d6974df68fa5",
3656                "shasum": ""
3657            },
3658            "require": {
3659                "php": "^5.3.2 || ^7.0 || ^8.0"
3660            },
3661            "require-dev": {
3662                "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
3663            },
3664            "type": "library",
3665            "extra": {
3666                "branch-alias": {
3667                    "dev-master": "1.x-dev"
3668                }
3669            },
3670            "autoload": {
3671                "psr-4": {
3672                    "Composer\\Spdx\\": "src"
3673                }
3674            },
3675            "notification-url": "https://packagist.org/downloads/",
3676            "license": [
3677                "MIT"
3678            ],
3679            "authors": [
3680                {
3681                    "name": "Nils Adermann",
3682                    "email": "naderman@naderman.de",
3683                    "homepage": "http://www.naderman.de"
3684                },
3685                {
3686                    "name": "Jordi Boggiano",
3687                    "email": "j.boggiano@seld.be",
3688                    "homepage": "http://seld.be"
3689                },
3690                {
3691                    "name": "Rob Bast",
3692                    "email": "rob.bast@gmail.com",
3693                    "homepage": "http://robbast.nl"
3694                }
3695            ],
3696            "description": "SPDX licenses list and validation library.",
3697            "keywords": [
3698                "license",
3699                "spdx",
3700                "validator"
3701            ],
3702            "time": "2019-07-29T10:31:59+00:00"
3703        },
3704        {
3705            "name": "composer/xdebug-handler",
3706            "version": "1.4.0",
3707            "source": {
3708                "type": "git",
3709                "url": "https://github.com/composer/xdebug-handler.git",
3710                "reference": "cbe23383749496fe0f373345208b79568e4bc248"
3711            },
3712            "dist": {
3713                "type": "zip",
3714                "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/cbe23383749496fe0f373345208b79568e4bc248",
3715                "reference": "cbe23383749496fe0f373345208b79568e4bc248",
3716                "shasum": ""
3717            },
3718            "require": {
3719                "php": "^5.3.2 || ^7.0 || ^8.0",
3720                "psr/log": "^1.0"
3721            },
3722            "require-dev": {
3723                "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
3724            },
3725            "type": "library",
3726            "autoload": {
3727                "psr-4": {
3728                    "Composer\\XdebugHandler\\": "src"
3729                }
3730            },
3731            "notification-url": "https://packagist.org/downloads/",
3732            "license": [
3733                "MIT"
3734            ],
3735            "authors": [
3736                {
3737                    "name": "John Stevenson",
3738                    "email": "john-stevenson@blueyonder.co.uk"
3739                }
3740            ],
3741            "description": "Restarts a process without Xdebug.",
3742            "keywords": [
3743                "Xdebug",
3744                "performance"
3745            ],
3746            "time": "2019-11-06T16:40:04+00:00"
3747        },
3748        {
3749            "name": "doctrine/instantiator",
3750            "version": "1.3.0",
3751            "source": {
3752                "type": "git",
3753                "url": "https://github.com/doctrine/instantiator.git",
3754                "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
3755            },
3756            "dist": {
3757                "type": "zip",
3758                "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
3759                "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
3760                "shasum": ""
3761            },
3762            "require": {
3763                "php": "^7.1"
3764            },
3765            "require-dev": {
3766                "doctrine/coding-standard": "^6.0",
3767                "ext-pdo": "*",
3768                "ext-phar": "*",
3769                "phpbench/phpbench": "^0.13",
3770                "phpstan/phpstan-phpunit": "^0.11",
3771                "phpstan/phpstan-shim": "^0.11",
3772                "phpunit/phpunit": "^7.0"
3773            },
3774            "type": "library",
3775            "extra": {
3776                "branch-alias": {
3777                    "dev-master": "1.2.x-dev"
3778                }
3779            },
3780            "autoload": {
3781                "psr-4": {
3782                    "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
3783                }
3784            },
3785            "notification-url": "https://packagist.org/downloads/",
3786            "license": [
3787                "MIT"
3788            ],
3789            "authors": [
3790                {
3791                    "name": "Marco Pivetta",
3792                    "email": "ocramius@gmail.com",
3793                    "homepage": "http://ocramius.github.com/"
3794                }
3795            ],
3796            "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
3797            "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
3798            "keywords": [
3799                "constructor",
3800                "instantiate"
3801            ],
3802            "time": "2019-10-21T16:45:58+00:00"
3803        },
3804        {
3805            "name": "justinrainbow/json-schema",
3806            "version": "5.2.9",
3807            "source": {
3808                "type": "git",
3809                "url": "https://github.com/justinrainbow/json-schema.git",
3810                "reference": "44c6787311242a979fa15c704327c20e7221a0e4"
3811            },
3812            "dist": {
3813                "type": "zip",
3814                "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/44c6787311242a979fa15c704327c20e7221a0e4",
3815                "reference": "44c6787311242a979fa15c704327c20e7221a0e4",
3816                "shasum": ""
3817            },
3818            "require": {
3819                "php": ">=5.3.3"
3820            },
3821            "require-dev": {
3822                "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
3823                "json-schema/json-schema-test-suite": "1.2.0",
3824                "phpunit/phpunit": "^4.8.35"
3825            },
3826            "bin": [
3827                "bin/validate-json"
3828            ],
3829            "type": "library",
3830            "extra": {
3831                "branch-alias": {
3832                    "dev-master": "5.0.x-dev"
3833                }
3834            },
3835            "autoload": {
3836                "psr-4": {
3837                    "JsonSchema\\": "src/JsonSchema/"
3838                }
3839            },
3840            "notification-url": "https://packagist.org/downloads/",
3841            "license": [
3842                "MIT"
3843            ],
3844            "authors": [
3845                {
3846                    "name": "Bruno Prieto Reis",
3847                    "email": "bruno.p.reis@gmail.com"
3848                },
3849                {
3850                    "name": "Justin Rainbow",
3851                    "email": "justin.rainbow@gmail.com"
3852                },
3853                {
3854                    "name": "Igor Wiedler",
3855                    "email": "igor@wiedler.ch"
3856                },
3857                {
3858                    "name": "Robert Schönthal",
3859                    "email": "seroscho@googlemail.com"
3860                }
3861            ],
3862            "description": "A library to validate a json schema.",
3863            "homepage": "https://github.com/justinrainbow/json-schema",
3864            "keywords": [
3865                "json",
3866                "schema"
3867            ],
3868            "time": "2019-09-25T14:49:45+00:00"
3869        },
3870        {
3871            "name": "league/flysystem-memory",
3872            "version": "1.0.2",
3873            "source": {
3874                "type": "git",
3875                "url": "https://github.com/thephpleague/flysystem-memory.git",
3876                "reference": "d0e87477c32e29f999b4de05e64c1adcddb51757"
3877            },
3878            "dist": {
3879                "type": "zip",
3880                "url": "https://api.github.com/repos/thephpleague/flysystem-memory/zipball/d0e87477c32e29f999b4de05e64c1adcddb51757",
3881                "reference": "d0e87477c32e29f999b4de05e64c1adcddb51757",
3882                "shasum": ""
3883            },
3884            "require": {
3885                "league/flysystem": "~1.0"
3886            },
3887            "require-dev": {
3888                "phpunit/phpunit": "^5.7.10"
3889            },
3890            "type": "library",
3891            "extra": {
3892                "branch-alias": {
3893                    "dev-master": "1.0-dev"
3894                }
3895            },
3896            "autoload": {
3897                "psr-4": {
3898                    "League\\Flysystem\\Memory\\": "src/"
3899                }
3900            },
3901            "notification-url": "https://packagist.org/downloads/",
3902            "license": [
3903                "MIT"
3904            ],
3905            "authors": [
3906                {
3907                    "name": "Chris Leppanen",
3908                    "email": "chris.leppanen@gmail.com",
3909                    "role": "Developer"
3910                }
3911            ],
3912            "description": "An in-memory adapter for Flysystem.",
3913            "homepage": "https://github.com/thephpleague/flysystem-memory",
3914            "keywords": [
3915                "Flysystem",
3916                "adapter",
3917                "memory"
3918            ],
3919            "time": "2019-05-30T21:34:13+00:00"
3920        },
3921        {
3922            "name": "maximebf/debugbar",
3923            "version": "v1.16.1",
3924            "source": {
3925                "type": "git",
3926                "url": "https://github.com/maximebf/php-debugbar.git",
3927                "reference": "58998b818c6567fac01e35b8a4b70c1a64530556"
3928            },
3929            "dist": {
3930                "type": "zip",
3931                "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/58998b818c6567fac01e35b8a4b70c1a64530556",
3932                "reference": "58998b818c6567fac01e35b8a4b70c1a64530556",
3933                "shasum": ""
3934            },
3935            "require": {
3936                "php": "^7.1",
3937                "psr/log": "^1.0",
3938                "symfony/var-dumper": "^2.6|^3|^4|^5"
3939            },
3940            "require-dev": {
3941                "phpunit/phpunit": "^5"
3942            },
3943            "suggest": {
3944                "kriswallsmith/assetic": "The best way to manage assets",
3945                "monolog/monolog": "Log using Monolog",
3946                "predis/predis": "Redis storage"
3947            },
3948            "type": "library",
3949            "extra": {
3950                "branch-alias": {
3951                    "dev-master": "1.16-dev"
3952                }
3953            },
3954            "autoload": {
3955                "psr-4": {
3956                    "DebugBar\\": "src/DebugBar/"
3957                }
3958            },
3959            "notification-url": "https://packagist.org/downloads/",
3960            "license": [
3961                "MIT"
3962            ],
3963            "authors": [
3964                {
3965                    "name": "Maxime Bouroumeau-Fuseau",
3966                    "email": "maxime.bouroumeau@gmail.com",
3967                    "homepage": "http://maximebf.com"
3968                },
3969                {
3970                    "name": "Barry vd. Heuvel",
3971                    "email": "barryvdh@gmail.com"
3972                }
3973            ],
3974            "description": "Debug bar in the browser for php application",
3975            "homepage": "https://github.com/maximebf/php-debugbar",
3976            "keywords": [
3977                "debug",
3978                "debugbar"
3979            ],
3980            "time": "2019-11-24T09:46:11+00:00"
3981        },
3982        {
3983            "name": "myclabs/deep-copy",
3984            "version": "1.9.4",
3985            "source": {
3986                "type": "git",
3987                "url": "https://github.com/myclabs/DeepCopy.git",
3988                "reference": "579bb7356d91f9456ccd505f24ca8b667966a0a7"
3989            },
3990            "dist": {
3991                "type": "zip",
3992                "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/579bb7356d91f9456ccd505f24ca8b667966a0a7",
3993                "reference": "579bb7356d91f9456ccd505f24ca8b667966a0a7",
3994                "shasum": ""
3995            },
3996            "require": {
3997                "php": "^7.1"
3998            },
3999            "replace": {
4000                "myclabs/deep-copy": "self.version"
4001            },
4002            "require-dev": {
4003                "doctrine/collections": "^1.0",
4004                "doctrine/common": "^2.6",
4005                "phpunit/phpunit": "^7.1"
4006            },
4007            "type": "library",
4008            "autoload": {
4009                "psr-4": {
4010                    "DeepCopy\\": "src/DeepCopy/"
4011                },
4012                "files": [
4013                    "src/DeepCopy/deep_copy.php"
4014                ]
4015            },
4016            "notification-url": "https://packagist.org/downloads/",
4017            "license": [
4018                "MIT"
4019            ],
4020            "description": "Create deep copies (clones) of your objects",
4021            "keywords": [
4022                "clone",
4023                "copy",
4024                "duplicate",
4025                "object",
4026                "object graph"
4027            ],
4028            "time": "2019-12-15T19:12:40+00:00"
4029        },
4030        {
4031            "name": "phar-io/manifest",
4032            "version": "1.0.3",
4033            "source": {
4034                "type": "git",
4035                "url": "https://github.com/phar-io/manifest.git",
4036                "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
4037            },
4038            "dist": {
4039                "type": "zip",
4040                "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
4041                "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
4042                "shasum": ""
4043            },
4044            "require": {
4045                "ext-dom": "*",
4046                "ext-phar": "*",
4047                "phar-io/version": "^2.0",
4048                "php": "^5.6 || ^7.0"
4049            },
4050            "type": "library",
4051            "extra": {
4052                "branch-alias": {
4053                    "dev-master": "1.0.x-dev"
4054                }
4055            },
4056            "autoload": {
4057                "classmap": [
4058                    "src/"
4059                ]
4060            },
4061            "notification-url": "https://packagist.org/downloads/",
4062            "license": [
4063                "BSD-3-Clause"
4064            ],
4065            "authors": [
4066                {
4067                    "name": "Arne Blankerts",
4068                    "email": "arne@blankerts.de",
4069                    "role": "Developer"
4070                },
4071                {
4072                    "name": "Sebastian Heuer",
4073                    "email": "sebastian@phpeople.de",
4074                    "role": "Developer"
4075                },
4076                {
4077                    "name": "Sebastian Bergmann",
4078                    "email": "sebastian@phpunit.de",
4079                    "role": "Developer"
4080                }
4081            ],
4082            "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
4083            "time": "2018-07-08T19:23:20+00:00"
4084        },
4085        {
4086            "name": "phar-io/version",
4087            "version": "2.0.1",
4088            "source": {
4089                "type": "git",
4090                "url": "https://github.com/phar-io/version.git",
4091                "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
4092            },
4093            "dist": {
4094                "type": "zip",
4095                "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
4096                "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
4097                "shasum": ""
4098            },
4099            "require": {
4100                "php": "^5.6 || ^7.0"
4101            },
4102            "type": "library",
4103            "autoload": {
4104                "classmap": [
4105                    "src/"
4106                ]
4107            },
4108            "notification-url": "https://packagist.org/downloads/",
4109            "license": [
4110                "BSD-3-Clause"
4111            ],
4112            "authors": [
4113                {
4114                    "name": "Arne Blankerts",
4115                    "email": "arne@blankerts.de",
4116                    "role": "Developer"
4117                },
4118                {
4119                    "name": "Sebastian Heuer",
4120                    "email": "sebastian@phpeople.de",
4121                    "role": "Developer"
4122                },
4123                {
4124                    "name": "Sebastian Bergmann",
4125                    "email": "sebastian@phpunit.de",
4126                    "role": "Developer"
4127                }
4128            ],
4129            "description": "Library for handling version information and constraints",
4130            "time": "2018-07-08T19:19:57+00:00"
4131        },
4132        {
4133            "name": "php-coveralls/php-coveralls",
4134            "version": "v2.2.0",
4135            "source": {
4136                "type": "git",
4137                "url": "https://github.com/php-coveralls/php-coveralls.git",
4138                "reference": "3e6420fa666ef7bae5e750ddeac903153e193bae"
4139            },
4140            "dist": {
4141                "type": "zip",
4142                "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/3e6420fa666ef7bae5e750ddeac903153e193bae",
4143                "reference": "3e6420fa666ef7bae5e750ddeac903153e193bae",
4144                "shasum": ""
4145            },
4146            "require": {
4147                "ext-json": "*",
4148                "ext-simplexml": "*",
4149                "guzzlehttp/guzzle": "^6.0",
4150                "php": "^5.5 || ^7.0",
4151                "psr/log": "^1.0",
4152                "symfony/config": "^2.1 || ^3.0 || ^4.0 || ^5.0",
4153                "symfony/console": "^2.1 || ^3.0 || ^4.0 || ^5.0",
4154                "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0 || ^5.0",
4155                "symfony/yaml": "^2.0.5 || ^3.0 || ^4.0 || ^5.0"
4156            },
4157            "require-dev": {
4158                "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0"
4159            },
4160            "suggest": {
4161                "symfony/http-kernel": "Allows Symfony integration"
4162            },
4163            "bin": [
4164                "bin/php-coveralls"
4165            ],
4166            "type": "library",
4167            "extra": {
4168                "branch-alias": {
4169                    "dev-master": "2.2-dev"
4170                }
4171            },
4172            "autoload": {
4173                "psr-4": {
4174                    "PhpCoveralls\\": "src/"
4175                }
4176            },
4177            "notification-url": "https://packagist.org/downloads/",
4178            "license": [
4179                "MIT"
4180            ],
4181            "authors": [
4182                {
4183                    "name": "Kitamura Satoshi",
4184                    "email": "with.no.parachute@gmail.com",
4185                    "homepage": "https://www.facebook.com/satooshi.jp",
4186                    "role": "Original creator"
4187                },
4188                {
4189                    "name": "Takashi Matsuo",
4190                    "email": "tmatsuo@google.com"
4191                },
4192                {
4193                    "name": "Google Inc"
4194                },
4195                {
4196                    "name": "Dariusz Ruminski",
4197                    "email": "dariusz.ruminski@gmail.com",
4198                    "homepage": "https://github.com/keradus"
4199                },
4200                {
4201                    "name": "Contributors",
4202                    "homepage": "https://github.com/php-coveralls/php-coveralls/graphs/contributors"
4203                }
4204            ],
4205            "description": "PHP client library for Coveralls API",
4206            "homepage": "https://github.com/php-coveralls/php-coveralls",
4207            "keywords": [
4208                "ci",
4209                "coverage",
4210                "github",
4211                "test"
4212            ],
4213            "time": "2019-11-20T16:29:20+00:00"
4214        },
4215        {
4216            "name": "phpdocumentor/reflection-common",
4217            "version": "2.0.0",
4218            "source": {
4219                "type": "git",
4220                "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
4221                "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
4222            },
4223            "dist": {
4224                "type": "zip",
4225                "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
4226                "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
4227                "shasum": ""
4228            },
4229            "require": {
4230                "php": ">=7.1"
4231            },
4232            "require-dev": {
4233                "phpunit/phpunit": "~6"
4234            },
4235            "type": "library",
4236            "extra": {
4237                "branch-alias": {
4238                    "dev-master": "2.x-dev"
4239                }
4240            },
4241            "autoload": {
4242                "psr-4": {
4243                    "phpDocumentor\\Reflection\\": "src/"
4244                }
4245            },
4246            "notification-url": "https://packagist.org/downloads/",
4247            "license": [
4248                "MIT"
4249            ],
4250            "authors": [
4251                {
4252                    "name": "Jaap van Otterdijk",
4253                    "email": "opensource@ijaap.nl"
4254                }
4255            ],
4256            "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
4257            "homepage": "http://www.phpdoc.org",
4258            "keywords": [
4259                "FQSEN",
4260                "phpDocumentor",
4261                "phpdoc",
4262                "reflection",
4263                "static analysis"
4264            ],
4265            "time": "2018-08-07T13:53:10+00:00"
4266        },
4267        {
4268            "name": "phpdocumentor/reflection-docblock",
4269            "version": "4.3.4",
4270            "source": {
4271                "type": "git",
4272                "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
4273                "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
4274            },
4275            "dist": {
4276                "type": "zip",
4277                "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
4278                "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
4279                "shasum": ""
4280            },
4281            "require": {
4282                "php": "^7.0",
4283                "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
4284                "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
4285                "webmozart/assert": "^1.0"
4286            },
4287            "require-dev": {
4288                "doctrine/instantiator": "^1.0.5",
4289                "mockery/mockery": "^1.0",
4290                "phpdocumentor/type-resolver": "0.4.*",
4291                "phpunit/phpunit": "^6.4"
4292            },
4293            "type": "library",
4294            "extra": {
4295                "branch-alias": {
4296                    "dev-master": "4.x-dev"
4297                }
4298            },
4299            "autoload": {
4300                "psr-4": {
4301                    "phpDocumentor\\Reflection\\": [
4302                        "src/"
4303                    ]
4304                }
4305            },
4306            "notification-url": "https://packagist.org/downloads/",
4307            "license": [
4308                "MIT"
4309            ],
4310            "authors": [
4311                {
4312                    "name": "Mike van Riel",
4313                    "email": "me@mikevanriel.com"
4314                }
4315            ],
4316            "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
4317            "time": "2019-12-28T18:55:12+00:00"
4318        },
4319        {
4320            "name": "phpdocumentor/type-resolver",
4321            "version": "1.0.1",
4322            "source": {
4323                "type": "git",
4324                "url": "https://github.com/phpDocumentor/TypeResolver.git",
4325                "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
4326            },
4327            "dist": {
4328                "type": "zip",
4329                "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
4330                "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
4331                "shasum": ""
4332            },
4333            "require": {
4334                "php": "^7.1",
4335                "phpdocumentor/reflection-common": "^2.0"
4336            },
4337            "require-dev": {
4338                "ext-tokenizer": "^7.1",
4339                "mockery/mockery": "~1",
4340                "phpunit/phpunit": "^7.0"
4341            },
4342            "type": "library",
4343            "extra": {
4344                "branch-alias": {
4345                    "dev-master": "1.x-dev"
4346                }
4347            },
4348            "autoload": {
4349                "psr-4": {
4350                    "phpDocumentor\\Reflection\\": "src"
4351                }
4352            },
4353            "notification-url": "https://packagist.org/downloads/",
4354            "license": [
4355                "MIT"
4356            ],
4357            "authors": [
4358                {
4359                    "name": "Mike van Riel",
4360                    "email": "me@mikevanriel.com"
4361                }
4362            ],
4363            "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
4364            "time": "2019-08-22T18:11:29+00:00"
4365        },
4366        {
4367            "name": "phpspec/prophecy",
4368            "version": "1.10.1",
4369            "source": {
4370                "type": "git",
4371                "url": "https://github.com/phpspec/prophecy.git",
4372                "reference": "cbe1df668b3fe136bcc909126a0f529a78d4cbbc"
4373            },
4374            "dist": {
4375                "type": "zip",
4376                "url": "https://api.github.com/repos/phpspec/prophecy/zipball/cbe1df668b3fe136bcc909126a0f529a78d4cbbc",
4377                "reference": "cbe1df668b3fe136bcc909126a0f529a78d4cbbc",
4378                "shasum": ""
4379            },
4380            "require": {
4381                "doctrine/instantiator": "^1.0.2",
4382                "php": "^5.3|^7.0",
4383                "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
4384                "sebastian/comparator": "^1.2.3|^2.0|^3.0",
4385                "sebastian/recursion-context": "^1.0|^2.0|^3.0"
4386            },
4387            "require-dev": {
4388                "phpspec/phpspec": "^2.5 || ^3.2",
4389                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
4390            },
4391            "type": "library",
4392            "extra": {
4393                "branch-alias": {
4394                    "dev-master": "1.10.x-dev"
4395                }
4396            },
4397            "autoload": {
4398                "psr-4": {
4399                    "Prophecy\\": "src/Prophecy"
4400                }
4401            },
4402            "notification-url": "https://packagist.org/downloads/",
4403            "license": [
4404                "MIT"
4405            ],
4406            "authors": [
4407                {
4408                    "name": "Konstantin Kudryashov",
4409                    "email": "ever.zet@gmail.com",
4410                    "homepage": "http://everzet.com"
4411                },
4412                {
4413                    "name": "Marcello Duarte",
4414                    "email": "marcello.duarte@gmail.com"
4415                }
4416            ],
4417            "description": "Highly opinionated mocking framework for PHP 5.3+",
4418            "homepage": "https://github.com/phpspec/prophecy",
4419            "keywords": [
4420                "Double",
4421                "Dummy",
4422                "fake",
4423                "mock",
4424                "spy",
4425                "stub"
4426            ],
4427            "time": "2019-12-22T21:05:45+00:00"
4428        },
4429        {
4430            "name": "phpunit/php-code-coverage",
4431            "version": "6.1.4",
4432            "source": {
4433                "type": "git",
4434                "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
4435                "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
4436            },
4437            "dist": {
4438                "type": "zip",
4439                "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
4440                "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
4441                "shasum": ""
4442            },
4443            "require": {
4444                "ext-dom": "*",
4445                "ext-xmlwriter": "*",
4446                "php": "^7.1",
4447                "phpunit/php-file-iterator": "^2.0",
4448                "phpunit/php-text-template": "^1.2.1",
4449                "phpunit/php-token-stream": "^3.0",
4450                "sebastian/code-unit-reverse-lookup": "^1.0.1",
4451                "sebastian/environment": "^3.1 || ^4.0",
4452                "sebastian/version": "^2.0.1",
4453                "theseer/tokenizer": "^1.1"
4454            },
4455            "require-dev": {
4456                "phpunit/phpunit": "^7.0"
4457            },
4458            "suggest": {
4459                "ext-xdebug": "^2.6.0"
4460            },
4461            "type": "library",
4462            "extra": {
4463                "branch-alias": {
4464                    "dev-master": "6.1-dev"
4465                }
4466            },
4467            "autoload": {
4468                "classmap": [
4469                    "src/"
4470                ]
4471            },
4472            "notification-url": "https://packagist.org/downloads/",
4473            "license": [
4474                "BSD-3-Clause"
4475            ],
4476            "authors": [
4477                {
4478                    "name": "Sebastian Bergmann",
4479                    "email": "sebastian@phpunit.de",
4480                    "role": "lead"
4481                }
4482            ],
4483            "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
4484            "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
4485            "keywords": [
4486                "coverage",
4487                "testing",
4488                "xunit"
4489            ],
4490            "time": "2018-10-31T16:06:48+00:00"
4491        },
4492        {
4493            "name": "phpunit/php-file-iterator",
4494            "version": "2.0.2",
4495            "source": {
4496                "type": "git",
4497                "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
4498                "reference": "050bedf145a257b1ff02746c31894800e5122946"
4499            },
4500            "dist": {
4501                "type": "zip",
4502                "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
4503                "reference": "050bedf145a257b1ff02746c31894800e5122946",
4504                "shasum": ""
4505            },
4506            "require": {
4507                "php": "^7.1"
4508            },
4509            "require-dev": {
4510                "phpunit/phpunit": "^7.1"
4511            },
4512            "type": "library",
4513            "extra": {
4514                "branch-alias": {
4515                    "dev-master": "2.0.x-dev"
4516                }
4517            },
4518            "autoload": {
4519                "classmap": [
4520                    "src/"
4521                ]
4522            },
4523            "notification-url": "https://packagist.org/downloads/",
4524            "license": [
4525                "BSD-3-Clause"
4526            ],
4527            "authors": [
4528                {
4529                    "name": "Sebastian Bergmann",
4530                    "email": "sebastian@phpunit.de",
4531                    "role": "lead"
4532                }
4533            ],
4534            "description": "FilterIterator implementation that filters files based on a list of suffixes.",
4535            "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
4536            "keywords": [
4537                "filesystem",
4538                "iterator"
4539            ],
4540            "time": "2018-09-13T20:33:42+00:00"
4541        },
4542        {
4543            "name": "phpunit/php-text-template",
4544            "version": "1.2.1",
4545            "source": {
4546                "type": "git",
4547                "url": "https://github.com/sebastianbergmann/php-text-template.git",
4548                "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
4549            },
4550            "dist": {
4551                "type": "zip",
4552                "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
4553                "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
4554                "shasum": ""
4555            },
4556            "require": {
4557                "php": ">=5.3.3"
4558            },
4559            "type": "library",
4560            "autoload": {
4561                "classmap": [
4562                    "src/"
4563                ]
4564            },
4565            "notification-url": "https://packagist.org/downloads/",
4566            "license": [
4567                "BSD-3-Clause"
4568            ],
4569            "authors": [
4570                {
4571                    "name": "Sebastian Bergmann",
4572                    "email": "sebastian@phpunit.de",
4573                    "role": "lead"
4574                }
4575            ],
4576            "description": "Simple template engine.",
4577            "homepage": "https://github.com/sebastianbergmann/php-text-template/",
4578            "keywords": [
4579                "template"
4580            ],
4581            "time": "2015-06-21T13:50:34+00:00"
4582        },
4583        {
4584            "name": "phpunit/php-timer",
4585            "version": "2.1.2",
4586            "source": {
4587                "type": "git",
4588                "url": "https://github.com/sebastianbergmann/php-timer.git",
4589                "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
4590            },
4591            "dist": {
4592                "type": "zip",
4593                "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
4594                "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
4595                "shasum": ""
4596            },
4597            "require": {
4598                "php": "^7.1"
4599            },
4600            "require-dev": {
4601                "phpunit/phpunit": "^7.0"
4602            },
4603            "type": "library",
4604            "extra": {
4605                "branch-alias": {
4606                    "dev-master": "2.1-dev"
4607                }
4608            },
4609            "autoload": {
4610                "classmap": [
4611                    "src/"
4612                ]
4613            },
4614            "notification-url": "https://packagist.org/downloads/",
4615            "license": [
4616                "BSD-3-Clause"
4617            ],
4618            "authors": [
4619                {
4620                    "name": "Sebastian Bergmann",
4621                    "email": "sebastian@phpunit.de",
4622                    "role": "lead"
4623                }
4624            ],
4625            "description": "Utility class for timing",
4626            "homepage": "https://github.com/sebastianbergmann/php-timer/",
4627            "keywords": [
4628                "timer"
4629            ],
4630            "time": "2019-06-07T04:22:29+00:00"
4631        },
4632        {
4633            "name": "phpunit/php-token-stream",
4634            "version": "3.1.1",
4635            "source": {
4636                "type": "git",
4637                "url": "https://github.com/sebastianbergmann/php-token-stream.git",
4638                "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
4639            },
4640            "dist": {
4641                "type": "zip",
4642                "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
4643                "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
4644                "shasum": ""
4645            },
4646            "require": {
4647                "ext-tokenizer": "*",
4648                "php": "^7.1"
4649            },
4650            "require-dev": {
4651                "phpunit/phpunit": "^7.0"
4652            },
4653            "type": "library",
4654            "extra": {
4655                "branch-alias": {
4656                    "dev-master": "3.1-dev"
4657                }
4658            },
4659            "autoload": {
4660                "classmap": [
4661                    "src/"
4662                ]
4663            },
4664            "notification-url": "https://packagist.org/downloads/",
4665            "license": [
4666                "BSD-3-Clause"
4667            ],
4668            "authors": [
4669                {
4670                    "name": "Sebastian Bergmann",
4671                    "email": "sebastian@phpunit.de"
4672                }
4673            ],
4674            "description": "Wrapper around PHP's tokenizer extension.",
4675            "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
4676            "keywords": [
4677                "tokenizer"
4678            ],
4679            "time": "2019-09-17T06:23:10+00:00"
4680        },
4681        {
4682            "name": "phpunit/phpunit",
4683            "version": "7.5.20",
4684            "source": {
4685                "type": "git",
4686                "url": "https://github.com/sebastianbergmann/phpunit.git",
4687                "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
4688            },
4689            "dist": {
4690                "type": "zip",
4691                "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
4692                "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
4693                "shasum": ""
4694            },
4695            "require": {
4696                "doctrine/instantiator": "^1.1",
4697                "ext-dom": "*",
4698                "ext-json": "*",
4699                "ext-libxml": "*",
4700                "ext-mbstring": "*",
4701                "ext-xml": "*",
4702                "myclabs/deep-copy": "^1.7",
4703                "phar-io/manifest": "^1.0.2",
4704                "phar-io/version": "^2.0",
4705                "php": "^7.1",
4706                "phpspec/prophecy": "^1.7",
4707                "phpunit/php-code-coverage": "^6.0.7",
4708                "phpunit/php-file-iterator": "^2.0.1",
4709                "phpunit/php-text-template": "^1.2.1",
4710                "phpunit/php-timer": "^2.1",
4711                "sebastian/comparator": "^3.0",
4712                "sebastian/diff": "^3.0",
4713                "sebastian/environment": "^4.0",
4714                "sebastian/exporter": "^3.1",
4715                "sebastian/global-state": "^2.0",
4716                "sebastian/object-enumerator": "^3.0.3",
4717                "sebastian/resource-operations": "^2.0",
4718                "sebastian/version": "^2.0.1"
4719            },
4720            "conflict": {
4721                "phpunit/phpunit-mock-objects": "*"
4722            },
4723            "require-dev": {
4724                "ext-pdo": "*"
4725            },
4726            "suggest": {
4727                "ext-soap": "*",
4728                "ext-xdebug": "*",
4729                "phpunit/php-invoker": "^2.0"
4730            },
4731            "bin": [
4732                "phpunit"
4733            ],
4734            "type": "library",
4735            "extra": {
4736                "branch-alias": {
4737                    "dev-master": "7.5-dev"
4738                }
4739            },
4740            "autoload": {
4741                "classmap": [
4742                    "src/"
4743                ]
4744            },
4745            "notification-url": "https://packagist.org/downloads/",
4746            "license": [
4747                "BSD-3-Clause"
4748            ],
4749            "authors": [
4750                {
4751                    "name": "Sebastian Bergmann",
4752                    "email": "sebastian@phpunit.de",
4753                    "role": "lead"
4754                }
4755            ],
4756            "description": "The PHP Unit Testing framework.",
4757            "homepage": "https://phpunit.de/",
4758            "keywords": [
4759                "phpunit",
4760                "testing",
4761                "xunit"
4762            ],
4763            "time": "2020-01-08T08:45:45+00:00"
4764        },
4765        {
4766            "name": "sebastian/code-unit-reverse-lookup",
4767            "version": "1.0.1",
4768            "source": {
4769                "type": "git",
4770                "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
4771                "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
4772            },
4773            "dist": {
4774                "type": "zip",
4775                "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
4776                "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
4777                "shasum": ""
4778            },
4779            "require": {
4780                "php": "^5.6 || ^7.0"
4781            },
4782            "require-dev": {
4783                "phpunit/phpunit": "^5.7 || ^6.0"
4784            },
4785            "type": "library",
4786            "extra": {
4787                "branch-alias": {
4788                    "dev-master": "1.0.x-dev"
4789                }
4790            },
4791            "autoload": {
4792                "classmap": [
4793                    "src/"
4794                ]
4795            },
4796            "notification-url": "https://packagist.org/downloads/",
4797            "license": [
4798                "BSD-3-Clause"
4799            ],
4800            "authors": [
4801                {
4802                    "name": "Sebastian Bergmann",
4803                    "email": "sebastian@phpunit.de"
4804                }
4805            ],
4806            "description": "Looks up which function or method a line of code belongs to",
4807            "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
4808            "time": "2017-03-04T06:30:41+00:00"
4809        },
4810        {
4811            "name": "sebastian/comparator",
4812            "version": "3.0.2",
4813            "source": {
4814                "type": "git",
4815                "url": "https://github.com/sebastianbergmann/comparator.git",
4816                "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
4817            },
4818            "dist": {
4819                "type": "zip",
4820                "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
4821                "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
4822                "shasum": ""
4823            },
4824            "require": {
4825                "php": "^7.1",
4826                "sebastian/diff": "^3.0",
4827                "sebastian/exporter": "^3.1"
4828            },
4829            "require-dev": {
4830                "phpunit/phpunit": "^7.1"
4831            },
4832            "type": "library",
4833            "extra": {
4834                "branch-alias": {
4835                    "dev-master": "3.0-dev"
4836                }
4837            },
4838            "autoload": {
4839                "classmap": [
4840                    "src/"
4841                ]
4842            },
4843            "notification-url": "https://packagist.org/downloads/",
4844            "license": [
4845                "BSD-3-Clause"
4846            ],
4847            "authors": [
4848                {
4849                    "name": "Jeff Welch",
4850                    "email": "whatthejeff@gmail.com"
4851                },
4852                {
4853                    "name": "Volker Dusch",
4854                    "email": "github@wallbash.com"
4855                },
4856                {
4857                    "name": "Bernhard Schussek",
4858                    "email": "bschussek@2bepublished.at"
4859                },
4860                {
4861                    "name": "Sebastian Bergmann",
4862                    "email": "sebastian@phpunit.de"
4863                }
4864            ],
4865            "description": "Provides the functionality to compare PHP values for equality",
4866            "homepage": "https://github.com/sebastianbergmann/comparator",
4867            "keywords": [
4868                "comparator",
4869                "compare",
4870                "equality"
4871            ],
4872            "time": "2018-07-12T15:12:46+00:00"
4873        },
4874        {
4875            "name": "sebastian/diff",
4876            "version": "3.0.2",
4877            "source": {
4878                "type": "git",
4879                "url": "https://github.com/sebastianbergmann/diff.git",
4880                "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
4881            },
4882            "dist": {
4883                "type": "zip",
4884                "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
4885                "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
4886                "shasum": ""
4887            },
4888            "require": {
4889                "php": "^7.1"
4890            },
4891            "require-dev": {
4892                "phpunit/phpunit": "^7.5 || ^8.0",
4893                "symfony/process": "^2 || ^3.3 || ^4"
4894            },
4895            "type": "library",
4896            "extra": {
4897                "branch-alias": {
4898                    "dev-master": "3.0-dev"
4899                }
4900            },
4901            "autoload": {
4902                "classmap": [
4903                    "src/"
4904                ]
4905            },
4906            "notification-url": "https://packagist.org/downloads/",
4907            "license": [
4908                "BSD-3-Clause"
4909            ],
4910            "authors": [
4911                {
4912                    "name": "Kore Nordmann",
4913                    "email": "mail@kore-nordmann.de"
4914                },
4915                {
4916                    "name": "Sebastian Bergmann",
4917                    "email": "sebastian@phpunit.de"
4918                }
4919            ],
4920            "description": "Diff implementation",
4921            "homepage": "https://github.com/sebastianbergmann/diff",
4922            "keywords": [
4923                "diff",
4924                "udiff",
4925                "unidiff",
4926                "unified diff"
4927            ],
4928            "time": "2019-02-04T06:01:07+00:00"
4929        },
4930        {
4931            "name": "sebastian/environment",
4932            "version": "4.2.3",
4933            "source": {
4934                "type": "git",
4935                "url": "https://github.com/sebastianbergmann/environment.git",
4936                "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
4937            },
4938            "dist": {
4939                "type": "zip",
4940                "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
4941                "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
4942                "shasum": ""
4943            },
4944            "require": {
4945                "php": "^7.1"
4946            },
4947            "require-dev": {
4948                "phpunit/phpunit": "^7.5"
4949            },
4950            "suggest": {
4951                "ext-posix": "*"
4952            },
4953            "type": "library",
4954            "extra": {
4955                "branch-alias": {
4956                    "dev-master": "4.2-dev"
4957                }
4958            },
4959            "autoload": {
4960                "classmap": [
4961                    "src/"
4962                ]
4963            },
4964            "notification-url": "https://packagist.org/downloads/",
4965            "license": [
4966                "BSD-3-Clause"
4967            ],
4968            "authors": [
4969                {
4970                    "name": "Sebastian Bergmann",
4971                    "email": "sebastian@phpunit.de"
4972                }
4973            ],
4974            "description": "Provides functionality to handle HHVM/PHP environments",
4975            "homepage": "http://www.github.com/sebastianbergmann/environment",
4976            "keywords": [
4977                "Xdebug",
4978                "environment",
4979                "hhvm"
4980            ],
4981            "time": "2019-11-20T08:46:58+00:00"
4982        },
4983        {
4984            "name": "sebastian/exporter",
4985            "version": "3.1.2",
4986            "source": {
4987                "type": "git",
4988                "url": "https://github.com/sebastianbergmann/exporter.git",
4989                "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
4990            },
4991            "dist": {
4992                "type": "zip",
4993                "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
4994                "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
4995                "shasum": ""
4996            },
4997            "require": {
4998                "php": "^7.0",
4999                "sebastian/recursion-context": "^3.0"
5000            },
5001            "require-dev": {
5002                "ext-mbstring": "*",
5003                "phpunit/phpunit": "^6.0"
5004            },
5005            "type": "library",
5006            "extra": {
5007                "branch-alias": {
5008                    "dev-master": "3.1.x-dev"
5009                }
5010            },
5011            "autoload": {
5012                "classmap": [
5013                    "src/"
5014                ]
5015            },
5016            "notification-url": "https://packagist.org/downloads/",
5017            "license": [
5018                "BSD-3-Clause"
5019            ],
5020            "authors": [
5021                {
5022                    "name": "Sebastian Bergmann",
5023                    "email": "sebastian@phpunit.de"
5024                },
5025                {
5026                    "name": "Jeff Welch",
5027                    "email": "whatthejeff@gmail.com"
5028                },
5029                {
5030                    "name": "Volker Dusch",
5031                    "email": "github@wallbash.com"
5032                },
5033                {
5034                    "name": "Adam Harvey",
5035                    "email": "aharvey@php.net"
5036                },
5037                {
5038                    "name": "Bernhard Schussek",
5039                    "email": "bschussek@gmail.com"
5040                }
5041            ],
5042            "description": "Provides the functionality to export PHP variables for visualization",
5043            "homepage": "http://www.github.com/sebastianbergmann/exporter",
5044            "keywords": [
5045                "export",
5046                "exporter"
5047            ],
5048            "time": "2019-09-14T09:02:43+00:00"
5049        },
5050        {
5051            "name": "sebastian/global-state",
5052            "version": "2.0.0",
5053            "source": {
5054                "type": "git",
5055                "url": "https://github.com/sebastianbergmann/global-state.git",
5056                "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
5057            },
5058            "dist": {
5059                "type": "zip",
5060                "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
5061                "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
5062                "shasum": ""
5063            },
5064            "require": {
5065                "php": "^7.0"
5066            },
5067            "require-dev": {
5068                "phpunit/phpunit": "^6.0"
5069            },
5070            "suggest": {
5071                "ext-uopz": "*"
5072            },
5073            "type": "library",
5074            "extra": {
5075                "branch-alias": {
5076                    "dev-master": "2.0-dev"
5077                }
5078            },
5079            "autoload": {
5080                "classmap": [
5081                    "src/"
5082                ]
5083            },
5084            "notification-url": "https://packagist.org/downloads/",
5085            "license": [
5086                "BSD-3-Clause"
5087            ],
5088            "authors": [
5089                {
5090                    "name": "Sebastian Bergmann",
5091                    "email": "sebastian@phpunit.de"
5092                }
5093            ],
5094            "description": "Snapshotting of global state",
5095            "homepage": "http://www.github.com/sebastianbergmann/global-state",
5096            "keywords": [
5097                "global state"
5098            ],
5099            "time": "2017-04-27T15:39:26+00:00"
5100        },
5101        {
5102            "name": "sebastian/object-enumerator",
5103            "version": "3.0.3",
5104            "source": {
5105                "type": "git",
5106                "url": "https://github.com/sebastianbergmann/object-enumerator.git",
5107                "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
5108            },
5109            "dist": {
5110                "type": "zip",
5111                "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
5112                "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
5113                "shasum": ""
5114            },
5115            "require": {
5116                "php": "^7.0",
5117                "sebastian/object-reflector": "^1.1.1",
5118                "sebastian/recursion-context": "^3.0"
5119            },
5120            "require-dev": {
5121                "phpunit/phpunit": "^6.0"
5122            },
5123            "type": "library",
5124            "extra": {
5125                "branch-alias": {
5126                    "dev-master": "3.0.x-dev"
5127                }
5128            },
5129            "autoload": {
5130                "classmap": [
5131                    "src/"
5132                ]
5133            },
5134            "notification-url": "https://packagist.org/downloads/",
5135            "license": [
5136                "BSD-3-Clause"
5137            ],
5138            "authors": [
5139                {
5140                    "name": "Sebastian Bergmann",
5141                    "email": "sebastian@phpunit.de"
5142                }
5143            ],
5144            "description": "Traverses array structures and object graphs to enumerate all referenced objects",
5145            "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
5146            "time": "2017-08-03T12:35:26+00:00"
5147        },
5148        {
5149            "name": "sebastian/object-reflector",
5150            "version": "1.1.1",
5151            "source": {
5152                "type": "git",
5153                "url": "https://github.com/sebastianbergmann/object-reflector.git",
5154                "reference": "773f97c67f28de00d397be301821b06708fca0be"
5155            },
5156            "dist": {
5157                "type": "zip",
5158                "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
5159                "reference": "773f97c67f28de00d397be301821b06708fca0be",
5160                "shasum": ""
5161            },
5162            "require": {
5163                "php": "^7.0"
5164            },
5165            "require-dev": {
5166                "phpunit/phpunit": "^6.0"
5167            },
5168            "type": "library",
5169            "extra": {
5170                "branch-alias": {
5171                    "dev-master": "1.1-dev"
5172                }
5173            },
5174            "autoload": {
5175                "classmap": [
5176                    "src/"
5177                ]
5178            },
5179            "notification-url": "https://packagist.org/downloads/",
5180            "license": [
5181                "BSD-3-Clause"
5182            ],
5183            "authors": [
5184                {
5185                    "name": "Sebastian Bergmann",
5186                    "email": "sebastian@phpunit.de"
5187                }
5188            ],
5189            "description": "Allows reflection of object attributes, including inherited and non-public ones",
5190            "homepage": "https://github.com/sebastianbergmann/object-reflector/",
5191            "time": "2017-03-29T09:07:27+00:00"
5192        },
5193        {
5194            "name": "sebastian/recursion-context",
5195            "version": "3.0.0",
5196            "source": {
5197                "type": "git",
5198                "url": "https://github.com/sebastianbergmann/recursion-context.git",
5199                "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
5200            },
5201            "dist": {
5202                "type": "zip",
5203                "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
5204                "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
5205                "shasum": ""
5206            },
5207            "require": {
5208                "php": "^7.0"
5209            },
5210            "require-dev": {
5211                "phpunit/phpunit": "^6.0"
5212            },
5213            "type": "library",
5214            "extra": {
5215                "branch-alias": {
5216                    "dev-master": "3.0.x-dev"
5217                }
5218            },
5219            "autoload": {
5220                "classmap": [
5221                    "src/"
5222                ]
5223            },
5224            "notification-url": "https://packagist.org/downloads/",
5225            "license": [
5226                "BSD-3-Clause"
5227            ],
5228            "authors": [
5229                {
5230                    "name": "Jeff Welch",
5231                    "email": "whatthejeff@gmail.com"
5232                },
5233                {
5234                    "name": "Sebastian Bergmann",
5235                    "email": "sebastian@phpunit.de"
5236                },
5237                {
5238                    "name": "Adam Harvey",
5239                    "email": "aharvey@php.net"
5240                }
5241            ],
5242            "description": "Provides functionality to recursively process PHP variables",
5243            "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
5244            "time": "2017-03-03T06:23:57+00:00"
5245        },
5246        {
5247            "name": "sebastian/resource-operations",
5248            "version": "2.0.1",
5249            "source": {
5250                "type": "git",
5251                "url": "https://github.com/sebastianbergmann/resource-operations.git",
5252                "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
5253            },
5254            "dist": {
5255                "type": "zip",
5256                "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
5257                "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
5258                "shasum": ""
5259            },
5260            "require": {
5261                "php": "^7.1"
5262            },
5263            "type": "library",
5264            "extra": {
5265                "branch-alias": {
5266                    "dev-master": "2.0-dev"
5267                }
5268            },
5269            "autoload": {
5270                "classmap": [
5271                    "src/"
5272                ]
5273            },
5274            "notification-url": "https://packagist.org/downloads/",
5275            "license": [
5276                "BSD-3-Clause"
5277            ],
5278            "authors": [
5279                {
5280                    "name": "Sebastian Bergmann",
5281                    "email": "sebastian@phpunit.de"
5282                }
5283            ],
5284            "description": "Provides a list of PHP built-in functions that operate on resources",
5285            "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
5286            "time": "2018-10-04T04:07:39+00:00"
5287        },
5288        {
5289            "name": "sebastian/version",
5290            "version": "2.0.1",
5291            "source": {
5292                "type": "git",
5293                "url": "https://github.com/sebastianbergmann/version.git",
5294                "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
5295            },
5296            "dist": {
5297                "type": "zip",
5298                "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
5299                "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
5300                "shasum": ""
5301            },
5302            "require": {
5303                "php": ">=5.6"
5304            },
5305            "type": "library",
5306            "extra": {
5307                "branch-alias": {
5308                    "dev-master": "2.0.x-dev"
5309                }
5310            },
5311            "autoload": {
5312                "classmap": [
5313                    "src/"
5314                ]
5315            },
5316            "notification-url": "https://packagist.org/downloads/",
5317            "license": [
5318                "BSD-3-Clause"
5319            ],
5320            "authors": [
5321                {
5322                    "name": "Sebastian Bergmann",
5323                    "email": "sebastian@phpunit.de",
5324                    "role": "lead"
5325                }
5326            ],
5327            "description": "Library that helps with managing the version number of Git-hosted PHP projects",
5328            "homepage": "https://github.com/sebastianbergmann/version",
5329            "time": "2016-10-03T07:35:21+00:00"
5330        },
5331        {
5332            "name": "seld/jsonlint",
5333            "version": "1.7.2",
5334            "source": {
5335                "type": "git",
5336                "url": "https://github.com/Seldaek/jsonlint.git",
5337                "reference": "e2e5d290e4d2a4f0eb449f510071392e00e10d19"
5338            },
5339            "dist": {
5340                "type": "zip",
5341                "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/e2e5d290e4d2a4f0eb449f510071392e00e10d19",
5342                "reference": "e2e5d290e4d2a4f0eb449f510071392e00e10d19",
5343                "shasum": ""
5344            },
5345            "require": {
5346                "php": "^5.3 || ^7.0"
5347            },
5348            "require-dev": {
5349                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
5350            },
5351            "bin": [
5352                "bin/jsonlint"
5353            ],
5354            "type": "library",
5355            "autoload": {
5356                "psr-4": {
5357                    "Seld\\JsonLint\\": "src/Seld/JsonLint/"
5358                }
5359            },
5360            "notification-url": "https://packagist.org/downloads/",
5361            "license": [
5362                "MIT"
5363            ],
5364            "authors": [
5365                {
5366                    "name": "Jordi Boggiano",
5367                    "email": "j.boggiano@seld.be",
5368                    "homepage": "http://seld.be"
5369                }
5370            ],
5371            "description": "JSON Linter",
5372            "keywords": [
5373                "json",
5374                "linter",
5375                "parser",
5376                "validator"
5377            ],
5378            "time": "2019-10-24T14:27:39+00:00"
5379        },
5380        {
5381            "name": "seld/phar-utils",
5382            "version": "1.0.2",
5383            "source": {
5384                "type": "git",
5385                "url": "https://github.com/Seldaek/phar-utils.git",
5386                "reference": "84715761c35808076b00908a20317a3a8a67d17e"
5387            },
5388            "dist": {
5389                "type": "zip",
5390                "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/84715761c35808076b00908a20317a3a8a67d17e",
5391                "reference": "84715761c35808076b00908a20317a3a8a67d17e",
5392                "shasum": ""
5393            },
5394            "require": {
5395                "php": ">=5.3"
5396            },
5397            "type": "library",
5398            "extra": {
5399                "branch-alias": {
5400                    "dev-master": "1.x-dev"
5401                }
5402            },
5403            "autoload": {
5404                "psr-4": {
5405                    "Seld\\PharUtils\\": "src/"
5406                }
5407            },
5408            "notification-url": "https://packagist.org/downloads/",
5409            "license": [
5410                "MIT"
5411            ],
5412            "authors": [
5413                {
5414                    "name": "Jordi Boggiano",
5415                    "email": "j.boggiano@seld.be"
5416                }
5417            ],
5418            "description": "PHAR file format utilities, for when PHP phars you up",
5419            "keywords": [
5420                "phra"
5421            ],
5422            "time": "2020-01-13T10:41:09+00:00"
5423        },
5424        {
5425            "name": "symfony/config",
5426            "version": "v4.4.2",
5427            "source": {
5428                "type": "git",
5429                "url": "https://github.com/symfony/config.git",
5430                "reference": "6911d432edd5b50822986604fd5a5be3af856d30"
5431            },
5432            "dist": {
5433                "type": "zip",
5434                "url": "https://api.github.com/repos/symfony/config/zipball/6911d432edd5b50822986604fd5a5be3af856d30",
5435                "reference": "6911d432edd5b50822986604fd5a5be3af856d30",
5436                "shasum": ""
5437            },
5438            "require": {
5439                "php": "^7.1.3",
5440                "symfony/filesystem": "^3.4|^4.0|^5.0",
5441                "symfony/polyfill-ctype": "~1.8"
5442            },
5443            "conflict": {
5444                "symfony/finder": "<3.4"
5445            },
5446            "require-dev": {
5447                "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
5448                "symfony/finder": "^3.4|^4.0|^5.0",
5449                "symfony/messenger": "^4.1|^5.0",
5450                "symfony/service-contracts": "^1.1|^2",
5451                "symfony/yaml": "^3.4|^4.0|^5.0"
5452            },
5453            "suggest": {
5454                "symfony/yaml": "To use the yaml reference dumper"
5455            },
5456            "type": "library",
5457            "extra": {
5458                "branch-alias": {
5459                    "dev-master": "4.4-dev"
5460                }
5461            },
5462            "autoload": {
5463                "psr-4": {
5464                    "Symfony\\Component\\Config\\": ""
5465                },
5466                "exclude-from-classmap": [
5467                    "/Tests/"
5468                ]
5469            },
5470            "notification-url": "https://packagist.org/downloads/",
5471            "license": [
5472                "MIT"
5473            ],
5474            "authors": [
5475                {
5476                    "name": "Fabien Potencier",
5477                    "email": "fabien@symfony.com"
5478                },
5479                {
5480                    "name": "Symfony Community",
5481                    "homepage": "https://symfony.com/contributors"
5482                }
5483            ],
5484            "description": "Symfony Config Component",
5485            "homepage": "https://symfony.com",
5486            "time": "2019-12-18T12:00:29+00:00"
5487        },
5488        {
5489            "name": "symfony/console",
5490            "version": "v4.4.2",
5491            "source": {
5492                "type": "git",
5493                "url": "https://github.com/symfony/console.git",
5494                "reference": "82437719dab1e6bdd28726af14cb345c2ec816d0"
5495            },
5496            "dist": {
5497                "type": "zip",
5498                "url": "https://api.github.com/repos/symfony/console/zipball/82437719dab1e6bdd28726af14cb345c2ec816d0",
5499                "reference": "82437719dab1e6bdd28726af14cb345c2ec816d0",
5500                "shasum": ""
5501            },
5502            "require": {
5503                "php": "^7.1.3",
5504                "symfony/polyfill-mbstring": "~1.0",
5505                "symfony/polyfill-php73": "^1.8",
5506                "symfony/service-contracts": "^1.1|^2"
5507            },
5508            "conflict": {
5509                "symfony/dependency-injection": "<3.4",
5510                "symfony/event-dispatcher": "<4.3|>=5",
5511                "symfony/lock": "<4.4",
5512                "symfony/process": "<3.3"
5513            },
5514            "provide": {
5515                "psr/log-implementation": "1.0"
5516            },
5517            "require-dev": {
5518                "psr/log": "~1.0",
5519                "symfony/config": "^3.4|^4.0|^5.0",
5520                "symfony/dependency-injection": "^3.4|^4.0|^5.0",
5521                "symfony/event-dispatcher": "^4.3",
5522                "symfony/lock": "^4.4|^5.0",
5523                "symfony/process": "^3.4|^4.0|^5.0",
5524                "symfony/var-dumper": "^4.3|^5.0"
5525            },
5526            "suggest": {
5527                "psr/log": "For using the console logger",
5528                "symfony/event-dispatcher": "",
5529                "symfony/lock": "",
5530                "symfony/process": ""
5531            },
5532            "type": "library",
5533            "extra": {
5534                "branch-alias": {
5535                    "dev-master": "4.4-dev"
5536                }
5537            },
5538            "autoload": {
5539                "psr-4": {
5540                    "Symfony\\Component\\Console\\": ""
5541                },
5542                "exclude-from-classmap": [
5543                    "/Tests/"
5544                ]
5545            },
5546            "notification-url": "https://packagist.org/downloads/",
5547            "license": [
5548                "MIT"
5549            ],
5550            "authors": [
5551                {
5552                    "name": "Fabien Potencier",
5553                    "email": "fabien@symfony.com"
5554                },
5555                {
5556                    "name": "Symfony Community",
5557                    "homepage": "https://symfony.com/contributors"
5558                }
5559            ],
5560            "description": "Symfony Console Component",
5561            "homepage": "https://symfony.com",
5562            "time": "2019-12-17T10:32:23+00:00"
5563        },
5564        {
5565            "name": "symfony/filesystem",
5566            "version": "v4.4.2",
5567            "source": {
5568                "type": "git",
5569                "url": "https://github.com/symfony/filesystem.git",
5570                "reference": "40c2606131d56eff6f193b6e2ceb92414653b591"
5571            },
5572            "dist": {
5573                "type": "zip",
5574                "url": "https://api.github.com/repos/symfony/filesystem/zipball/40c2606131d56eff6f193b6e2ceb92414653b591",
5575                "reference": "40c2606131d56eff6f193b6e2ceb92414653b591",
5576                "shasum": ""
5577            },
5578            "require": {
5579                "php": "^7.1.3",
5580                "symfony/polyfill-ctype": "~1.8"
5581            },
5582            "type": "library",
5583            "extra": {
5584                "branch-alias": {
5585                    "dev-master": "4.4-dev"
5586                }
5587            },
5588            "autoload": {
5589                "psr-4": {
5590                    "Symfony\\Component\\Filesystem\\": ""
5591                },
5592                "exclude-from-classmap": [
5593                    "/Tests/"
5594                ]
5595            },
5596            "notification-url": "https://packagist.org/downloads/",
5597            "license": [
5598                "MIT"
5599            ],
5600            "authors": [
5601                {
5602                    "name": "Fabien Potencier",
5603                    "email": "fabien@symfony.com"
5604                },
5605                {
5606                    "name": "Symfony Community",
5607                    "homepage": "https://symfony.com/contributors"
5608                }
5609            ],
5610            "description": "Symfony Filesystem Component",
5611            "homepage": "https://symfony.com",
5612            "time": "2019-11-26T23:16:41+00:00"
5613        },
5614        {
5615            "name": "symfony/finder",
5616            "version": "v4.4.2",
5617            "source": {
5618                "type": "git",
5619                "url": "https://github.com/symfony/finder.git",
5620                "reference": "ce8743441da64c41e2a667b8eb66070444ed911e"
5621            },
5622            "dist": {
5623                "type": "zip",
5624                "url": "https://api.github.com/repos/symfony/finder/zipball/ce8743441da64c41e2a667b8eb66070444ed911e",
5625                "reference": "ce8743441da64c41e2a667b8eb66070444ed911e",
5626                "shasum": ""
5627            },
5628            "require": {
5629                "php": "^7.1.3"
5630            },
5631            "type": "library",
5632            "extra": {
5633                "branch-alias": {
5634                    "dev-master": "4.4-dev"
5635                }
5636            },
5637            "autoload": {
5638                "psr-4": {
5639                    "Symfony\\Component\\Finder\\": ""
5640                },
5641                "exclude-from-classmap": [
5642                    "/Tests/"
5643                ]
5644            },
5645            "notification-url": "https://packagist.org/downloads/",
5646            "license": [
5647                "MIT"
5648            ],
5649            "authors": [
5650                {
5651                    "name": "Fabien Potencier",
5652                    "email": "fabien@symfony.com"
5653                },
5654                {
5655                    "name": "Symfony Community",
5656                    "homepage": "https://symfony.com/contributors"
5657                }
5658            ],
5659            "description": "Symfony Finder Component",
5660            "homepage": "https://symfony.com",
5661            "time": "2019-11-17T21:56:56+00:00"
5662        },
5663        {
5664            "name": "symfony/polyfill-php73",
5665            "version": "v1.13.1",
5666            "source": {
5667                "type": "git",
5668                "url": "https://github.com/symfony/polyfill-php73.git",
5669                "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f"
5670            },
5671            "dist": {
5672                "type": "zip",
5673                "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/4b0e2222c55a25b4541305a053013d5647d3a25f",
5674                "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f",
5675                "shasum": ""
5676            },
5677            "require": {
5678                "php": ">=5.3.3"
5679            },
5680            "type": "library",
5681            "extra": {
5682                "branch-alias": {
5683                    "dev-master": "1.13-dev"
5684                }
5685            },
5686            "autoload": {
5687                "psr-4": {
5688                    "Symfony\\Polyfill\\Php73\\": ""
5689                },
5690                "files": [
5691                    "bootstrap.php"
5692                ],
5693                "classmap": [
5694                    "Resources/stubs"
5695                ]
5696            },
5697            "notification-url": "https://packagist.org/downloads/",
5698            "license": [
5699                "MIT"
5700            ],
5701            "authors": [
5702                {
5703                    "name": "Nicolas Grekas",
5704                    "email": "p@tchwork.com"
5705                },
5706                {
5707                    "name": "Symfony Community",
5708                    "homepage": "https://symfony.com/contributors"
5709                }
5710            ],
5711            "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
5712            "homepage": "https://symfony.com",
5713            "keywords": [
5714                "compatibility",
5715                "polyfill",
5716                "portable",
5717                "shim"
5718            ],
5719            "time": "2019-11-27T16:25:15+00:00"
5720        },
5721        {
5722            "name": "symfony/process",
5723            "version": "v4.4.2",
5724            "source": {
5725                "type": "git",
5726                "url": "https://github.com/symfony/process.git",
5727                "reference": "b84501ad50adb72a94fb460a5b5c91f693e99c9b"
5728            },
5729            "dist": {
5730                "type": "zip",
5731                "url": "https://api.github.com/repos/symfony/process/zipball/b84501ad50adb72a94fb460a5b5c91f693e99c9b",
5732                "reference": "b84501ad50adb72a94fb460a5b5c91f693e99c9b",
5733                "shasum": ""
5734            },
5735            "require": {
5736                "php": "^7.1.3"
5737            },
5738            "type": "library",
5739            "extra": {
5740                "branch-alias": {
5741                    "dev-master": "4.4-dev"
5742                }
5743            },
5744            "autoload": {
5745                "psr-4": {
5746                    "Symfony\\Component\\Process\\": ""
5747                },
5748                "exclude-from-classmap": [
5749                    "/Tests/"
5750                ]
5751            },
5752            "notification-url": "https://packagist.org/downloads/",
5753            "license": [
5754                "MIT"
5755            ],
5756            "authors": [
5757                {
5758                    "name": "Fabien Potencier",
5759                    "email": "fabien@symfony.com"
5760                },
5761                {
5762                    "name": "Symfony Community",
5763                    "homepage": "https://symfony.com/contributors"
5764                }
5765            ],
5766            "description": "Symfony Process Component",
5767            "homepage": "https://symfony.com",
5768            "time": "2019-12-06T10:06:46+00:00"
5769        },
5770        {
5771            "name": "symfony/stopwatch",
5772            "version": "v4.4.2",
5773            "source": {
5774                "type": "git",
5775                "url": "https://github.com/symfony/stopwatch.git",
5776                "reference": "5745b514fc56ae1907c6b8ed74f94f90f64694e9"
5777            },
5778            "dist": {
5779                "type": "zip",
5780                "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5745b514fc56ae1907c6b8ed74f94f90f64694e9",
5781                "reference": "5745b514fc56ae1907c6b8ed74f94f90f64694e9",
5782                "shasum": ""
5783            },
5784            "require": {
5785                "php": "^7.1.3",
5786                "symfony/service-contracts": "^1.0|^2"
5787            },
5788            "type": "library",
5789            "extra": {
5790                "branch-alias": {
5791                    "dev-master": "4.4-dev"
5792                }
5793            },
5794            "autoload": {
5795                "psr-4": {
5796                    "Symfony\\Component\\Stopwatch\\": ""
5797                },
5798                "exclude-from-classmap": [
5799                    "/Tests/"
5800                ]
5801            },
5802            "notification-url": "https://packagist.org/downloads/",
5803            "license": [
5804                "MIT"
5805            ],
5806            "authors": [
5807                {
5808                    "name": "Fabien Potencier",
5809                    "email": "fabien@symfony.com"
5810                },
5811                {
5812                    "name": "Symfony Community",
5813                    "homepage": "https://symfony.com/contributors"
5814                }
5815            ],
5816            "description": "Symfony Stopwatch Component",
5817            "homepage": "https://symfony.com",
5818            "time": "2019-11-05T16:11:08+00:00"
5819        },
5820        {
5821            "name": "symfony/var-dumper",
5822            "version": "v4.4.2",
5823            "source": {
5824                "type": "git",
5825                "url": "https://github.com/symfony/var-dumper.git",
5826                "reference": "be330f919bdb395d1e0c3f2bfb8948512d6bdd99"
5827            },
5828            "dist": {
5829                "type": "zip",
5830                "url": "https://api.github.com/repos/symfony/var-dumper/zipball/be330f919bdb395d1e0c3f2bfb8948512d6bdd99",
5831                "reference": "be330f919bdb395d1e0c3f2bfb8948512d6bdd99",
5832                "shasum": ""
5833            },
5834            "require": {
5835                "php": "^7.1.3",
5836                "symfony/polyfill-mbstring": "~1.0",
5837                "symfony/polyfill-php72": "~1.5"
5838            },
5839            "conflict": {
5840                "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
5841                "symfony/console": "<3.4"
5842            },
5843            "require-dev": {
5844                "ext-iconv": "*",
5845                "symfony/console": "^3.4|^4.0|^5.0",
5846                "symfony/process": "^4.4|^5.0",
5847                "twig/twig": "^1.34|^2.4|^3.0"
5848            },
5849            "suggest": {
5850                "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
5851                "ext-intl": "To show region name in time zone dump",
5852                "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
5853            },
5854            "bin": [
5855                "Resources/bin/var-dump-server"
5856            ],
5857            "type": "library",
5858            "extra": {
5859                "branch-alias": {
5860                    "dev-master": "4.4-dev"
5861                }
5862            },
5863            "autoload": {
5864                "files": [
5865                    "Resources/functions/dump.php"
5866                ],
5867                "psr-4": {
5868                    "Symfony\\Component\\VarDumper\\": ""
5869                },
5870                "exclude-from-classmap": [
5871                    "/Tests/"
5872                ]
5873            },
5874            "notification-url": "https://packagist.org/downloads/",
5875            "license": [
5876                "MIT"
5877            ],
5878            "authors": [
5879                {
5880                    "name": "Nicolas Grekas",
5881                    "email": "p@tchwork.com"
5882                },
5883                {
5884                    "name": "Symfony Community",
5885                    "homepage": "https://symfony.com/contributors"
5886                }
5887            ],
5888            "description": "Symfony mechanism for exploring and dumping PHP variables",
5889            "homepage": "https://symfony.com",
5890            "keywords": [
5891                "debug",
5892                "dump"
5893            ],
5894            "time": "2019-12-18T13:41:29+00:00"
5895        },
5896        {
5897            "name": "symfony/yaml",
5898            "version": "v4.4.2",
5899            "source": {
5900                "type": "git",
5901                "url": "https://github.com/symfony/yaml.git",
5902                "reference": "a08832b974dd5fafe3085a66d41fe4c84bb2628c"
5903            },
5904            "dist": {
5905                "type": "zip",
5906                "url": "https://api.github.com/repos/symfony/yaml/zipball/a08832b974dd5fafe3085a66d41fe4c84bb2628c",
5907                "reference": "a08832b974dd5fafe3085a66d41fe4c84bb2628c",
5908                "shasum": ""
5909            },
5910            "require": {
5911                "php": "^7.1.3",
5912                "symfony/polyfill-ctype": "~1.8"
5913            },
5914            "conflict": {
5915                "symfony/console": "<3.4"
5916            },
5917            "require-dev": {
5918                "symfony/console": "^3.4|^4.0|^5.0"
5919            },
5920            "suggest": {
5921                "symfony/console": "For validating YAML files using the lint command"
5922            },
5923            "type": "library",
5924            "extra": {
5925                "branch-alias": {
5926                    "dev-master": "4.4-dev"
5927                }
5928            },
5929            "autoload": {
5930                "psr-4": {
5931                    "Symfony\\Component\\Yaml\\": ""
5932                },
5933                "exclude-from-classmap": [
5934                    "/Tests/"
5935                ]
5936            },
5937            "notification-url": "https://packagist.org/downloads/",
5938            "license": [
5939                "MIT"
5940            ],
5941            "authors": [
5942                {
5943                    "name": "Fabien Potencier",
5944                    "email": "fabien@symfony.com"
5945                },
5946                {
5947                    "name": "Symfony Community",
5948                    "homepage": "https://symfony.com/contributors"
5949                }
5950            ],
5951            "description": "Symfony Yaml Component",
5952            "homepage": "https://symfony.com",
5953            "time": "2019-12-10T10:33:21+00:00"
5954        },
5955        {
5956            "name": "theseer/tokenizer",
5957            "version": "1.1.3",
5958            "source": {
5959                "type": "git",
5960                "url": "https://github.com/theseer/tokenizer.git",
5961                "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
5962            },
5963            "dist": {
5964                "type": "zip",
5965                "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
5966                "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
5967                "shasum": ""
5968            },
5969            "require": {
5970                "ext-dom": "*",
5971                "ext-tokenizer": "*",
5972                "ext-xmlwriter": "*",
5973                "php": "^7.0"
5974            },
5975            "type": "library",
5976            "autoload": {
5977                "classmap": [
5978                    "src/"
5979                ]
5980            },
5981            "notification-url": "https://packagist.org/downloads/",
5982            "license": [
5983                "BSD-3-Clause"
5984            ],
5985            "authors": [
5986                {
5987                    "name": "Arne Blankerts",
5988                    "email": "arne@blankerts.de",
5989                    "role": "Developer"
5990                }
5991            ],
5992            "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
5993            "time": "2019-06-13T22:48:21+00:00"
5994        },
5995        {
5996            "name": "webmozart/assert",
5997            "version": "1.6.0",
5998            "source": {
5999                "type": "git",
6000                "url": "https://github.com/webmozart/assert.git",
6001                "reference": "573381c0a64f155a0d9a23f4b0c797194805b925"
6002            },
6003            "dist": {
6004                "type": "zip",
6005                "url": "https://api.github.com/repos/webmozart/assert/zipball/573381c0a64f155a0d9a23f4b0c797194805b925",
6006                "reference": "573381c0a64f155a0d9a23f4b0c797194805b925",
6007                "shasum": ""
6008            },
6009            "require": {
6010                "php": "^5.3.3 || ^7.0",
6011                "symfony/polyfill-ctype": "^1.8"
6012            },
6013            "conflict": {
6014                "vimeo/psalm": "<3.6.0"
6015            },
6016            "require-dev": {
6017                "phpunit/phpunit": "^4.8.36 || ^7.5.13"
6018            },
6019            "type": "library",
6020            "autoload": {
6021                "psr-4": {
6022                    "Webmozart\\Assert\\": "src/"
6023                }
6024            },
6025            "notification-url": "https://packagist.org/downloads/",
6026            "license": [
6027                "MIT"
6028            ],
6029            "authors": [
6030                {
6031                    "name": "Bernhard Schussek",
6032                    "email": "bschussek@gmail.com"
6033                }
6034            ],
6035            "description": "Assertions to validate method input/output with nice error messages.",
6036            "keywords": [
6037                "assert",
6038                "check",
6039                "validate"
6040            ],
6041            "time": "2019-11-24T13:36:37+00:00"
6042        }
6043    ],
6044    "aliases": [],
6045    "minimum-stability": "stable",
6046    "stability-flags": [],
6047    "prefer-stable": false,
6048    "prefer-lowest": false,
6049    "platform": {
6050        "ext-curl": "*",
6051        "ext-gd": "*",
6052        "ext-iconv": "*",
6053        "ext-intl": "*",
6054        "ext-json": "*",
6055        "ext-pcre": "*",
6056        "ext-pdo": "*",
6057        "ext-session": "*",
6058        "ext-simplexml": "*",
6059        "ext-xml": "*",
6060        "ext-zip": "*"
6061    },
6062    "platform-dev": {
6063        "ext-pdo_sqlite": "*",
6064        "ext-sqlite3": "*"
6065    },
6066    "platform-overrides": {
6067        "php": "7.1.8"
6068    }
6069}
6070