comparison vendor/composer/installed.json @ 43:771f6803cc4b default tip

somehow lost the correctly updated metadata so e.g. 'mail' package wasn't being imported
author Charlie Root
date Sun, 26 Jan 2025 13:13:49 -0500
parents 05c4c32948af
children
comparison
equal deleted inserted replaced
42:db1e51c59ddc 43:771f6803cc4b
1 [ 1 {
2 { 2 "packages": [
3 "name": "composer/semver", 3 {
4 "version": "1.4.2", 4 "name": "caxy/php-htmldiff",
5 "version_normalized": "1.4.2.0", 5 "version": "v0.1.15",
6 "source": { 6 "version_normalized": "0.1.15.0",
7 "type": "git", 7 "source": {
8 "url": "https://github.com/composer/semver.git", 8 "type": "git",
9 "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573" 9 "url": "https://github.com/caxy/php-htmldiff.git",
10 }, 10 "reference": "6342b02ddb86fd36093ad7e2db2efc21f01ab7cd"
11 "dist": { 11 },
12 "type": "zip", 12 "dist": {
13 "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573", 13 "type": "zip",
14 "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573", 14 "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/6342b02ddb86fd36093ad7e2db2efc21f01ab7cd",
15 "shasum": "" 15 "reference": "6342b02ddb86fd36093ad7e2db2efc21f01ab7cd",
16 }, 16 "shasum": ""
17 "require": { 17 },
18 "php": "^5.3.2 || ^7.0" 18 "require": {
19 }, 19 "ext-dom": "*",
20 "require-dev": { 20 "ext-mbstring": "*",
21 "phpunit/phpunit": "^4.5 || ^5.0.5", 21 "ezyang/htmlpurifier": "^4.7",
22 "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0" 22 "php": ">=7.3"
23 }, 23 },
24 "time": "2016-08-30T16:08:34+00:00", 24 "require-dev": {
25 "type": "library", 25 "doctrine/cache": "~1.0",
26 "extra": { 26 "phpunit/phpunit": "~9.0"
27 "branch-alias": { 27 },
28 "dev-master": "1.x-dev" 28 "suggest": {
29 } 29 "doctrine/cache": "Used for caching the calculated diffs using a Doctrine Cache Provider"
30 }, 30 },
31 "installation-source": "dist", 31 "time": "2023-11-05T23:49:04+00:00",
32 "autoload": { 32 "type": "library",
33 "psr-4": { 33 "extra": {
34 "Composer\\Semver\\": "src" 34 "branch-alias": {
35 } 35 "dev-master": "0.1.x-dev"
36 }, 36 }
37 "notification-url": "https://packagist.org/downloads/", 37 },
38 "license": [ 38 "installation-source": "dist",
39 "MIT" 39 "autoload": {
40 "psr-0": {
41 "Caxy\\HtmlDiff": "lib/"
42 }
43 },
44 "notification-url": "https://packagist.org/downloads/",
45 "license": [
46 "GPL-2.0"
47 ],
48 "authors": [
49 {
50 "name": "Josh Schroeder",
51 "email": "jschroeder@caxy.com",
52 "homepage": "http://www.caxy.com"
53 }
54 ],
55 "description": "A library for comparing two HTML files/snippets and highlighting the differences using simple HTML.",
56 "homepage": "https://github.com/caxy/php-htmldiff",
57 "keywords": [
58 "diff",
59 "html"
60 ],
61 "support": {
62 "issues": "https://github.com/caxy/php-htmldiff/issues",
63 "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.15"
64 },
65 "install-path": "../caxy/php-htmldiff"
66 },
67 {
68 "name": "doctrine/deprecations",
69 "version": "1.1.2",
70 "version_normalized": "1.1.2.0",
71 "source": {
72 "type": "git",
73 "url": "https://github.com/doctrine/deprecations.git",
74 "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
75 },
76 "dist": {
77 "type": "zip",
78 "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
79 "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
80 "shasum": ""
81 },
82 "require": {
83 "php": "^7.1 || ^8.0"
84 },
85 "require-dev": {
86 "doctrine/coding-standard": "^9",
87 "phpstan/phpstan": "1.4.10 || 1.10.15",
88 "phpstan/phpstan-phpunit": "^1.0",
89 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
90 "psalm/plugin-phpunit": "0.18.4",
91 "psr/log": "^1 || ^2 || ^3",
92 "vimeo/psalm": "4.30.0 || 5.12.0"
93 },
94 "suggest": {
95 "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
96 },
97 "time": "2023-09-27T20:04:15+00:00",
98 "type": "library",
99 "installation-source": "dist",
100 "autoload": {
101 "psr-4": {
102 "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
103 }
104 },
105 "notification-url": "https://packagist.org/downloads/",
106 "license": [
107 "MIT"
108 ],
109 "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
110 "homepage": "https://www.doctrine-project.org/",
111 "support": {
112 "issues": "https://github.com/doctrine/deprecations/issues",
113 "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
114 },
115 "install-path": "../doctrine/deprecations"
116 },
117 {
118 "name": "doctrine/instantiator",
119 "version": "1.5.0",
120 "version_normalized": "1.5.0.0",
121 "source": {
122 "type": "git",
123 "url": "https://github.com/doctrine/instantiator.git",
124 "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
125 },
126 "dist": {
127 "type": "zip",
128 "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
129 "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
130 "shasum": ""
131 },
132 "require": {
133 "php": "^7.1 || ^8.0"
134 },
135 "require-dev": {
136 "doctrine/coding-standard": "^9 || ^11",
137 "ext-pdo": "*",
138 "ext-phar": "*",
139 "phpbench/phpbench": "^0.16 || ^1",
140 "phpstan/phpstan": "^1.4",
141 "phpstan/phpstan-phpunit": "^1",
142 "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
143 "vimeo/psalm": "^4.30 || ^5.4"
144 },
145 "time": "2022-12-30T00:15:36+00:00",
146 "type": "library",
147 "installation-source": "dist",
148 "autoload": {
149 "psr-4": {
150 "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
151 }
152 },
153 "notification-url": "https://packagist.org/downloads/",
154 "license": [
155 "MIT"
156 ],
157 "authors": [
158 {
159 "name": "Marco Pivetta",
160 "email": "ocramius@gmail.com",
161 "homepage": "https://ocramius.github.io/"
162 }
163 ],
164 "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
165 "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
166 "keywords": [
167 "constructor",
168 "instantiate"
169 ],
170 "support": {
171 "issues": "https://github.com/doctrine/instantiator/issues",
172 "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
173 },
174 "funding": [
175 {
176 "url": "https://www.doctrine-project.org/sponsorship.html",
177 "type": "custom"
178 },
179 {
180 "url": "https://www.patreon.com/phpdoctrine",
181 "type": "patreon"
182 },
183 {
184 "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
185 "type": "tidelift"
186 }
187 ],
188 "install-path": "../doctrine/instantiator"
189 },
190 {
191 "name": "endroid/qr-code",
192 "version": "1.6.6",
193 "version_normalized": "1.6.6.0",
194 "source": {
195 "type": "git",
196 "url": "https://github.com/endroid/qr-code.git",
197 "reference": "cef5d5b7b904d7bb0708eb744c35316364b65fa0"
198 },
199 "dist": {
200 "type": "zip",
201 "url": "https://api.github.com/repos/endroid/qr-code/zipball/cef5d5b7b904d7bb0708eb744c35316364b65fa0",
202 "reference": "cef5d5b7b904d7bb0708eb744c35316364b65fa0",
203 "shasum": ""
204 },
205 "require": {
206 "ext-gd": "*",
207 "php": ">=5.3.0"
208 },
209 "time": "2016-05-29T07:37:18+00:00",
210 "type": "library",
211 "extra": {
212 "branch-alias": {
213 "dev-master": "1.x-dev"
214 }
215 },
216 "installation-source": "dist",
217 "autoload": {
218 "psr-4": {
219 "Endroid\\QrCode\\": "src/"
220 }
221 },
222 "notification-url": "https://packagist.org/downloads/",
223 "license": [
224 "MIT"
225 ],
226 "authors": [
227 {
228 "name": "Jeroen van den Enden",
229 "email": "info@endroid.nl",
230 "homepage": "http://endroid.nl/"
231 }
232 ],
233 "description": "Endroid QR Code",
234 "homepage": "https://github.com/endroid/QrCode",
235 "keywords": [
236 "code",
237 "endroid",
238 "qr",
239 "qrcode"
240 ],
241 "install-path": "../endroid/qr-code"
242 },
243 {
244 "name": "ezyang/htmlpurifier",
245 "version": "v4.17.0",
246 "version_normalized": "4.17.0.0",
247 "source": {
248 "type": "git",
249 "url": "https://github.com/ezyang/htmlpurifier.git",
250 "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
251 },
252 "dist": {
253 "type": "zip",
254 "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
255 "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
256 "shasum": ""
257 },
258 "require": {
259 "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
260 },
261 "require-dev": {
262 "cerdic/css-tidy": "^1.7 || ^2.0",
263 "simpletest/simpletest": "dev-master"
264 },
265 "suggest": {
266 "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
267 "ext-bcmath": "Used for unit conversion and imagecrash protection",
268 "ext-iconv": "Converts text to and from non-UTF-8 encodings",
269 "ext-tidy": "Used for pretty-printing HTML"
270 },
271 "time": "2023-11-17T15:01:25+00:00",
272 "type": "library",
273 "installation-source": "dist",
274 "autoload": {
275 "files": [
276 "library/HTMLPurifier.composer.php"
277 ],
278 "psr-0": {
279 "HTMLPurifier": "library/"
280 },
281 "exclude-from-classmap": [
282 "/library/HTMLPurifier/Language/"
283 ]
284 },
285 "notification-url": "https://packagist.org/downloads/",
286 "license": [
287 "LGPL-2.1-or-later"
288 ],
289 "authors": [
290 {
291 "name": "Edward Z. Yang",
292 "email": "admin@htmlpurifier.org",
293 "homepage": "http://ezyang.com"
294 }
295 ],
296 "description": "Standards compliant HTML filter written in PHP",
297 "homepage": "http://htmlpurifier.org/",
298 "keywords": [
299 "html"
300 ],
301 "support": {
302 "issues": "https://github.com/ezyang/htmlpurifier/issues",
303 "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
304 },
305 "install-path": "../ezyang/htmlpurifier"
306 },
307 {
308 "name": "kolab/libkolab",
309 "version": "3.5.6",
310 "version_normalized": "3.5.6.0",
311 "source": {
312 "type": "git",
313 "url": "https://github.com/kolab-roundcube-plugins-mirror/libkolab.git",
314 "reference": "57fc800a53d869401bdafab155ee81a2e0e0f8ad"
315 },
316 "dist": {
317 "type": "zip",
318 "url": "https://api.github.com/repos/kolab-roundcube-plugins-mirror/libkolab/zipball/57fc800a53d869401bdafab155ee81a2e0e0f8ad",
319 "reference": "57fc800a53d869401bdafab155ee81a2e0e0f8ad",
320 "shasum": ""
321 },
322 "require": {
323 "caxy/php-htmldiff": "~0.1.7",
324 "pear/http_request2": "~2.3.0",
325 "php": ">=5.3.0",
326 "roundcube/plugin-installer": ">=0.1.3"
327 },
328 "time": "2021-05-09T07:28:50+00:00",
329 "type": "roundcube-plugin",
330 "installation-source": "dist",
331 "notification-url": "https://packagist.org/downloads/",
332 "license": [
333 "AGPLv3"
334 ],
335 "authors": [
336 {
337 "name": "Thomas Bruederli",
338 "email": "bruederli@kolabsys.com",
339 "role": "Lead"
340 },
341 {
342 "name": "Aleksander Machniak",
343 "email": "machniak@kolabsys.com",
344 "role": "Developer"
345 }
346 ],
347 "description": "Plugin to setup a basic environment for the interaction with a Kolab server.",
348 "homepage": "https://git.kolab.org/diffusion/RPK/",
349 "support": {
350 "issues": "https://github.com/kolab-roundcube-plugins-mirror/libkolab/issues",
351 "source": "https://github.com/kolab-roundcube-plugins-mirror/libkolab/tree/3.5.6"
352 },
353 "install-path": "../../plugins/libkolab"
354 },
355 {
356 "name": "myclabs/deep-copy",
357 "version": "1.11.1",
358 "version_normalized": "1.11.1.0",
359 "source": {
360 "type": "git",
361 "url": "https://github.com/myclabs/DeepCopy.git",
362 "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
363 },
364 "dist": {
365 "type": "zip",
366 "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
367 "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
368 "shasum": ""
369 },
370 "require": {
371 "php": "^7.1 || ^8.0"
372 },
373 "conflict": {
374 "doctrine/collections": "<1.6.8",
375 "doctrine/common": "<2.13.3 || >=3,<3.2.2"
376 },
377 "require-dev": {
378 "doctrine/collections": "^1.6.8",
379 "doctrine/common": "^2.13.3 || ^3.2.2",
380 "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
381 },
382 "time": "2023-03-08T13:26:56+00:00",
383 "type": "library",
384 "installation-source": "dist",
385 "autoload": {
386 "files": [
387 "src/DeepCopy/deep_copy.php"
388 ],
389 "psr-4": {
390 "DeepCopy\\": "src/DeepCopy/"
391 }
392 },
393 "notification-url": "https://packagist.org/downloads/",
394 "license": [
395 "MIT"
396 ],
397 "description": "Create deep copies (clones) of your objects",
398 "keywords": [
399 "clone",
400 "copy",
401 "duplicate",
402 "object",
403 "object graph"
404 ],
405 "support": {
406 "issues": "https://github.com/myclabs/DeepCopy/issues",
407 "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
408 },
409 "funding": [
410 {
411 "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
412 "type": "tidelift"
413 }
414 ],
415 "install-path": "../myclabs/deep-copy"
416 },
417 {
418 "name": "pear/auth_sasl",
419 "version": "v1.1.0",
420 "version_normalized": "1.1.0.0",
421 "source": {
422 "type": "git",
423 "url": "https://github.com/pear/Auth_SASL.git",
424 "reference": "db1ead3dc0bf986d2bab0dbc04d114800cf91dee"
425 },
426 "dist": {
427 "type": "zip",
428 "url": "https://api.github.com/repos/pear/Auth_SASL/zipball/db1ead3dc0bf986d2bab0dbc04d114800cf91dee",
429 "reference": "db1ead3dc0bf986d2bab0dbc04d114800cf91dee",
430 "shasum": ""
431 },
432 "require": {
433 "pear/pear_exception": "@stable"
434 },
435 "require-dev": {
436 "phpunit/phpunit": "@stable"
437 },
438 "time": "2017-03-07T14:37:05+00:00",
439 "type": "library",
440 "installation-source": "dist",
441 "autoload": {
442 "psr-0": {
443 "Auth": "./"
444 }
445 },
446 "notification-url": "https://packagist.org/downloads/",
447 "include-path": [
448 "./"
449 ],
450 "license": [
451 "BSD"
452 ],
453 "authors": [
454 {
455 "name": "Anish Mistry",
456 "email": "amistry@am-productions.biz",
457 "role": "Lead"
458 },
459 {
460 "name": "Richard Heyes",
461 "email": "richard@php.net",
462 "role": "Lead"
463 },
464 {
465 "name": "Michael Bretterklieber",
466 "email": "michael@bretterklieber.com",
467 "role": "Lead"
468 }
469 ],
470 "description": "Abstraction of various SASL mechanism responses",
471 "install-path": "../pear/auth_sasl"
472 },
473 {
474 "name": "pear/console_commandline",
475 "version": "v1.2.6",
476 "version_normalized": "1.2.6.0",
477 "source": {
478 "type": "git",
479 "url": "https://github.com/pear/Console_CommandLine.git",
480 "reference": "611c5bff2e47ec5a184748cb5fedc2869098ff28"
481 },
482 "dist": {
483 "type": "zip",
484 "url": "https://api.github.com/repos/pear/Console_CommandLine/zipball/611c5bff2e47ec5a184748cb5fedc2869098ff28",
485 "reference": "611c5bff2e47ec5a184748cb5fedc2869098ff28",
486 "shasum": ""
487 },
488 "require": {
489 "ext-dom": "*",
490 "ext-xml": "*",
491 "pear/pear_exception": "^1.0.0",
492 "php": ">=5.3.0"
493 },
494 "require-dev": {
495 "phpunit/phpunit": "*"
496 },
497 "time": "2023-04-02T18:49:53+00:00",
498 "type": "library",
499 "installation-source": "dist",
500 "autoload": {
501 "psr-0": {
502 "Console": "./"
503 },
504 "exclude-from-classmap": [
505 "tests/"
506 ]
507 },
508 "notification-url": "https://packagist.org/downloads/",
509 "include-path": [
510 ""
511 ],
512 "license": [
513 "MIT"
514 ],
515 "authors": [
516 {
517 "name": "Richard Quadling",
518 "email": "rquadling@gmail.com"
519 },
520 {
521 "name": "David Jean Louis",
522 "email": "izimobil@gmail.com"
523 }
524 ],
525 "description": "A full featured command line options and arguments parser.",
526 "homepage": "https://github.com/pear/Console_CommandLine",
527 "keywords": [
528 "console"
529 ],
530 "support": {
531 "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_CommandLine",
532 "source": "https://github.com/pear/Console_CommandLine"
533 },
534 "install-path": "../pear/console_commandline"
535 },
536 {
537 "name": "pear/console_getopt",
538 "version": "v1.4.3",
539 "version_normalized": "1.4.3.0",
540 "source": {
541 "type": "git",
542 "url": "https://github.com/pear/Console_Getopt.git",
543 "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
544 },
545 "dist": {
546 "type": "zip",
547 "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
548 "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
549 "shasum": ""
550 },
551 "time": "2019-11-20T18:27:48+00:00",
552 "type": "library",
553 "installation-source": "dist",
554 "autoload": {
555 "psr-0": {
556 "Console": "./"
557 }
558 },
559 "notification-url": "https://packagist.org/downloads/",
560 "include-path": [
561 "./"
562 ],
563 "license": [
564 "BSD-2-Clause"
565 ],
566 "authors": [
567 {
568 "name": "Andrei Zmievski",
569 "email": "andrei@php.net",
570 "role": "Lead"
571 },
572 {
573 "name": "Stig Bakken",
574 "email": "stig@php.net",
575 "role": "Developer"
576 },
577 {
578 "name": "Greg Beaver",
579 "email": "cellog@php.net",
580 "role": "Helper"
581 }
582 ],
583 "description": "More info available on: http://pear.php.net/package/Console_Getopt",
584 "support": {
585 "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
586 "source": "https://github.com/pear/Console_Getopt"
587 },
588 "install-path": "../pear/console_getopt"
589 },
590 {
591 "name": "pear/crypt_gpg",
592 "version": "v1.6.8",
593 "version_normalized": "1.6.8.0",
594 "source": {
595 "type": "git",
596 "url": "https://github.com/pear/Crypt_GPG.git",
597 "reference": "89c661fbd7027f7745c25efd4053552972278bc1"
598 },
599 "dist": {
600 "type": "zip",
601 "url": "https://api.github.com/repos/pear/Crypt_GPG/zipball/89c661fbd7027f7745c25efd4053552972278bc1",
602 "reference": "89c661fbd7027f7745c25efd4053552972278bc1",
603 "shasum": ""
604 },
605 "require": {
606 "ext-mbstring": "*",
607 "pear/console_commandline": "*",
608 "pear/pear_exception": "*",
609 "php": ">=5.4.8"
610 },
611 "require-dev": {
612 "phpunit/phpunit": "^9"
613 },
614 "suggest": {
615 "ext-posix": "May require the posix PHP extension"
616 },
617 "time": "2023-11-23T09:15:05+00:00",
618 "bin": [
619 "scripts/crypt-gpg-pinentry"
620 ],
621 "type": "library",
622 "installation-source": "dist",
623 "autoload": {
624 "classmap": [
625 "Crypt/"
626 ]
627 },
628 "notification-url": "https://packagist.org/downloads/",
629 "include-path": [
630 "./"
631 ],
632 "license": [
633 "LGPL-2.1"
634 ],
635 "authors": [
636 {
637 "name": "Michael Gauthier",
638 "email": "mike@silverorange.com"
639 },
640 {
641 "name": "Nathan Fredrickson",
642 "email": "nathan@silverorange.com"
643 },
644 {
645 "name": "Aleksander Machniak",
646 "email": "alec@alec.pl"
647 }
648 ],
649 "description": "Provides an object oriented interface to the GNU Privacy Guard (GnuPG). It requires the GnuPG executable to be on the system.",
650 "homepage": "https://github.com/pear/Crypt_GPG",
651 "keywords": [
652 "PGP",
653 "encryption",
654 "gnupg",
655 "gpg"
656 ],
657 "support": {
658 "issues": "https://pear.php.net/bugs/search.php?cmd=display&package_name[]=Crypt_GPG",
659 "source": "https://github.com/pear/Crypt_GPG"
660 },
661 "install-path": "../pear/crypt_gpg"
662 },
663 {
664 "name": "pear/http_request2",
665 "version": "v2.3.0",
666 "version_normalized": "2.3.0.0",
667 "source": {
668 "type": "git",
669 "url": "https://github.com/pear/HTTP_Request2.git",
670 "reference": "3599cf0fe455a4e281da464f6510bfc5c2ce54c4"
671 },
672 "dist": {
673 "type": "zip",
674 "url": "https://api.github.com/repos/pear/HTTP_Request2/zipball/3599cf0fe455a4e281da464f6510bfc5c2ce54c4",
675 "reference": "3599cf0fe455a4e281da464f6510bfc5c2ce54c4",
676 "shasum": ""
677 },
678 "require": {
679 "pear/net_url2": "^2.2.0",
680 "pear/pear_exception": "^1.0.0",
681 "php": ">=5.2.0"
682 },
683 "suggest": {
684 "ext-fileinfo": "Adds support for looking up mime-types using finfo.",
685 "ext-zlib": "Allows handling gzip compressed responses.",
686 "lib-curl": "Allows using cURL as a request backend.",
687 "lib-openssl": "Allows handling SSL requests when not using cURL."
688 },
689 "time": "2016-02-13T20:20:39+00:00",
690 "type": "library",
691 "extra": {
692 "branch-alias": {
693 "dev-trunk": "2.2-dev"
694 }
695 },
696 "installation-source": "dist",
697 "autoload": {
698 "psr-0": {
699 "HTTP_Request2": ""
700 }
701 },
702 "notification-url": "https://packagist.org/downloads/",
703 "include-path": [
704 "./"
705 ],
706 "license": [
707 "BSD-3-Clause"
708 ],
709 "authors": [
710 {
711 "name": "Alexey Borzov",
712 "email": "avb@php.net"
713 }
714 ],
715 "description": "Provides an easy way to perform HTTP requests.",
716 "homepage": "http://pear.php.net/package/HTTP_Request2",
717 "keywords": [
718 "PEAR",
719 "curl",
720 "http",
721 "request"
722 ],
723 "support": {
724 "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=HTTP_Request2",
725 "source": "https://github.com/pear/HTTP_Request2"
726 },
727 "install-path": "../pear/http_request2"
728 },
729 {
730 "name": "pear/mail",
731 "version": "v1.6.0",
732 "version_normalized": "1.6.0.0",
733 "source": {
734 "type": "git",
735 "url": "https://github.com/pear/Mail.git",
736 "reference": "4fda3292ac6bf226d8841cfd8ee3cf4e28395c01"
737 },
738 "dist": {
739 "type": "zip",
740 "url": "https://api.github.com/repos/pear/Mail/zipball/4fda3292ac6bf226d8841cfd8ee3cf4e28395c01",
741 "reference": "4fda3292ac6bf226d8841cfd8ee3cf4e28395c01",
742 "shasum": ""
743 },
744 "require": {
745 "pear/pear-core-minimal": "~1.9",
746 "php": ">=5.2.1"
747 },
748 "require-dev": {
749 "pear/pear": "*"
750 },
751 "suggest": {
752 "pear/net_smtp": "Install optionally via your project's composer.json"
753 },
754 "time": "2023-11-01T21:31:59+00:00",
755 "type": "library",
756 "installation-source": "dist",
757 "autoload": {
758 "psr-0": {
759 "Mail": "./"
760 }
761 },
762 "notification-url": "https://packagist.org/downloads/",
763 "include-path": [
764 "./"
765 ],
766 "license": [
767 "BSD-3-Clause"
768 ],
769 "authors": [
770 {
771 "name": "Chuck Hagenbuch",
772 "email": "chuck@horde.org",
773 "role": "Lead"
774 },
775 {
776 "name": "Armin Graefe",
777 "email": "schengawegga@gmail.com",
778 "role": "Lead"
779 },
780 {
781 "name": "Richard Heyes",
782 "email": "richard@phpguru.org",
783 "role": "Developer"
784 },
785 {
786 "name": "Aleksander Machniak",
787 "email": "alec@alec.pl",
788 "role": "Developer"
789 }
790 ],
791 "description": "Class that provides multiple interfaces for sending emails.",
792 "homepage": "http://pear.php.net/package/Mail",
793 "support": {
794 "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Mail",
795 "source": "https://github.com/pear/Mail"
796 },
797 "install-path": "../pear/mail"
798 },
799 {
800 "name": "pear/mail_mime",
801 "version": "1.10.11",
802 "version_normalized": "1.10.11.0",
803 "source": {
804 "type": "git",
805 "url": "https://github.com/pear/Mail_Mime.git",
806 "reference": "d4fb9ce61201593d0f8c6db629c45e29c3409c14"
807 },
808 "dist": {
809 "type": "zip",
810 "url": "https://api.github.com/repos/pear/Mail_Mime/zipball/d4fb9ce61201593d0f8c6db629c45e29c3409c14",
811 "reference": "d4fb9ce61201593d0f8c6db629c45e29c3409c14",
812 "shasum": ""
813 },
814 "require": {
815 "pear/pear-core-minimal": "*",
816 "php": ">=5.2.0"
817 },
818 "time": "2021-09-05T08:42:45+00:00",
819 "type": "library",
820 "installation-source": "dist",
821 "autoload": {
822 "psr-0": {
823 "Mail": "./"
824 }
825 },
826 "notification-url": "https://packagist.org/downloads/",
827 "include-path": [
828 "./"
829 ],
830 "license": [
831 "BSD-3-Clause"
832 ],
833 "authors": [
834 {
835 "name": "Cipriano Groenendal",
836 "email": "cipri@php.net",
837 "role": "Lead"
838 },
839 {
840 "name": "Aleksander Machniak",
841 "email": "alec@php.net",
842 "role": "Lead"
843 }
844 ],
845 "description": "Mail_Mime provides classes to create MIME messages",
846 "homepage": "http://pear.php.net/package/Mail_Mime",
847 "support": {
848 "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Mail_Mime",
849 "source": "https://github.com/pear/Mail_Mime"
850 },
851 "install-path": "../pear/mail_mime"
852 },
853 {
854 "name": "pear/net_idna2",
855 "version": "v0.2.0",
856 "version_normalized": "0.2.0.0",
857 "source": {
858 "type": "git",
859 "url": "https://github.com/pear/Net_IDNA2.git",
860 "reference": "51734eaf8be2df58e8aad5835b9966459b2fb37c"
861 },
862 "dist": {
863 "type": "zip",
864 "url": "https://api.github.com/repos/pear/Net_IDNA2/zipball/51734eaf8be2df58e8aad5835b9966459b2fb37c",
865 "reference": "51734eaf8be2df58e8aad5835b9966459b2fb37c",
866 "shasum": ""
867 },
868 "require": {
869 "pear/pear_exception": "@stable"
870 },
871 "require-dev": {
872 "phpunit/phpunit": "^4"
873 },
874 "time": "2017-03-06T20:46:41+00:00",
875 "type": "library",
876 "installation-source": "dist",
877 "autoload": {
878 "psr-0": {
879 "Net": "./"
880 }
881 },
882 "notification-url": "https://packagist.org/downloads/",
883 "include-path": [
884 "./"
885 ],
886 "license": [
887 "LGPL"
888 ],
889 "authors": [
890 {
891 "name": "Stefan Neufeind",
892 "email": "pear.neufeind@speedpartner.de",
893 "role": "Lead"
894 },
895 {
896 "name": "Daniel O'Connor",
897 "email": "daniel.oconnor@gmail.com",
898 "role": "Lead"
899 }
900 ],
901 "description": "More info available on: https://pear.php.net/package/Net_IDNA2",
902 "install-path": "../pear/net_idna2"
903 },
904 {
905 "name": "pear/net_sieve",
906 "version": "1.4.6",
907 "version_normalized": "1.4.6.0",
908 "source": {
909 "type": "git",
910 "url": "https://github.com/pear/Net_Sieve.git",
911 "reference": "ea79747d73e6d4017716d9bab2e760f7df3249d7"
912 },
913 "dist": {
914 "type": "zip",
915 "url": "https://api.github.com/repos/pear/Net_Sieve/zipball/ea79747d73e6d4017716d9bab2e760f7df3249d7",
916 "reference": "ea79747d73e6d4017716d9bab2e760f7df3249d7",
917 "shasum": ""
918 },
919 "require": {
920 "pear/net_socket": "~1.2",
921 "pear/pear-core-minimal": "~1.10"
922 },
923 "require-dev": {
924 "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
925 },
926 "suggest": {
927 "pear/auth_sasl": "Install optionally via your project's composer.json"
928 },
929 "time": "2022-12-02T17:19:07+00:00",
930 "type": "library",
931 "installation-source": "dist",
932 "autoload": {
933 "classmap": [
934 "./"
935 ]
936 },
937 "notification-url": "https://packagist.org/downloads/",
938 "license": [
939 "BSD-2-Clause"
940 ],
941 "authors": [
942 {
943 "name": "Aleksander Machniak",
944 "email": "alec@alec.pl",
945 "role": "Lead"
946 },
947 {
948 "name": "Jan Schneider",
949 "email": "jan@horde.org",
950 "role": "Lead"
951 },
952 {
953 "name": "Richard Heyes",
954 "email": "richard@php.net",
955 "role": "Lead"
956 },
957 {
958 "name": "Damian Fernandez Sosa",
959 "email": "damlists@cnba.uba.ar",
960 "role": "Lead"
961 },
962 {
963 "name": "Anish Mistry",
964 "email": "amistry@am-productions.biz",
965 "role": "Lead"
966 }
967 ],
968 "description": "More info available on: https://pear.php.net/package/Net_Sieve",
969 "support": {
970 "issues": "https://pear.php.net/bugs/search.php?cmd=display&package_name[]=Net_Sieve",
971 "source": "https://github.com/pear/Net_Sieve"
972 },
973 "install-path": "../pear/net_sieve"
974 },
975 {
976 "name": "pear/net_smtp",
977 "version": "1.7.3",
978 "version_normalized": "1.7.3.0",
979 "source": {
980 "type": "git",
981 "url": "https://github.com/pear/Net_SMTP.git",
982 "reference": "e066e5ee011ae056c03db1a95d210fc09649b477"
983 },
984 "dist": {
985 "type": "zip",
986 "url": "https://api.github.com/repos/pear/Net_SMTP/zipball/e066e5ee011ae056c03db1a95d210fc09649b477",
987 "reference": "e066e5ee011ae056c03db1a95d210fc09649b477",
988 "shasum": ""
989 },
990 "require": {
991 "pear/net_socket": "*",
992 "pear/pear-core-minimal": "*",
993 "php": ">=5.4.0"
994 },
995 "require-dev": {
996 "phpunit/phpunit": "*"
997 },
998 "suggest": {
999 "pear/auth_sasl": "Install optionally via your project's composer.json"
1000 },
1001 "time": "2017-01-14T18:19:55+00:00",
1002 "type": "library",
1003 "installation-source": "dist",
1004 "autoload": {
1005 "psr-0": {
1006 "Net": "./"
1007 }
1008 },
1009 "notification-url": "https://packagist.org/downloads/",
1010 "include-path": [
1011 "./"
1012 ],
1013 "license": [
1014 "PHP-3.01"
1015 ],
1016 "authors": [
1017 {
1018 "name": "Jon Parise",
1019 "email": "jon@php.net",
1020 "homepage": "http://www.indelible.org",
1021 "role": "Lead"
1022 },
1023 {
1024 "name": "Chuck Hagenbuch",
1025 "email": "chuck@horde.org",
1026 "role": "Lead"
1027 }
1028 ],
1029 "description": "An implementation of the SMTP protocol",
1030 "homepage": "http://pear.github.io/Net_SMTP/",
1031 "keywords": [
1032 "email",
1033 "mail",
1034 "smtp"
1035 ],
1036 "install-path": "../pear/net_smtp"
1037 },
1038 {
1039 "name": "pear/net_socket",
1040 "version": "v1.2.2",
1041 "version_normalized": "1.2.2.0",
1042 "source": {
1043 "type": "git",
1044 "url": "https://github.com/pear/Net_Socket.git",
1045 "reference": "bbe6a12bb4f7059dba161f6ddd43f369c0ec8d09"
1046 },
1047 "dist": {
1048 "type": "zip",
1049 "url": "https://api.github.com/repos/pear/Net_Socket/zipball/bbe6a12bb4f7059dba161f6ddd43f369c0ec8d09",
1050 "reference": "bbe6a12bb4f7059dba161f6ddd43f369c0ec8d09",
1051 "shasum": ""
1052 },
1053 "require": {
1054 "pear/pear_exception": "*"
1055 },
1056 "require-dev": {
1057 "phpunit/phpunit": "*"
1058 },
1059 "time": "2015-03-22T15:48:19+00:00",
1060 "type": "library",
1061 "installation-source": "dist",
1062 "autoload": {
1063 "psr-0": {
1064 "Net": "./"
1065 }
1066 },
1067 "notification-url": "https://packagist.org/downloads/",
1068 "include-path": [
1069 "./"
1070 ],
1071 "license": [
1072 "PHP License"
1073 ],
1074 "authors": [
1075 {
1076 "name": "Chuck Hagenbuch",
1077 "email": "chuck@horde.org",
1078 "role": "Lead"
1079 },
1080 {
1081 "name": "Aleksander Machniak",
1082 "email": "alec@php.net",
1083 "role": "Lead"
1084 },
1085 {
1086 "name": "Stig Bakken",
1087 "email": "stig@php.net",
1088 "role": "Lead"
1089 }
1090 ],
1091 "description": "More info available on: http://pear.php.net/package/Net_Socket",
1092 "support": {
1093 "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Net_Socket",
1094 "source": "https://github.com/pear/Net_Socket"
1095 },
1096 "install-path": "../pear/net_socket"
1097 },
1098 {
1099 "name": "pear/net_url2",
1100 "version": "v2.2.2",
1101 "version_normalized": "2.2.2.0",
1102 "source": {
1103 "type": "git",
1104 "url": "https://github.com/pear/Net_URL2.git",
1105 "reference": "07fd055820dbf466ee3990abe96d0e40a8791f9d"
1106 },
1107 "dist": {
1108 "type": "zip",
1109 "url": "https://api.github.com/repos/pear/Net_URL2/zipball/07fd055820dbf466ee3990abe96d0e40a8791f9d",
1110 "reference": "07fd055820dbf466ee3990abe96d0e40a8791f9d",
1111 "shasum": ""
1112 },
1113 "require": {
1114 "php": ">=5.1.4"
1115 },
1116 "require-dev": {
1117 "phpunit/phpunit": ">=3.3.0"
1118 },
1119 "time": "2017-08-25T06:16:11+00:00",
1120 "type": "library",
1121 "extra": {
1122 "branch-alias": {
1123 "dev-master": "2.2.x-dev"
1124 }
1125 },
1126 "installation-source": "dist",
1127 "autoload": {
1128 "classmap": [
1129 "Net/URL2.php"
1130 ]
1131 },
1132 "notification-url": "https://packagist.org/downloads/",
1133 "include-path": [
1134 "./"
1135 ],
1136 "license": [
1137 "BSD-3-Clause"
1138 ],
1139 "authors": [
1140 {
1141 "name": "David Coallier",
1142 "email": "davidc@php.net"
1143 },
1144 {
1145 "name": "Tom Klingenberg",
1146 "email": "tkli@php.net"
1147 },
1148 {
1149 "name": "Christian Schmidt",
1150 "email": "chmidt@php.net"
1151 }
1152 ],
1153 "description": "Class for parsing and handling URL. Provides parsing of URLs into their constituent parts (scheme, host, path etc.), URL generation, and resolving of relative URLs.",
1154 "homepage": "https://github.com/pear/Net_URL2",
1155 "keywords": [
1156 "PEAR",
1157 "net",
1158 "networking",
1159 "rfc3986",
1160 "uri",
1161 "url"
1162 ],
1163 "support": {
1164 "issues": "https://pear.php.net/bugs/search.php?cmd=display&package_name[]=Net_URL2",
1165 "source": "https://github.com/pear/Net_URL2"
1166 },
1167 "install-path": "../pear/net_url2"
1168 },
1169 {
1170 "name": "pear/pear-core-minimal",
1171 "version": "v1.10.14",
1172 "version_normalized": "1.10.14.0",
1173 "source": {
1174 "type": "git",
1175 "url": "https://github.com/pear/pear-core-minimal.git",
1176 "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32"
1177 },
1178 "dist": {
1179 "type": "zip",
1180 "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32",
1181 "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32",
1182 "shasum": ""
1183 },
1184 "require": {
1185 "pear/console_getopt": "~1.4",
1186 "pear/pear_exception": "~1.0",
1187 "php": ">=5.4"
1188 },
1189 "replace": {
1190 "rsky/pear-core-min": "self.version"
1191 },
1192 "time": "2023-11-26T16:15:38+00:00",
1193 "type": "library",
1194 "installation-source": "dist",
1195 "autoload": {
1196 "psr-0": {
1197 "": "src/"
1198 }
1199 },
1200 "notification-url": "https://packagist.org/downloads/",
1201 "include-path": [
1202 "src/"
1203 ],
1204 "license": [
1205 "BSD-3-Clause"
1206 ],
1207 "authors": [
1208 {
1209 "name": "Christian Weiske",
1210 "email": "cweiske@php.net",
1211 "role": "Lead"
1212 }
1213 ],
1214 "description": "Minimal set of PEAR core files to be used as composer dependency",
1215 "support": {
1216 "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
1217 "source": "https://github.com/pear/pear-core-minimal"
1218 },
1219 "install-path": "../pear/pear-core-minimal"
1220 },
1221 {
1222 "name": "pear/pear_exception",
1223 "version": "v1.0.2",
1224 "version_normalized": "1.0.2.0",
1225 "source": {
1226 "type": "git",
1227 "url": "https://github.com/pear/PEAR_Exception.git",
1228 "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
1229 },
1230 "dist": {
1231 "type": "zip",
1232 "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
1233 "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
1234 "shasum": ""
1235 },
1236 "require": {
1237 "php": ">=5.2.0"
1238 },
1239 "require-dev": {
1240 "phpunit/phpunit": "<9"
1241 },
1242 "time": "2021-03-21T15:43:46+00:00",
1243 "type": "class",
1244 "extra": {
1245 "branch-alias": {
1246 "dev-master": "1.0.x-dev"
1247 }
1248 },
1249 "installation-source": "dist",
1250 "autoload": {
1251 "classmap": [
1252 "PEAR/"
1253 ]
1254 },
1255 "notification-url": "https://packagist.org/downloads/",
1256 "include-path": [
1257 "."
1258 ],
1259 "license": [
1260 "BSD-2-Clause"
1261 ],
1262 "authors": [
1263 {
1264 "name": "Helgi Thormar",
1265 "email": "dufuz@php.net"
1266 },
1267 {
1268 "name": "Greg Beaver",
1269 "email": "cellog@php.net"
1270 }
1271 ],
1272 "description": "The PEAR Exception base class.",
1273 "homepage": "https://github.com/pear/PEAR_Exception",
1274 "keywords": [
1275 "exception"
1276 ],
1277 "support": {
1278 "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
1279 "source": "https://github.com/pear/PEAR_Exception"
1280 },
1281 "install-path": "../pear/pear_exception"
1282 },
1283 {
1284 "name": "phpdocumentor/reflection-common",
1285 "version": "2.2.0",
1286 "version_normalized": "2.2.0.0",
1287 "source": {
1288 "type": "git",
1289 "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
1290 "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
1291 },
1292 "dist": {
1293 "type": "zip",
1294 "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
1295 "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
1296 "shasum": ""
1297 },
1298 "require": {
1299 "php": "^7.2 || ^8.0"
1300 },
1301 "time": "2020-06-27T09:03:43+00:00",
1302 "type": "library",
1303 "extra": {
1304 "branch-alias": {
1305 "dev-2.x": "2.x-dev"
1306 }
1307 },
1308 "installation-source": "dist",
1309 "autoload": {
1310 "psr-4": {
1311 "phpDocumentor\\Reflection\\": "src/"
1312 }
1313 },
1314 "notification-url": "https://packagist.org/downloads/",
1315 "license": [
1316 "MIT"
1317 ],
1318 "authors": [
1319 {
1320 "name": "Jaap van Otterdijk",
1321 "email": "opensource@ijaap.nl"
1322 }
1323 ],
1324 "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
1325 "homepage": "http://www.phpdoc.org",
1326 "keywords": [
1327 "FQSEN",
1328 "phpDocumentor",
1329 "phpdoc",
1330 "reflection",
1331 "static analysis"
1332 ],
1333 "support": {
1334 "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
1335 "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
1336 },
1337 "install-path": "../phpdocumentor/reflection-common"
1338 },
1339 {
1340 "name": "phpdocumentor/reflection-docblock",
1341 "version": "5.3.0",
1342 "version_normalized": "5.3.0.0",
1343 "source": {
1344 "type": "git",
1345 "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
1346 "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
1347 },
1348 "dist": {
1349 "type": "zip",
1350 "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
1351 "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
1352 "shasum": ""
1353 },
1354 "require": {
1355 "ext-filter": "*",
1356 "php": "^7.2 || ^8.0",
1357 "phpdocumentor/reflection-common": "^2.2",
1358 "phpdocumentor/type-resolver": "^1.3",
1359 "webmozart/assert": "^1.9.1"
1360 },
1361 "require-dev": {
1362 "mockery/mockery": "~1.3.2",
1363 "psalm/phar": "^4.8"
1364 },
1365 "time": "2021-10-19T17:43:47+00:00",
1366 "type": "library",
1367 "extra": {
1368 "branch-alias": {
1369 "dev-master": "5.x-dev"
1370 }
1371 },
1372 "installation-source": "dist",
1373 "autoload": {
1374 "psr-4": {
1375 "phpDocumentor\\Reflection\\": "src"
1376 }
1377 },
1378 "notification-url": "https://packagist.org/downloads/",
1379 "license": [
1380 "MIT"
1381 ],
1382 "authors": [
1383 {
1384 "name": "Mike van Riel",
1385 "email": "me@mikevanriel.com"
1386 },
1387 {
1388 "name": "Jaap van Otterdijk",
1389 "email": "account@ijaap.nl"
1390 }
1391 ],
1392 "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
1393 "support": {
1394 "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
1395 "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
1396 },
1397 "install-path": "../phpdocumentor/reflection-docblock"
1398 },
1399 {
1400 "name": "phpdocumentor/type-resolver",
1401 "version": "1.7.3",
1402 "version_normalized": "1.7.3.0",
1403 "source": {
1404 "type": "git",
1405 "url": "https://github.com/phpDocumentor/TypeResolver.git",
1406 "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419"
1407 },
1408 "dist": {
1409 "type": "zip",
1410 "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
1411 "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419",
1412 "shasum": ""
1413 },
1414 "require": {
1415 "doctrine/deprecations": "^1.0",
1416 "php": "^7.4 || ^8.0",
1417 "phpdocumentor/reflection-common": "^2.0",
1418 "phpstan/phpdoc-parser": "^1.13"
1419 },
1420 "require-dev": {
1421 "ext-tokenizer": "*",
1422 "phpbench/phpbench": "^1.2",
1423 "phpstan/extension-installer": "^1.1",
1424 "phpstan/phpstan": "^1.8",
1425 "phpstan/phpstan-phpunit": "^1.1",
1426 "phpunit/phpunit": "^9.5",
1427 "rector/rector": "^0.13.9",
1428 "vimeo/psalm": "^4.25"
1429 },
1430 "time": "2023-08-12T11:01:26+00:00",
1431 "type": "library",
1432 "extra": {
1433 "branch-alias": {
1434 "dev-1.x": "1.x-dev"
1435 }
1436 },
1437 "installation-source": "dist",
1438 "autoload": {
1439 "psr-4": {
1440 "phpDocumentor\\Reflection\\": "src"
1441 }
1442 },
1443 "notification-url": "https://packagist.org/downloads/",
1444 "license": [
1445 "MIT"
1446 ],
1447 "authors": [
1448 {
1449 "name": "Mike van Riel",
1450 "email": "me@mikevanriel.com"
1451 }
1452 ],
1453 "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
1454 "support": {
1455 "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
1456 "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.3"
1457 },
1458 "install-path": "../phpdocumentor/type-resolver"
1459 },
1460 {
1461 "name": "phpspec/prophecy",
1462 "version": "v1.10.3",
1463 "version_normalized": "1.10.3.0",
1464 "source": {
1465 "type": "git",
1466 "url": "https://github.com/phpspec/prophecy.git",
1467 "reference": "451c3cd1418cf640de218914901e51b064abb093"
1468 },
1469 "dist": {
1470 "type": "zip",
1471 "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
1472 "reference": "451c3cd1418cf640de218914901e51b064abb093",
1473 "shasum": ""
1474 },
1475 "require": {
1476 "doctrine/instantiator": "^1.0.2",
1477 "php": "^5.3|^7.0",
1478 "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
1479 "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
1480 "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
1481 },
1482 "require-dev": {
1483 "phpspec/phpspec": "^2.5 || ^3.2",
1484 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
1485 },
1486 "time": "2020-03-05T15:02:03+00:00",
1487 "type": "library",
1488 "extra": {
1489 "branch-alias": {
1490 "dev-master": "1.10.x-dev"
1491 }
1492 },
1493 "installation-source": "dist",
1494 "autoload": {
1495 "psr-4": {
1496 "Prophecy\\": "src/Prophecy"
1497 }
1498 },
1499 "notification-url": "https://packagist.org/downloads/",
1500 "license": [
1501 "MIT"
1502 ],
1503 "authors": [
1504 {
1505 "name": "Konstantin Kudryashov",
1506 "email": "ever.zet@gmail.com",
1507 "homepage": "http://everzet.com"
1508 },
1509 {
1510 "name": "Marcello Duarte",
1511 "email": "marcello.duarte@gmail.com"
1512 }
1513 ],
1514 "description": "Highly opinionated mocking framework for PHP 5.3+",
1515 "homepage": "https://github.com/phpspec/prophecy",
1516 "keywords": [
1517 "Double",
1518 "Dummy",
1519 "fake",
1520 "mock",
1521 "spy",
1522 "stub"
1523 ],
1524 "support": {
1525 "issues": "https://github.com/phpspec/prophecy/issues",
1526 "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
1527 },
1528 "install-path": "../phpspec/prophecy"
1529 },
1530 {
1531 "name": "phpstan/phpdoc-parser",
1532 "version": "1.24.5",
1533 "version_normalized": "1.24.5.0",
1534 "source": {
1535 "type": "git",
1536 "url": "https://github.com/phpstan/phpdoc-parser.git",
1537 "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc"
1538 },
1539 "dist": {
1540 "type": "zip",
1541 "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fedf211ff14ec8381c9bf5714e33a7a552dd1acc",
1542 "reference": "fedf211ff14ec8381c9bf5714e33a7a552dd1acc",
1543 "shasum": ""
1544 },
1545 "require": {
1546 "php": "^7.2 || ^8.0"
1547 },
1548 "require-dev": {
1549 "doctrine/annotations": "^2.0",
1550 "nikic/php-parser": "^4.15",
1551 "php-parallel-lint/php-parallel-lint": "^1.2",
1552 "phpstan/extension-installer": "^1.0",
1553 "phpstan/phpstan": "^1.5",
1554 "phpstan/phpstan-phpunit": "^1.1",
1555 "phpstan/phpstan-strict-rules": "^1.0",
1556 "phpunit/phpunit": "^9.5",
1557 "symfony/process": "^5.2"
1558 },
1559 "time": "2023-12-16T09:33:33+00:00",
1560 "type": "library",
1561 "installation-source": "dist",
1562 "autoload": {
1563 "psr-4": {
1564 "PHPStan\\PhpDocParser\\": [
1565 "src/"
1566 ]
1567 }
1568 },
1569 "notification-url": "https://packagist.org/downloads/",
1570 "license": [
1571 "MIT"
1572 ],
1573 "description": "PHPDoc parser with support for nullable, intersection and generic types",
1574 "support": {
1575 "issues": "https://github.com/phpstan/phpdoc-parser/issues",
1576 "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.5"
1577 },
1578 "install-path": "../phpstan/phpdoc-parser"
1579 },
1580 {
1581 "name": "phpunit/php-code-coverage",
1582 "version": "4.0.8",
1583 "version_normalized": "4.0.8.0",
1584 "source": {
1585 "type": "git",
1586 "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
1587 "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
1588 },
1589 "dist": {
1590 "type": "zip",
1591 "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
1592 "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
1593 "shasum": ""
1594 },
1595 "require": {
1596 "ext-dom": "*",
1597 "ext-xmlwriter": "*",
1598 "php": "^5.6 || ^7.0",
1599 "phpunit/php-file-iterator": "^1.3",
1600 "phpunit/php-text-template": "^1.2",
1601 "phpunit/php-token-stream": "^1.4.2 || ^2.0",
1602 "sebastian/code-unit-reverse-lookup": "^1.0",
1603 "sebastian/environment": "^1.3.2 || ^2.0",
1604 "sebastian/version": "^1.0 || ^2.0"
1605 },
1606 "require-dev": {
1607 "ext-xdebug": "^2.1.4",
1608 "phpunit/phpunit": "^5.7"
1609 },
1610 "suggest": {
1611 "ext-xdebug": "^2.5.1"
1612 },
1613 "time": "2017-04-02T07:44:40+00:00",
1614 "type": "library",
1615 "extra": {
1616 "branch-alias": {
1617 "dev-master": "4.0.x-dev"
1618 }
1619 },
1620 "installation-source": "dist",
1621 "autoload": {
1622 "classmap": [
1623 "src/"
1624 ]
1625 },
1626 "notification-url": "https://packagist.org/downloads/",
1627 "license": [
1628 "BSD-3-Clause"
1629 ],
1630 "authors": [
1631 {
1632 "name": "Sebastian Bergmann",
1633 "email": "sb@sebastian-bergmann.de",
1634 "role": "lead"
1635 }
1636 ],
1637 "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
1638 "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
1639 "keywords": [
1640 "coverage",
1641 "testing",
1642 "xunit"
1643 ],
1644 "support": {
1645 "irc": "irc://irc.freenode.net/phpunit",
1646 "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
1647 "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/4.0"
1648 },
1649 "install-path": "../phpunit/php-code-coverage"
1650 },
1651 {
1652 "name": "phpunit/php-file-iterator",
1653 "version": "1.4.5",
1654 "version_normalized": "1.4.5.0",
1655 "source": {
1656 "type": "git",
1657 "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
1658 "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
1659 },
1660 "dist": {
1661 "type": "zip",
1662 "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
1663 "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
1664 "shasum": ""
1665 },
1666 "require": {
1667 "php": ">=5.3.3"
1668 },
1669 "time": "2017-11-27T13:52:08+00:00",
1670 "type": "library",
1671 "extra": {
1672 "branch-alias": {
1673 "dev-master": "1.4.x-dev"
1674 }
1675 },
1676 "installation-source": "dist",
1677 "autoload": {
1678 "classmap": [
1679 "src/"
1680 ]
1681 },
1682 "notification-url": "https://packagist.org/downloads/",
1683 "license": [
1684 "BSD-3-Clause"
1685 ],
1686 "authors": [
1687 {
1688 "name": "Sebastian Bergmann",
1689 "email": "sb@sebastian-bergmann.de",
1690 "role": "lead"
1691 }
1692 ],
1693 "description": "FilterIterator implementation that filters files based on a list of suffixes.",
1694 "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
1695 "keywords": [
1696 "filesystem",
1697 "iterator"
1698 ],
1699 "support": {
1700 "irc": "irc://irc.freenode.net/phpunit",
1701 "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
1702 "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/1.4.5"
1703 },
1704 "install-path": "../phpunit/php-file-iterator"
1705 },
1706 {
1707 "name": "phpunit/php-text-template",
1708 "version": "1.2.1",
1709 "version_normalized": "1.2.1.0",
1710 "source": {
1711 "type": "git",
1712 "url": "https://github.com/sebastianbergmann/php-text-template.git",
1713 "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
1714 },
1715 "dist": {
1716 "type": "zip",
1717 "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
1718 "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
1719 "shasum": ""
1720 },
1721 "require": {
1722 "php": ">=5.3.3"
1723 },
1724 "time": "2015-06-21T13:50:34+00:00",
1725 "type": "library",
1726 "installation-source": "dist",
1727 "autoload": {
1728 "classmap": [
1729 "src/"
1730 ]
1731 },
1732 "notification-url": "https://packagist.org/downloads/",
1733 "license": [
1734 "BSD-3-Clause"
1735 ],
1736 "authors": [
1737 {
1738 "name": "Sebastian Bergmann",
1739 "email": "sebastian@phpunit.de",
1740 "role": "lead"
1741 }
1742 ],
1743 "description": "Simple template engine.",
1744 "homepage": "https://github.com/sebastianbergmann/php-text-template/",
1745 "keywords": [
1746 "template"
1747 ],
1748 "support": {
1749 "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
1750 "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
1751 },
1752 "install-path": "../phpunit/php-text-template"
1753 },
1754 {
1755 "name": "phpunit/php-timer",
1756 "version": "1.0.9",
1757 "version_normalized": "1.0.9.0",
1758 "source": {
1759 "type": "git",
1760 "url": "https://github.com/sebastianbergmann/php-timer.git",
1761 "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
1762 },
1763 "dist": {
1764 "type": "zip",
1765 "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
1766 "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
1767 "shasum": ""
1768 },
1769 "require": {
1770 "php": "^5.3.3 || ^7.0"
1771 },
1772 "require-dev": {
1773 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
1774 },
1775 "time": "2017-02-26T11:10:40+00:00",
1776 "type": "library",
1777 "extra": {
1778 "branch-alias": {
1779 "dev-master": "1.0-dev"
1780 }
1781 },
1782 "installation-source": "dist",
1783 "autoload": {
1784 "classmap": [
1785 "src/"
1786 ]
1787 },
1788 "notification-url": "https://packagist.org/downloads/",
1789 "license": [
1790 "BSD-3-Clause"
1791 ],
1792 "authors": [
1793 {
1794 "name": "Sebastian Bergmann",
1795 "email": "sb@sebastian-bergmann.de",
1796 "role": "lead"
1797 }
1798 ],
1799 "description": "Utility class for timing",
1800 "homepage": "https://github.com/sebastianbergmann/php-timer/",
1801 "keywords": [
1802 "timer"
1803 ],
1804 "support": {
1805 "issues": "https://github.com/sebastianbergmann/php-timer/issues",
1806 "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
1807 },
1808 "install-path": "../phpunit/php-timer"
1809 },
1810 {
1811 "name": "phpunit/php-token-stream",
1812 "version": "2.0.2",
1813 "version_normalized": "2.0.2.0",
1814 "source": {
1815 "type": "git",
1816 "url": "https://github.com/sebastianbergmann/php-token-stream.git",
1817 "reference": "791198a2c6254db10131eecfe8c06670700904db"
1818 },
1819 "dist": {
1820 "type": "zip",
1821 "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
1822 "reference": "791198a2c6254db10131eecfe8c06670700904db",
1823 "shasum": ""
1824 },
1825 "require": {
1826 "ext-tokenizer": "*",
1827 "php": "^7.0"
1828 },
1829 "require-dev": {
1830 "phpunit/phpunit": "^6.2.4"
1831 },
1832 "time": "2017-11-27T05:48:46+00:00",
1833 "type": "library",
1834 "extra": {
1835 "branch-alias": {
1836 "dev-master": "2.0-dev"
1837 }
1838 },
1839 "installation-source": "dist",
1840 "autoload": {
1841 "classmap": [
1842 "src/"
1843 ]
1844 },
1845 "notification-url": "https://packagist.org/downloads/",
1846 "license": [
1847 "BSD-3-Clause"
1848 ],
1849 "authors": [
1850 {
1851 "name": "Sebastian Bergmann",
1852 "email": "sebastian@phpunit.de"
1853 }
1854 ],
1855 "description": "Wrapper around PHP's tokenizer extension.",
1856 "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
1857 "keywords": [
1858 "tokenizer"
1859 ],
1860 "support": {
1861 "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
1862 "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
1863 },
1864 "abandoned": true,
1865 "install-path": "../phpunit/php-token-stream"
1866 },
1867 {
1868 "name": "phpunit/phpunit",
1869 "version": "5.7.27",
1870 "version_normalized": "5.7.27.0",
1871 "source": {
1872 "type": "git",
1873 "url": "https://github.com/sebastianbergmann/phpunit.git",
1874 "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c"
1875 },
1876 "dist": {
1877 "type": "zip",
1878 "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
1879 "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
1880 "shasum": ""
1881 },
1882 "require": {
1883 "ext-dom": "*",
1884 "ext-json": "*",
1885 "ext-libxml": "*",
1886 "ext-mbstring": "*",
1887 "ext-xml": "*",
1888 "myclabs/deep-copy": "~1.3",
1889 "php": "^5.6 || ^7.0",
1890 "phpspec/prophecy": "^1.6.2",
1891 "phpunit/php-code-coverage": "^4.0.4",
1892 "phpunit/php-file-iterator": "~1.4",
1893 "phpunit/php-text-template": "~1.2",
1894 "phpunit/php-timer": "^1.0.6",
1895 "phpunit/phpunit-mock-objects": "^3.2",
1896 "sebastian/comparator": "^1.2.4",
1897 "sebastian/diff": "^1.4.3",
1898 "sebastian/environment": "^1.3.4 || ^2.0",
1899 "sebastian/exporter": "~2.0",
1900 "sebastian/global-state": "^1.1",
1901 "sebastian/object-enumerator": "~2.0",
1902 "sebastian/resource-operations": "~1.0",
1903 "sebastian/version": "^1.0.6|^2.0.1",
1904 "symfony/yaml": "~2.1|~3.0|~4.0"
1905 },
1906 "conflict": {
1907 "phpdocumentor/reflection-docblock": "3.0.2"
1908 },
1909 "require-dev": {
1910 "ext-pdo": "*"
1911 },
1912 "suggest": {
1913 "ext-xdebug": "*",
1914 "phpunit/php-invoker": "~1.1"
1915 },
1916 "time": "2018-02-01T05:50:59+00:00",
1917 "bin": [
1918 "phpunit"
1919 ],
1920 "type": "library",
1921 "extra": {
1922 "branch-alias": {
1923 "dev-master": "5.7.x-dev"
1924 }
1925 },
1926 "installation-source": "dist",
1927 "autoload": {
1928 "classmap": [
1929 "src/"
1930 ]
1931 },
1932 "notification-url": "https://packagist.org/downloads/",
1933 "license": [
1934 "BSD-3-Clause"
1935 ],
1936 "authors": [
1937 {
1938 "name": "Sebastian Bergmann",
1939 "email": "sebastian@phpunit.de",
1940 "role": "lead"
1941 }
1942 ],
1943 "description": "The PHP Unit Testing framework.",
1944 "homepage": "https://phpunit.de/",
1945 "keywords": [
1946 "phpunit",
1947 "testing",
1948 "xunit"
1949 ],
1950 "support": {
1951 "issues": "https://github.com/sebastianbergmann/phpunit/issues",
1952 "source": "https://github.com/sebastianbergmann/phpunit/tree/5.7.27"
1953 },
1954 "install-path": "../phpunit/phpunit"
1955 },
1956 {
1957 "name": "phpunit/phpunit-mock-objects",
1958 "version": "3.4.4",
1959 "version_normalized": "3.4.4.0",
1960 "source": {
1961 "type": "git",
1962 "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
1963 "reference": "a23b761686d50a560cc56233b9ecf49597cc9118"
1964 },
1965 "dist": {
1966 "type": "zip",
1967 "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118",
1968 "reference": "a23b761686d50a560cc56233b9ecf49597cc9118",
1969 "shasum": ""
1970 },
1971 "require": {
1972 "doctrine/instantiator": "^1.0.2",
1973 "php": "^5.6 || ^7.0",
1974 "phpunit/php-text-template": "^1.2",
1975 "sebastian/exporter": "^1.2 || ^2.0"
1976 },
1977 "conflict": {
1978 "phpunit/phpunit": "<5.4.0"
1979 },
1980 "require-dev": {
1981 "phpunit/phpunit": "^5.4"
1982 },
1983 "suggest": {
1984 "ext-soap": "*"
1985 },
1986 "time": "2017-06-30T09:13:00+00:00",
1987 "type": "library",
1988 "extra": {
1989 "branch-alias": {
1990 "dev-master": "3.2.x-dev"
1991 }
1992 },
1993 "installation-source": "dist",
1994 "autoload": {
1995 "classmap": [
1996 "src/"
1997 ]
1998 },
1999 "notification-url": "https://packagist.org/downloads/",
2000 "license": [
2001 "BSD-3-Clause"
2002 ],
2003 "authors": [
2004 {
2005 "name": "Sebastian Bergmann",
2006 "email": "sb@sebastian-bergmann.de",
2007 "role": "lead"
2008 }
2009 ],
2010 "description": "Mock Object library for PHPUnit",
2011 "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
2012 "keywords": [
2013 "mock",
2014 "xunit"
2015 ],
2016 "support": {
2017 "irc": "irc://irc.freenode.net/phpunit",
2018 "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
2019 "source": "https://github.com/sebastianbergmann/phpunit-mock-objects/tree/3.4"
2020 },
2021 "abandoned": true,
2022 "install-path": "../phpunit/phpunit-mock-objects"
2023 },
2024 {
2025 "name": "roundcube/plugin-installer",
2026 "version": "0.3.2",
2027 "version_normalized": "0.3.2.0",
2028 "source": {
2029 "type": "git",
2030 "url": "https://github.com/roundcube/plugin-installer.git",
2031 "reference": "c4335e20b86cfe3a184ccf24d675c6a0338a372a"
2032 },
2033 "dist": {
2034 "type": "zip",
2035 "url": "https://api.github.com/repos/roundcube/plugin-installer/zipball/c4335e20b86cfe3a184ccf24d675c6a0338a372a",
2036 "reference": "c4335e20b86cfe3a184ccf24d675c6a0338a372a",
2037 "shasum": ""
2038 },
2039 "require": {
2040 "composer-plugin-api": "^1.0 || ^2.0"
2041 },
2042 "require-dev": {
2043 "composer/composer": "*"
2044 },
2045 "time": "2022-06-24T09:08:18+00:00",
2046 "type": "composer-plugin",
2047 "extra": {
2048 "class": [
2049 "Roundcube\\Composer\\RoundcubeInstaller"
2050 ]
2051 },
2052 "installation-source": "dist",
2053 "autoload": {
2054 "psr-0": {
2055 "Roundcube\\Composer": "src/"
2056 }
2057 },
2058 "notification-url": "https://packagist.org/downloads/",
2059 "license": [
2060 "GPL-3.0+"
2061 ],
2062 "authors": [
2063 {
2064 "name": "Thomas Bruederli",
2065 "email": "thomas@roundcube.net"
2066 },
2067 {
2068 "name": "Till Klampaeckel",
2069 "email": "till@php.net"
2070 },
2071 {
2072 "name": "Philip Weir",
2073 "email": "roundcube@tehinterweb.co.uk"
2074 }
2075 ],
2076 "description": "A composer-installer for Roundcube plugins and skins.",
2077 "support": {
2078 "issues": "https://github.com/roundcube/plugin-installer/issues",
2079 "source": "https://github.com/roundcube/plugin-installer/tree/0.3.2"
2080 },
2081 "install-path": "../roundcube/plugin-installer"
2082 },
2083 {
2084 "name": "sabre/vobject",
2085 "version": "3.0.0",
2086 "version_normalized": "3.0.0.0",
2087 "source": {
2088 "type": "git",
2089 "url": "https://github.com/sabre-io/vobject.git",
2090 "reference": "6e21a00eebca693a8712f81daf652097fd9baaf0"
2091 },
2092 "dist": {
2093 "type": "zip",
2094 "url": "https://api.github.com/repos/sabre-io/vobject/zipball/6e21a00eebca693a8712f81daf652097fd9baaf0",
2095 "reference": "6e21a00eebca693a8712f81daf652097fd9baaf0",
2096 "shasum": ""
2097 },
2098 "require": {
2099 "ext-mbstring": "*",
2100 "php": ">=5.3.1"
2101 },
2102 "time": "2013-06-21T17:00:08+00:00",
2103 "bin": [
2104 "bin/vobjectvalidate.php"
2105 ],
2106 "type": "library",
2107 "extra": {
2108 "branch-alias": {
2109 "dev-master": "3.0.x-dev"
2110 }
2111 },
2112 "installation-source": "dist",
2113 "autoload": {
2114 "psr-0": {
2115 "Sabre\\VObject": "lib/"
2116 }
2117 },
2118 "notification-url": "https://packagist.org/downloads/",
2119 "license": [
2120 "BSD-3-Clause"
2121 ],
2122 "authors": [
2123 {
2124 "name": "Evert Pot",
2125 "email": "evert@rooftopsolutions.nl",
2126 "homepage": "http://evertpot.com/",
2127 "role": "Developer"
2128 }
2129 ],
2130 "description": "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects",
2131 "homepage": "https://github.com/fruux/sabre-vobject",
2132 "keywords": [
2133 "VObject",
2134 "iCalendar",
2135 "vCard"
2136 ],
2137 "support": {
2138 "forum": "https://groups.google.com/group/sabredav-discuss",
2139 "issues": "https://github.com/sabre-io/vobject/issues",
2140 "source": "https://github.com/fruux/sabre-vobject"
2141 },
2142 "install-path": "../sabre/vobject"
2143 },
2144 {
2145 "name": "sebastian/code-unit-reverse-lookup",
2146 "version": "1.0.2",
2147 "version_normalized": "1.0.2.0",
2148 "source": {
2149 "type": "git",
2150 "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
2151 "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
2152 },
2153 "dist": {
2154 "type": "zip",
2155 "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
2156 "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
2157 "shasum": ""
2158 },
2159 "require": {
2160 "php": ">=5.6"
2161 },
2162 "require-dev": {
2163 "phpunit/phpunit": "^8.5"
2164 },
2165 "time": "2020-11-30T08:15:22+00:00",
2166 "type": "library",
2167 "extra": {
2168 "branch-alias": {
2169 "dev-master": "1.0.x-dev"
2170 }
2171 },
2172 "installation-source": "dist",
2173 "autoload": {
2174 "classmap": [
2175 "src/"
2176 ]
2177 },
2178 "notification-url": "https://packagist.org/downloads/",
2179 "license": [
2180 "BSD-3-Clause"
2181 ],
2182 "authors": [
2183 {
2184 "name": "Sebastian Bergmann",
2185 "email": "sebastian@phpunit.de"
2186 }
2187 ],
2188 "description": "Looks up which function or method a line of code belongs to",
2189 "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
2190 "support": {
2191 "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
2192 "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
2193 },
2194 "funding": [
2195 {
2196 "url": "https://github.com/sebastianbergmann",
2197 "type": "github"
2198 }
2199 ],
2200 "install-path": "../sebastian/code-unit-reverse-lookup"
2201 },
2202 {
2203 "name": "sebastian/comparator",
2204 "version": "1.2.4",
2205 "version_normalized": "1.2.4.0",
2206 "source": {
2207 "type": "git",
2208 "url": "https://github.com/sebastianbergmann/comparator.git",
2209 "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
2210 },
2211 "dist": {
2212 "type": "zip",
2213 "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
2214 "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
2215 "shasum": ""
2216 },
2217 "require": {
2218 "php": ">=5.3.3",
2219 "sebastian/diff": "~1.2",
2220 "sebastian/exporter": "~1.2 || ~2.0"
2221 },
2222 "require-dev": {
2223 "phpunit/phpunit": "~4.4"
2224 },
2225 "time": "2017-01-29T09:50:25+00:00",
2226 "type": "library",
2227 "extra": {
2228 "branch-alias": {
2229 "dev-master": "1.2.x-dev"
2230 }
2231 },
2232 "installation-source": "dist",
2233 "autoload": {
2234 "classmap": [
2235 "src/"
2236 ]
2237 },
2238 "notification-url": "https://packagist.org/downloads/",
2239 "license": [
2240 "BSD-3-Clause"
2241 ],
2242 "authors": [
2243 {
2244 "name": "Jeff Welch",
2245 "email": "whatthejeff@gmail.com"
2246 },
2247 {
2248 "name": "Volker Dusch",
2249 "email": "github@wallbash.com"
2250 },
2251 {
2252 "name": "Bernhard Schussek",
2253 "email": "bschussek@2bepublished.at"
2254 },
2255 {
2256 "name": "Sebastian Bergmann",
2257 "email": "sebastian@phpunit.de"
2258 }
2259 ],
2260 "description": "Provides the functionality to compare PHP values for equality",
2261 "homepage": "http://www.github.com/sebastianbergmann/comparator",
2262 "keywords": [
2263 "comparator",
2264 "compare",
2265 "equality"
2266 ],
2267 "support": {
2268 "issues": "https://github.com/sebastianbergmann/comparator/issues",
2269 "source": "https://github.com/sebastianbergmann/comparator/tree/1.2"
2270 },
2271 "install-path": "../sebastian/comparator"
2272 },
2273 {
2274 "name": "sebastian/diff",
2275 "version": "1.4.3",
2276 "version_normalized": "1.4.3.0",
2277 "source": {
2278 "type": "git",
2279 "url": "https://github.com/sebastianbergmann/diff.git",
2280 "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
2281 },
2282 "dist": {
2283 "type": "zip",
2284 "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
2285 "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
2286 "shasum": ""
2287 },
2288 "require": {
2289 "php": "^5.3.3 || ^7.0"
2290 },
2291 "require-dev": {
2292 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
2293 },
2294 "time": "2017-05-22T07:24:03+00:00",
2295 "type": "library",
2296 "extra": {
2297 "branch-alias": {
2298 "dev-master": "1.4-dev"
2299 }
2300 },
2301 "installation-source": "dist",
2302 "autoload": {
2303 "classmap": [
2304 "src/"
2305 ]
2306 },
2307 "notification-url": "https://packagist.org/downloads/",
2308 "license": [
2309 "BSD-3-Clause"
2310 ],
2311 "authors": [
2312 {
2313 "name": "Kore Nordmann",
2314 "email": "mail@kore-nordmann.de"
2315 },
2316 {
2317 "name": "Sebastian Bergmann",
2318 "email": "sebastian@phpunit.de"
2319 }
2320 ],
2321 "description": "Diff implementation",
2322 "homepage": "https://github.com/sebastianbergmann/diff",
2323 "keywords": [
2324 "diff"
2325 ],
2326 "support": {
2327 "issues": "https://github.com/sebastianbergmann/diff/issues",
2328 "source": "https://github.com/sebastianbergmann/diff/tree/1.4"
2329 },
2330 "install-path": "../sebastian/diff"
2331 },
2332 {
2333 "name": "sebastian/environment",
2334 "version": "2.0.0",
2335 "version_normalized": "2.0.0.0",
2336 "source": {
2337 "type": "git",
2338 "url": "https://github.com/sebastianbergmann/environment.git",
2339 "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
2340 },
2341 "dist": {
2342 "type": "zip",
2343 "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
2344 "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
2345 "shasum": ""
2346 },
2347 "require": {
2348 "php": "^5.6 || ^7.0"
2349 },
2350 "require-dev": {
2351 "phpunit/phpunit": "^5.0"
2352 },
2353 "time": "2016-11-26T07:53:53+00:00",
2354 "type": "library",
2355 "extra": {
2356 "branch-alias": {
2357 "dev-master": "2.0.x-dev"
2358 }
2359 },
2360 "installation-source": "dist",
2361 "autoload": {
2362 "classmap": [
2363 "src/"
2364 ]
2365 },
2366 "notification-url": "https://packagist.org/downloads/",
2367 "license": [
2368 "BSD-3-Clause"
2369 ],
2370 "authors": [
2371 {
2372 "name": "Sebastian Bergmann",
2373 "email": "sebastian@phpunit.de"
2374 }
2375 ],
2376 "description": "Provides functionality to handle HHVM/PHP environments",
2377 "homepage": "http://www.github.com/sebastianbergmann/environment",
2378 "keywords": [
2379 "Xdebug",
2380 "environment",
2381 "hhvm"
2382 ],
2383 "support": {
2384 "issues": "https://github.com/sebastianbergmann/environment/issues",
2385 "source": "https://github.com/sebastianbergmann/environment/tree/master"
2386 },
2387 "install-path": "../sebastian/environment"
2388 },
2389 {
2390 "name": "sebastian/exporter",
2391 "version": "2.0.0",
2392 "version_normalized": "2.0.0.0",
2393 "source": {
2394 "type": "git",
2395 "url": "https://github.com/sebastianbergmann/exporter.git",
2396 "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
2397 },
2398 "dist": {
2399 "type": "zip",
2400 "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
2401 "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
2402 "shasum": ""
2403 },
2404 "require": {
2405 "php": ">=5.3.3",
2406 "sebastian/recursion-context": "~2.0"
2407 },
2408 "require-dev": {
2409 "ext-mbstring": "*",
2410 "phpunit/phpunit": "~4.4"
2411 },
2412 "time": "2016-11-19T08:54:04+00:00",
2413 "type": "library",
2414 "extra": {
2415 "branch-alias": {
2416 "dev-master": "2.0.x-dev"
2417 }
2418 },
2419 "installation-source": "dist",
2420 "autoload": {
2421 "classmap": [
2422 "src/"
2423 ]
2424 },
2425 "notification-url": "https://packagist.org/downloads/",
2426 "license": [
2427 "BSD-3-Clause"
2428 ],
2429 "authors": [
2430 {
2431 "name": "Jeff Welch",
2432 "email": "whatthejeff@gmail.com"
2433 },
2434 {
2435 "name": "Volker Dusch",
2436 "email": "github@wallbash.com"
2437 },
2438 {
2439 "name": "Bernhard Schussek",
2440 "email": "bschussek@2bepublished.at"
2441 },
2442 {
2443 "name": "Sebastian Bergmann",
2444 "email": "sebastian@phpunit.de"
2445 },
2446 {
2447 "name": "Adam Harvey",
2448 "email": "aharvey@php.net"
2449 }
2450 ],
2451 "description": "Provides the functionality to export PHP variables for visualization",
2452 "homepage": "http://www.github.com/sebastianbergmann/exporter",
2453 "keywords": [
2454 "export",
2455 "exporter"
2456 ],
2457 "support": {
2458 "issues": "https://github.com/sebastianbergmann/exporter/issues",
2459 "source": "https://github.com/sebastianbergmann/exporter/tree/master"
2460 },
2461 "install-path": "../sebastian/exporter"
2462 },
2463 {
2464 "name": "sebastian/global-state",
2465 "version": "1.1.1",
2466 "version_normalized": "1.1.1.0",
2467 "source": {
2468 "type": "git",
2469 "url": "https://github.com/sebastianbergmann/global-state.git",
2470 "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
2471 },
2472 "dist": {
2473 "type": "zip",
2474 "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
2475 "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
2476 "shasum": ""
2477 },
2478 "require": {
2479 "php": ">=5.3.3"
2480 },
2481 "require-dev": {
2482 "phpunit/phpunit": "~4.2"
2483 },
2484 "suggest": {
2485 "ext-uopz": "*"
2486 },
2487 "time": "2015-10-12T03:26:01+00:00",
2488 "type": "library",
2489 "extra": {
2490 "branch-alias": {
2491 "dev-master": "1.0-dev"
2492 }
2493 },
2494 "installation-source": "dist",
2495 "autoload": {
2496 "classmap": [
2497 "src/"
2498 ]
2499 },
2500 "notification-url": "https://packagist.org/downloads/",
2501 "license": [
2502 "BSD-3-Clause"
2503 ],
2504 "authors": [
2505 {
2506 "name": "Sebastian Bergmann",
2507 "email": "sebastian@phpunit.de"
2508 }
2509 ],
2510 "description": "Snapshotting of global state",
2511 "homepage": "http://www.github.com/sebastianbergmann/global-state",
2512 "keywords": [
2513 "global state"
2514 ],
2515 "support": {
2516 "issues": "https://github.com/sebastianbergmann/global-state/issues",
2517 "source": "https://github.com/sebastianbergmann/global-state/tree/1.1.1"
2518 },
2519 "install-path": "../sebastian/global-state"
2520 },
2521 {
2522 "name": "sebastian/object-enumerator",
2523 "version": "2.0.1",
2524 "version_normalized": "2.0.1.0",
2525 "source": {
2526 "type": "git",
2527 "url": "https://github.com/sebastianbergmann/object-enumerator.git",
2528 "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
2529 },
2530 "dist": {
2531 "type": "zip",
2532 "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
2533 "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
2534 "shasum": ""
2535 },
2536 "require": {
2537 "php": ">=5.6",
2538 "sebastian/recursion-context": "~2.0"
2539 },
2540 "require-dev": {
2541 "phpunit/phpunit": "~5"
2542 },
2543 "time": "2017-02-18T15:18:39+00:00",
2544 "type": "library",
2545 "extra": {
2546 "branch-alias": {
2547 "dev-master": "2.0.x-dev"
2548 }
2549 },
2550 "installation-source": "dist",
2551 "autoload": {
2552 "classmap": [
2553 "src/"
2554 ]
2555 },
2556 "notification-url": "https://packagist.org/downloads/",
2557 "license": [
2558 "BSD-3-Clause"
2559 ],
2560 "authors": [
2561 {
2562 "name": "Sebastian Bergmann",
2563 "email": "sebastian@phpunit.de"
2564 }
2565 ],
2566 "description": "Traverses array structures and object graphs to enumerate all referenced objects",
2567 "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
2568 "support": {
2569 "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
2570 "source": "https://github.com/sebastianbergmann/object-enumerator/tree/master"
2571 },
2572 "install-path": "../sebastian/object-enumerator"
2573 },
2574 {
2575 "name": "sebastian/recursion-context",
2576 "version": "2.0.0",
2577 "version_normalized": "2.0.0.0",
2578 "source": {
2579 "type": "git",
2580 "url": "https://github.com/sebastianbergmann/recursion-context.git",
2581 "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
2582 },
2583 "dist": {
2584 "type": "zip",
2585 "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
2586 "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
2587 "shasum": ""
2588 },
2589 "require": {
2590 "php": ">=5.3.3"
2591 },
2592 "require-dev": {
2593 "phpunit/phpunit": "~4.4"
2594 },
2595 "time": "2016-11-19T07:33:16+00:00",
2596 "type": "library",
2597 "extra": {
2598 "branch-alias": {
2599 "dev-master": "2.0.x-dev"
2600 }
2601 },
2602 "installation-source": "dist",
2603 "autoload": {
2604 "classmap": [
2605 "src/"
2606 ]
2607 },
2608 "notification-url": "https://packagist.org/downloads/",
2609 "license": [
2610 "BSD-3-Clause"
2611 ],
2612 "authors": [
2613 {
2614 "name": "Jeff Welch",
2615 "email": "whatthejeff@gmail.com"
2616 },
2617 {
2618 "name": "Sebastian Bergmann",
2619 "email": "sebastian@phpunit.de"
2620 },
2621 {
2622 "name": "Adam Harvey",
2623 "email": "aharvey@php.net"
2624 }
2625 ],
2626 "description": "Provides functionality to recursively process PHP variables",
2627 "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
2628 "support": {
2629 "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
2630 "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
2631 },
2632 "install-path": "../sebastian/recursion-context"
2633 },
2634 {
2635 "name": "sebastian/resource-operations",
2636 "version": "1.0.0",
2637 "version_normalized": "1.0.0.0",
2638 "source": {
2639 "type": "git",
2640 "url": "https://github.com/sebastianbergmann/resource-operations.git",
2641 "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
2642 },
2643 "dist": {
2644 "type": "zip",
2645 "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
2646 "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
2647 "shasum": ""
2648 },
2649 "require": {
2650 "php": ">=5.6.0"
2651 },
2652 "time": "2015-07-28T20:34:47+00:00",
2653 "type": "library",
2654 "extra": {
2655 "branch-alias": {
2656 "dev-master": "1.0.x-dev"
2657 }
2658 },
2659 "installation-source": "dist",
2660 "autoload": {
2661 "classmap": [
2662 "src/"
2663 ]
2664 },
2665 "notification-url": "https://packagist.org/downloads/",
2666 "license": [
2667 "BSD-3-Clause"
2668 ],
2669 "authors": [
2670 {
2671 "name": "Sebastian Bergmann",
2672 "email": "sebastian@phpunit.de"
2673 }
2674 ],
2675 "description": "Provides a list of PHP built-in functions that operate on resources",
2676 "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
2677 "support": {
2678 "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
2679 "source": "https://github.com/sebastianbergmann/resource-operations/tree/master"
2680 },
2681 "install-path": "../sebastian/resource-operations"
2682 },
2683 {
2684 "name": "sebastian/version",
2685 "version": "2.0.1",
2686 "version_normalized": "2.0.1.0",
2687 "source": {
2688 "type": "git",
2689 "url": "https://github.com/sebastianbergmann/version.git",
2690 "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
2691 },
2692 "dist": {
2693 "type": "zip",
2694 "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
2695 "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
2696 "shasum": ""
2697 },
2698 "require": {
2699 "php": ">=5.6"
2700 },
2701 "time": "2016-10-03T07:35:21+00:00",
2702 "type": "library",
2703 "extra": {
2704 "branch-alias": {
2705 "dev-master": "2.0.x-dev"
2706 }
2707 },
2708 "installation-source": "dist",
2709 "autoload": {
2710 "classmap": [
2711 "src/"
2712 ]
2713 },
2714 "notification-url": "https://packagist.org/downloads/",
2715 "license": [
2716 "BSD-3-Clause"
2717 ],
2718 "authors": [
2719 {
2720 "name": "Sebastian Bergmann",
2721 "email": "sebastian@phpunit.de",
2722 "role": "lead"
2723 }
2724 ],
2725 "description": "Library that helps with managing the version number of Git-hosted PHP projects",
2726 "homepage": "https://github.com/sebastianbergmann/version",
2727 "support": {
2728 "issues": "https://github.com/sebastianbergmann/version/issues",
2729 "source": "https://github.com/sebastianbergmann/version/tree/master"
2730 },
2731 "install-path": "../sebastian/version"
2732 },
2733 {
2734 "name": "symfony/polyfill-ctype",
2735 "version": "v1.28.0",
2736 "version_normalized": "1.28.0.0",
2737 "source": {
2738 "type": "git",
2739 "url": "https://github.com/symfony/polyfill-ctype.git",
2740 "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
2741 },
2742 "dist": {
2743 "type": "zip",
2744 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
2745 "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
2746 "shasum": ""
2747 },
2748 "require": {
2749 "php": ">=7.1"
2750 },
2751 "provide": {
2752 "ext-ctype": "*"
2753 },
2754 "suggest": {
2755 "ext-ctype": "For best performance"
2756 },
2757 "time": "2023-01-26T09:26:14+00:00",
2758 "type": "library",
2759 "extra": {
2760 "branch-alias": {
2761 "dev-main": "1.28-dev"
2762 },
2763 "thanks": {
2764 "name": "symfony/polyfill",
2765 "url": "https://github.com/symfony/polyfill"
2766 }
2767 },
2768 "installation-source": "dist",
2769 "autoload": {
2770 "files": [
2771 "bootstrap.php"
2772 ],
2773 "psr-4": {
2774 "Symfony\\Polyfill\\Ctype\\": ""
2775 }
2776 },
2777 "notification-url": "https://packagist.org/downloads/",
2778 "license": [
2779 "MIT"
2780 ],
2781 "authors": [
2782 {
2783 "name": "Gert de Pagter",
2784 "email": "BackEndTea@gmail.com"
2785 },
2786 {
2787 "name": "Symfony Community",
2788 "homepage": "https://symfony.com/contributors"
2789 }
2790 ],
2791 "description": "Symfony polyfill for ctype functions",
2792 "homepage": "https://symfony.com",
2793 "keywords": [
2794 "compatibility",
2795 "ctype",
2796 "polyfill",
2797 "portable"
2798 ],
2799 "support": {
2800 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
2801 },
2802 "funding": [
2803 {
2804 "url": "https://symfony.com/sponsor",
2805 "type": "custom"
2806 },
2807 {
2808 "url": "https://github.com/fabpot",
2809 "type": "github"
2810 },
2811 {
2812 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2813 "type": "tidelift"
2814 }
2815 ],
2816 "install-path": "../symfony/polyfill-ctype"
2817 },
2818 {
2819 "name": "symfony/yaml",
2820 "version": "v4.4.45",
2821 "version_normalized": "4.4.45.0",
2822 "source": {
2823 "type": "git",
2824 "url": "https://github.com/symfony/yaml.git",
2825 "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
2826 },
2827 "dist": {
2828 "type": "zip",
2829 "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
2830 "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
2831 "shasum": ""
2832 },
2833 "require": {
2834 "php": ">=7.1.3",
2835 "symfony/polyfill-ctype": "~1.8"
2836 },
2837 "conflict": {
2838 "symfony/console": "<3.4"
2839 },
2840 "require-dev": {
2841 "symfony/console": "^3.4|^4.0|^5.0"
2842 },
2843 "suggest": {
2844 "symfony/console": "For validating YAML files using the lint command"
2845 },
2846 "time": "2022-08-02T15:47:23+00:00",
2847 "type": "library",
2848 "installation-source": "dist",
2849 "autoload": {
2850 "psr-4": {
2851 "Symfony\\Component\\Yaml\\": ""
2852 },
2853 "exclude-from-classmap": [
2854 "/Tests/"
2855 ]
2856 },
2857 "notification-url": "https://packagist.org/downloads/",
2858 "license": [
2859 "MIT"
2860 ],
2861 "authors": [
2862 {
2863 "name": "Fabien Potencier",
2864 "email": "fabien@symfony.com"
2865 },
2866 {
2867 "name": "Symfony Community",
2868 "homepage": "https://symfony.com/contributors"
2869 }
2870 ],
2871 "description": "Loads and dumps YAML files",
2872 "homepage": "https://symfony.com",
2873 "support": {
2874 "source": "https://github.com/symfony/yaml/tree/v4.4.45"
2875 },
2876 "funding": [
2877 {
2878 "url": "https://symfony.com/sponsor",
2879 "type": "custom"
2880 },
2881 {
2882 "url": "https://github.com/fabpot",
2883 "type": "github"
2884 },
2885 {
2886 "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2887 "type": "tidelift"
2888 }
2889 ],
2890 "install-path": "../symfony/yaml"
2891 },
2892 {
2893 "name": "takika/rc_foldersort",
2894 "version": "1.0",
2895 "version_normalized": "1.0.0.0",
2896 "source": {
2897 "type": "git",
2898 "url": "https://github.com/Takika/rc_foldersort.git",
2899 "reference": "dad5b5466e6ba233b2d63ba46cc04d46099fbe8e"
2900 },
2901 "dist": {
2902 "type": "zip",
2903 "url": "https://api.github.com/repos/Takika/rc_foldersort/zipball/dad5b5466e6ba233b2d63ba46cc04d46099fbe8e",
2904 "reference": "dad5b5466e6ba233b2d63ba46cc04d46099fbe8e",
2905 "shasum": ""
2906 },
2907 "require": {
2908 "php": ">=5.3.0",
2909 "roundcube/plugin-installer": ">=0.1.3"
2910 },
2911 "time": "2015-01-02T01:09:17+00:00",
2912 "type": "roundcube-plugin",
2913 "installation-source": "dist",
2914 "notification-url": "https://plugins.roundcube.net/downloads/",
2915 "license": [
2916 "AGPLv3"
2917 ],
2918 "authors": [
2919 {
2920 "name": "Sandor Takacs",
2921 "email": "taki@alkoholista.hu",
2922 "role": "Developer"
2923 }
2924 ],
2925 "description": "Roundcube webmail plugin to do per-folder sorting",
2926 "homepage": "https://github.com/Takika/rc_foldersort",
2927 "install-path": "../../plugins/rc_foldersort"
2928 },
2929 {
2930 "name": "webmozart/assert",
2931 "version": "1.11.0",
2932 "version_normalized": "1.11.0.0",
2933 "source": {
2934 "type": "git",
2935 "url": "https://github.com/webmozarts/assert.git",
2936 "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
2937 },
2938 "dist": {
2939 "type": "zip",
2940 "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
2941 "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
2942 "shasum": ""
2943 },
2944 "require": {
2945 "ext-ctype": "*",
2946 "php": "^7.2 || ^8.0"
2947 },
2948 "conflict": {
2949 "phpstan/phpstan": "<0.12.20",
2950 "vimeo/psalm": "<4.6.1 || 4.6.2"
2951 },
2952 "require-dev": {
2953 "phpunit/phpunit": "^8.5.13"
2954 },
2955 "time": "2022-06-03T18:03:27+00:00",
2956 "type": "library",
2957 "extra": {
2958 "branch-alias": {
2959 "dev-master": "1.10-dev"
2960 }
2961 },
2962 "installation-source": "dist",
2963 "autoload": {
2964 "psr-4": {
2965 "Webmozart\\Assert\\": "src/"
2966 }
2967 },
2968 "notification-url": "https://packagist.org/downloads/",
2969 "license": [
2970 "MIT"
2971 ],
2972 "authors": [
2973 {
2974 "name": "Bernhard Schussek",
2975 "email": "bschussek@gmail.com"
2976 }
2977 ],
2978 "description": "Assertions to validate method input/output with nice error messages.",
2979 "keywords": [
2980 "assert",
2981 "check",
2982 "validate"
2983 ],
2984 "support": {
2985 "issues": "https://github.com/webmozarts/assert/issues",
2986 "source": "https://github.com/webmozarts/assert/tree/1.11.0"
2987 },
2988 "install-path": "../webmozart/assert"
2989 },
2990 {
2991 "name": "weird-birds/thunderbird_labels",
2992 "version": "v1.1.4",
2993 "version_normalized": "1.1.4.0",
2994 "source": {
2995 "type": "git",
2996 "url": "https://github.com/mike-kfed/rcmail-thunderbird-labels.git",
2997 "reference": "eef4c17068b2228e1379f321a6f2923e4185b950"
2998 },
2999 "dist": {
3000 "type": "zip",
3001 "url": "https://api.github.com/repos/mike-kfed/rcmail-thunderbird-labels/zipball/eef4c17068b2228e1379f321a6f2923e4185b950",
3002 "reference": "eef4c17068b2228e1379f321a6f2923e4185b950",
3003 "shasum": ""
3004 },
3005 "require": {
3006 "roundcube/plugin-installer": ">=0.1.3"
3007 },
3008 "time": "2017-11-17T09:55:56+00:00",
3009 "type": "roundcube-plugin",
3010 "installation-source": "dist",
3011 "notification-url": "https://plugins.roundcube.net/downloads/",
3012 "license": [
3013 "BSD-2-Clause"
3014 ],
3015 "authors": [
3016 {
3017 "name": "Michael Kefeder",
3018 "homepage": "https://github.com/mike-kfed/rcmail-thunderbird-labels",
3019 "role": "Developer"
3020 }
3021 ],
3022 "keywords": [
3023 "labels",
3024 "mail",
3025 "tags"
3026 ],
3027 "install-path": "../../plugins/thunderbird_labels"
3028 }
40 ], 3029 ],
41 "authors": [ 3030 "dev": true,
42 { 3031 "dev-package-names": [
43 "name": "Nils Adermann", 3032 "doctrine/deprecations",
44 "email": "naderman@naderman.de", 3033 "doctrine/instantiator",
45 "homepage": "http://www.naderman.de" 3034 "myclabs/deep-copy",
46 }, 3035 "phpdocumentor/reflection-common",
47 { 3036 "phpdocumentor/reflection-docblock",
48 "name": "Jordi Boggiano", 3037 "phpdocumentor/type-resolver",
49 "email": "j.boggiano@seld.be", 3038 "phpspec/prophecy",
50 "homepage": "http://seld.be" 3039 "phpstan/phpdoc-parser",
51 }, 3040 "phpunit/php-code-coverage",
52 { 3041 "phpunit/php-file-iterator",
53 "name": "Rob Bast", 3042 "phpunit/php-text-template",
54 "email": "rob.bast@gmail.com", 3043 "phpunit/php-timer",
55 "homepage": "http://robbast.nl" 3044 "phpunit/php-token-stream",
56 } 3045 "phpunit/phpunit",
57 ], 3046 "phpunit/phpunit-mock-objects",
58 "description": "Semver library that offers utilities, version constraint parsing and validation.", 3047 "sabre/vobject",
59 "keywords": [ 3048 "sebastian/code-unit-reverse-lookup",
60 "semantic", 3049 "sebastian/comparator",
61 "semver", 3050 "sebastian/diff",
62 "validation", 3051 "sebastian/environment",
63 "versioning" 3052 "sebastian/exporter",
3053 "sebastian/global-state",
3054 "sebastian/object-enumerator",
3055 "sebastian/recursion-context",
3056 "sebastian/resource-operations",
3057 "sebastian/version",
3058 "symfony/polyfill-ctype",
3059 "symfony/yaml",
3060 "webmozart/assert"
64 ] 3061 ]
65 }, 3062 }
66 {
67 "name": "roundcube/plugin-installer",
68 "version": "0.1.9",
69 "version_normalized": "0.1.9.0",
70 "source": {
71 "type": "git",
72 "url": "https://github.com/roundcube/plugin-installer.git",
73 "reference": "782420af7fb3f24295a61101d7e9296110c894e4"
74 },
75 "dist": {
76 "type": "zip",
77 "url": "https://api.github.com/repos/roundcube/plugin-installer/zipball/782420af7fb3f24295a61101d7e9296110c894e4",
78 "reference": "782420af7fb3f24295a61101d7e9296110c894e4",
79 "shasum": ""
80 },
81 "require": {
82 "composer/semver": "^1.4.2",
83 "php": ">=5.3.0"
84 },
85 "require-dev": {
86 "composer/composer": "*"
87 },
88 "time": "2017-10-29T16:13:28+00:00",
89 "bin": [
90 "src/bin/rcubeinitdb.sh"
91 ],
92 "type": "composer-installer",
93 "extra": {
94 "class": "Roundcube\\Composer\\PluginInstaller"
95 },
96 "installation-source": "dist",
97 "autoload": {
98 "psr-0": {
99 "Roundcube\\Composer": "src/"
100 }
101 },
102 "notification-url": "https://plugins.roundcube.net/downloads/",
103 "license": [
104 "GPL-3.0+"
105 ],
106 "authors": [
107 {
108 "name": "Till Klampaeckel",
109 "email": "till@php.net"
110 },
111 {
112 "name": "Thomas Bruederli",
113 "email": "thomas@roundcube.net"
114 }
115 ],
116 "description": "A composer-installer for Roundcube plugins."
117 },
118 {
119 "name": "pear/pear_exception",
120 "version": "v1.0.0",
121 "version_normalized": "1.0.0.0",
122 "source": {
123 "type": "git",
124 "url": "https://github.com/pear/PEAR_Exception.git",
125 "reference": "8c18719fdae000b690e3912be401c76e406dd13b"
126 },
127 "dist": {
128 "type": "zip",
129 "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b",
130 "reference": "8c18719fdae000b690e3912be401c76e406dd13b",
131 "shasum": ""
132 },
133 "require": {
134 "php": ">=4.4.0"
135 },
136 "require-dev": {
137 "phpunit/phpunit": "*"
138 },
139 "time": "2015-02-10T20:07:52+00:00",
140 "type": "class",
141 "extra": {
142 "branch-alias": {
143 "dev-master": "1.0.x-dev"
144 }
145 },
146 "installation-source": "dist",
147 "autoload": {
148 "psr-0": {
149 "PEAR": ""
150 }
151 },
152 "notification-url": "https://packagist.org/downloads/",
153 "include-path": [
154 "."
155 ],
156 "license": [
157 "BSD-2-Clause"
158 ],
159 "authors": [
160 {
161 "name": "Helgi Thormar",
162 "email": "dufuz@php.net"
163 },
164 {
165 "name": "Greg Beaver",
166 "email": "cellog@php.net"
167 }
168 ],
169 "description": "The PEAR Exception base class.",
170 "homepage": "https://github.com/pear/PEAR_Exception",
171 "keywords": [
172 "exception"
173 ]
174 },
175 {
176 "name": "pear/auth_sasl",
177 "version": "v1.1.0",
178 "version_normalized": "1.1.0.0",
179 "source": {
180 "type": "git",
181 "url": "https://github.com/pear/Auth_SASL.git",
182 "reference": "db1ead3dc0bf986d2bab0dbc04d114800cf91dee"
183 },
184 "dist": {
185 "type": "zip",
186 "url": "https://api.github.com/repos/pear/Auth_SASL/zipball/db1ead3dc0bf986d2bab0dbc04d114800cf91dee",
187 "reference": "db1ead3dc0bf986d2bab0dbc04d114800cf91dee",
188 "shasum": ""
189 },
190 "require": {
191 "pear/pear_exception": "@stable"
192 },
193 "require-dev": {
194 "phpunit/phpunit": "@stable"
195 },
196 "time": "2017-03-07T14:37:05+00:00",
197 "type": "library",
198 "installation-source": "dist",
199 "autoload": {
200 "psr-0": {
201 "Auth": "./"
202 }
203 },
204 "notification-url": "https://packagist.org/downloads/",
205 "include-path": [
206 "./"
207 ],
208 "license": [
209 "BSD"
210 ],
211 "authors": [
212 {
213 "name": "Anish Mistry",
214 "email": "amistry@am-productions.biz",
215 "role": "Lead"
216 },
217 {
218 "name": "Richard Heyes",
219 "email": "richard@php.net",
220 "role": "Lead"
221 },
222 {
223 "name": "Michael Bretterklieber",
224 "email": "michael@bretterklieber.com",
225 "role": "Lead"
226 }
227 ],
228 "description": "Abstraction of various SASL mechanism responses"
229 },
230 {
231 "name": "pear/net_idna2",
232 "version": "v0.2.0",
233 "version_normalized": "0.2.0.0",
234 "source": {
235 "type": "git",
236 "url": "https://github.com/pear/Net_IDNA2.git",
237 "reference": "51734eaf8be2df58e8aad5835b9966459b2fb37c"
238 },
239 "dist": {
240 "type": "zip",
241 "url": "https://api.github.com/repos/pear/Net_IDNA2/zipball/51734eaf8be2df58e8aad5835b9966459b2fb37c",
242 "reference": "51734eaf8be2df58e8aad5835b9966459b2fb37c",
243 "shasum": ""
244 },
245 "require": {
246 "pear/pear_exception": "@stable"
247 },
248 "require-dev": {
249 "phpunit/phpunit": "^4"
250 },
251 "time": "2017-03-06T20:46:41+00:00",
252 "type": "library",
253 "installation-source": "dist",
254 "autoload": {
255 "psr-0": {
256 "Net": "./"
257 }
258 },
259 "notification-url": "https://packagist.org/downloads/",
260 "include-path": [
261 "./"
262 ],
263 "license": [
264 "LGPL"
265 ],
266 "authors": [
267 {
268 "name": "Stefan Neufeind",
269 "email": "pear.neufeind@speedpartner.de",
270 "role": "Lead"
271 },
272 {
273 "name": "Daniel O'Connor",
274 "email": "daniel.oconnor@gmail.com",
275 "role": "Lead"
276 }
277 ],
278 "description": "More info available on: https://pear.php.net/package/Net_IDNA2"
279 },
280 {
281 "name": "pear/console_commandline",
282 "version": "v1.2.2",
283 "version_normalized": "1.2.2.0",
284 "source": {
285 "type": "git",
286 "url": "https://github.com/pear/Console_CommandLine.git",
287 "reference": "7a8afa50bdc8dbfdc0cf394f1101106e8b8f8e67"
288 },
289 "dist": {
290 "type": "zip",
291 "url": "https://api.github.com/repos/pear/Console_CommandLine/zipball/7a8afa50bdc8dbfdc0cf394f1101106e8b8f8e67",
292 "reference": "7a8afa50bdc8dbfdc0cf394f1101106e8b8f8e67",
293 "shasum": ""
294 },
295 "require": {
296 "ext-dom": "*",
297 "ext-xml": "*",
298 "pear/pear_exception": "^1.0.0",
299 "php": ">=5.3.0"
300 },
301 "require-dev": {
302 "phpunit/phpunit": "*"
303 },
304 "time": "2016-07-14T06:00:57+00:00",
305 "type": "library",
306 "installation-source": "dist",
307 "autoload": {
308 "psr-0": {
309 "Console": "./"
310 }
311 },
312 "notification-url": "https://packagist.org/downloads/",
313 "include-path": [
314 ""
315 ],
316 "license": [
317 "MIT"
318 ],
319 "authors": [
320 {
321 "name": "Richard Quadling",
322 "email": "RQuadling@GMail.com"
323 },
324 {
325 "name": "David Jean Louis",
326 "email": "izimobil@gmail.com"
327 }
328 ],
329 "description": "A full featured command line options and arguments parser.",
330 "homepage": "https://github.com/pear/Console_CommandLine",
331 "keywords": [
332 "console"
333 ]
334 },
335 {
336 "name": "pear/crypt_gpg",
337 "version": "v1.6.2",
338 "version_normalized": "1.6.2.0",
339 "source": {
340 "type": "git",
341 "url": "https://github.com/pear/Crypt_GPG.git",
342 "reference": "43066ee0f1cad38aa6cf41ed13db34a2792e527d"
343 },
344 "dist": {
345 "type": "zip",
346 "url": "https://api.github.com/repos/pear/Crypt_GPG/zipball/43066ee0f1cad38aa6cf41ed13db34a2792e527d",
347 "reference": "43066ee0f1cad38aa6cf41ed13db34a2792e527d",
348 "shasum": ""
349 },
350 "require": {
351 "ext-mbstring": "*",
352 "pear/console_commandline": "*",
353 "pear/pear_exception": "*",
354 "php": ">=5.4.8"
355 },
356 "require-dev": {
357 "phpunit/phpunit": "*"
358 },
359 "suggest": {
360 "ext-posix": "May require the posix PHP extension"
361 },
362 "time": "2017-09-03T07:55:02+00:00",
363 "bin": [
364 "scripts/crypt-gpg-pinentry"
365 ],
366 "type": "library",
367 "installation-source": "dist",
368 "autoload": {
369 "psr-0": {
370 "Crypt": "./"
371 }
372 },
373 "notification-url": "https://packagist.org/downloads/",
374 "include-path": [
375 "./"
376 ],
377 "license": [
378 "LGPL-2.1"
379 ],
380 "authors": [
381 {
382 "name": "Michael Gauthier",
383 "email": "mike@silverorange.com"
384 },
385 {
386 "name": "Nathan Fredrickson",
387 "email": "nathan@silverorange.com"
388 },
389 {
390 "name": "Aleksander Machniak",
391 "email": "alec@alec.pl"
392 }
393 ],
394 "description": "Provides an object oriented interface to the GNU Privacy Guard (GnuPG). It requires the GnuPG executable to be on the system.",
395 "homepage": "https://github.com/pear/Crypt_GPG",
396 "keywords": [
397 "PGP",
398 "encryption",
399 "gnupg",
400 "gpg"
401 ]
402 },
403 {
404 "name": "pear/net_socket",
405 "version": "v1.2.1",
406 "version_normalized": "1.2.1.0",
407 "source": {
408 "type": "git",
409 "url": "https://github.com/pear/Net_Socket.git",
410 "reference": "f31d75ac352d49908f8987bbb1496c02a409812a"
411 },
412 "dist": {
413 "type": "zip",
414 "url": "https://api.github.com/repos/pear/Net_Socket/zipball/f31d75ac352d49908f8987bbb1496c02a409812a",
415 "reference": "f31d75ac352d49908f8987bbb1496c02a409812a",
416 "shasum": ""
417 },
418 "require": {
419 "pear/pear_exception": "@stable",
420 "php": ">=5.4.0"
421 },
422 "require-dev": {
423 "phpunit/phpunit": "^4"
424 },
425 "time": "2017-04-06T15:16:38+00:00",
426 "type": "library",
427 "installation-source": "dist",
428 "autoload": {
429 "psr-0": {
430 "Net": "./"
431 }
432 },
433 "notification-url": "https://packagist.org/downloads/",
434 "include-path": [
435 "./"
436 ],
437 "license": [
438 "BSD-2-Clause"
439 ],
440 "authors": [
441 {
442 "name": "Chuck Hagenbuch",
443 "email": "chuck@horde.org",
444 "role": "Lead"
445 },
446 {
447 "name": "Aleksander Machniak",
448 "email": "alec@php.net",
449 "role": "Lead"
450 },
451 {
452 "name": "Stig Bakken",
453 "email": "stig@php.net",
454 "role": "Lead"
455 }
456 ],
457 "description": "More info available on: http://pear.php.net/package/Net_Socket"
458 },
459 {
460 "name": "pear/console_getopt",
461 "version": "v1.4.1",
462 "version_normalized": "1.4.1.0",
463 "source": {
464 "type": "git",
465 "url": "https://github.com/pear/Console_Getopt.git",
466 "reference": "82f05cd1aa3edf34e19aa7c8ca312ce13a6a577f"
467 },
468 "dist": {
469 "type": "zip",
470 "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/82f05cd1aa3edf34e19aa7c8ca312ce13a6a577f",
471 "reference": "82f05cd1aa3edf34e19aa7c8ca312ce13a6a577f",
472 "shasum": ""
473 },
474 "time": "2015-07-20T20:28:12+00:00",
475 "type": "library",
476 "installation-source": "dist",
477 "autoload": {
478 "psr-0": {
479 "Console": "./"
480 }
481 },
482 "notification-url": "https://packagist.org/downloads/",
483 "include-path": [
484 "./"
485 ],
486 "license": [
487 "BSD-2-Clause"
488 ],
489 "authors": [
490 {
491 "name": "Greg Beaver",
492 "email": "cellog@php.net",
493 "role": "Helper"
494 },
495 {
496 "name": "Andrei Zmievski",
497 "email": "andrei@php.net",
498 "role": "Lead"
499 },
500 {
501 "name": "Stig Bakken",
502 "email": "stig@php.net",
503 "role": "Developer"
504 }
505 ],
506 "description": "More info available on: http://pear.php.net/package/Console_Getopt"
507 },
508 {
509 "name": "pear/pear-core-minimal",
510 "version": "v1.10.3",
511 "version_normalized": "1.10.3.0",
512 "source": {
513 "type": "git",
514 "url": "https://github.com/pear/pear-core-minimal.git",
515 "reference": "070f0b600b2caca2501e2c9b7e553016e4b0d115"
516 },
517 "dist": {
518 "type": "zip",
519 "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/070f0b600b2caca2501e2c9b7e553016e4b0d115",
520 "reference": "070f0b600b2caca2501e2c9b7e553016e4b0d115",
521 "shasum": ""
522 },
523 "require": {
524 "pear/console_getopt": "~1.4",
525 "pear/pear_exception": "~1.0"
526 },
527 "replace": {
528 "rsky/pear-core-min": "self.version"
529 },
530 "time": "2017-02-28T16:46:11+00:00",
531 "type": "library",
532 "installation-source": "dist",
533 "autoload": {
534 "psr-0": {
535 "": "src/"
536 }
537 },
538 "notification-url": "https://packagist.org/downloads/",
539 "include-path": [
540 "src/"
541 ],
542 "license": [
543 "BSD-3-Clause"
544 ],
545 "authors": [
546 {
547 "name": "Christian Weiske",
548 "email": "cweiske@php.net",
549 "role": "Lead"
550 }
551 ],
552 "description": "Minimal set of PEAR core files to be used as composer dependency"
553 },
554 {
555 "name": "pear/mail_mime",
556 "version": "1.10.2",
557 "version_normalized": "1.10.2.0",
558 "source": {
559 "type": "git",
560 "url": "https://github.com/pear/Mail_Mime.git",
561 "reference": "7b2f93fa5219da99e9997f497b916b5bb27eb57a"
562 },
563 "dist": {
564 "type": "zip",
565 "url": "https://api.github.com/repos/pear/Mail_Mime/zipball/7b2f93fa5219da99e9997f497b916b5bb27eb57a",
566 "reference": "7b2f93fa5219da99e9997f497b916b5bb27eb57a",
567 "shasum": ""
568 },
569 "require": {
570 "pear/pear-core-minimal": "*"
571 },
572 "time": "2017-11-17T09:21:45+00:00",
573 "type": "library",
574 "installation-source": "dist",
575 "autoload": {
576 "psr-0": {
577 "Mail": "./"
578 }
579 },
580 "notification-url": "https://packagist.org/downloads/",
581 "include-path": [
582 "./"
583 ],
584 "license": [
585 "BSD-3-clause"
586 ],
587 "authors": [
588 {
589 "name": "Cipriano Groenendal",
590 "email": "cipri@php.net",
591 "role": "Lead"
592 },
593 {
594 "name": "Aleksander Machniak",
595 "email": "alec@php.net",
596 "role": "Lead"
597 }
598 ],
599 "description": "Mail_Mime provides classes to create MIME messages",
600 "homepage": "http://pear.php.net/package/Mail_Mime"
601 },
602 {
603 "name": "pear/net_smtp",
604 "version": "1.7.3",
605 "version_normalized": "1.7.3.0",
606 "source": {
607 "type": "git",
608 "url": "https://github.com/pear/Net_SMTP.git",
609 "reference": "e066e5ee011ae056c03db1a95d210fc09649b477"
610 },
611 "dist": {
612 "type": "zip",
613 "url": "https://api.github.com/repos/pear/Net_SMTP/zipball/e066e5ee011ae056c03db1a95d210fc09649b477",
614 "reference": "e066e5ee011ae056c03db1a95d210fc09649b477",
615 "shasum": ""
616 },
617 "require": {
618 "pear/net_socket": "*",
619 "pear/pear-core-minimal": "*",
620 "php": ">=5.4.0"
621 },
622 "require-dev": {
623 "phpunit/phpunit": "*"
624 },
625 "suggest": {
626 "pear/auth_sasl": "Install optionally via your project's composer.json"
627 },
628 "time": "2017-01-14T18:19:55+00:00",
629 "type": "library",
630 "installation-source": "dist",
631 "autoload": {
632 "psr-0": {
633 "Net": "./"
634 }
635 },
636 "notification-url": "https://packagist.org/downloads/",
637 "include-path": [
638 "./"
639 ],
640 "license": [
641 "PHP-3.01"
642 ],
643 "authors": [
644 {
645 "name": "Jon Parise",
646 "email": "jon@php.net",
647 "homepage": "http://www.indelible.org",
648 "role": "Lead"
649 },
650 {
651 "name": "Chuck Hagenbuch",
652 "email": "chuck@horde.org",
653 "role": "Lead"
654 }
655 ],
656 "description": "An implementation of the SMTP protocol",
657 "homepage": "http://pear.github.io/Net_SMTP/",
658 "keywords": [
659 "email",
660 "mail",
661 "smtp"
662 ]
663 },
664 {
665 "name": "weird-birds/thunderbird_labels",
666 "version": "v1.1.4",
667 "version_normalized": "1.1.4.0",
668 "source": {
669 "type": "git",
670 "url": "https://github.com/mike-kfed/rcmail-thunderbird-labels.git",
671 "reference": "eef4c17068b2228e1379f321a6f2923e4185b950"
672 },
673 "dist": {
674 "type": "zip",
675 "url": "https://api.github.com/repos/mike-kfed/rcmail-thunderbird-labels/zipball/eef4c17068b2228e1379f321a6f2923e4185b950",
676 "reference": "eef4c17068b2228e1379f321a6f2923e4185b950",
677 "shasum": ""
678 },
679 "require": {
680 "roundcube/plugin-installer": ">=0.1.3"
681 },
682 "time": "2017-11-17T09:55:56+00:00",
683 "type": "roundcube-plugin",
684 "installation-source": "dist",
685 "notification-url": "https://plugins.roundcube.net/downloads/",
686 "license": [
687 "BSD-2-Clause"
688 ],
689 "authors": [
690 {
691 "name": "Michael Kefeder",
692 "homepage": "https://github.com/mike-kfed/rcmail-thunderbird-labels",
693 "role": "Developer"
694 }
695 ],
696 "keywords": [
697 "labels",
698 "mail",
699 "tags"
700 ]
701 },
702 {
703 "name": "johndoh/contextmenu",
704 "version": "2.3",
705 "version_normalized": "2.3.0.0",
706 "source": {
707 "type": "git",
708 "url": "https://github.com/JohnDoh/roundcube-contextmenu.git",
709 "reference": "7a03909260638a6ae05567b091dc120b653b1330"
710 },
711 "dist": {
712 "type": "zip",
713 "url": "https://api.github.com/repos/JohnDoh/roundcube-contextmenu/zipball/7a03909260638a6ae05567b091dc120b653b1330",
714 "reference": "7a03909260638a6ae05567b091dc120b653b1330",
715 "shasum": ""
716 },
717 "require": {
718 "php": ">=5.2.1",
719 "roundcube/plugin-installer": ">=0.1.2"
720 },
721 "time": "2017-06-14T05:37:14+00:00",
722 "type": "roundcube-plugin",
723 "extra": {
724 "roundcube": {
725 "min-version": "1.3"
726 }
727 },
728 "installation-source": "dist",
729 "notification-url": "https://plugins.roundcube.net/downloads/",
730 "license": [
731 "GPL-3.0"
732 ],
733 "authors": [
734 {
735 "name": "Philip Weir",
736 "email": "roundcube@tehinterweb.co.uk",
737 "role": "Developer"
738 }
739 ],
740 "description": "Adds context menus with common tasks to various parts of Roundcube",
741 "homepage": "http://github.com/JohnDoh/Roundcube-Plugin-Context-Menu/",
742 "keywords": [
743 "context",
744 "menu",
745 "right-click"
746 ]
747 },
748 {
749 "name": "sabre/vobject",
750 "version": "3.3.5",
751 "version_normalized": "3.3.5.0",
752 "source": {
753 "type": "git",
754 "url": "https://github.com/sabre-io/vobject.git",
755 "reference": "77cb636a5bde4c19d7522c2c548b258859ddd1ef"
756 },
757 "dist": {
758 "type": "zip",
759 "url": "https://api.github.com/repos/sabre-io/vobject/zipball/77cb636a5bde4c19d7522c2c548b258859ddd1ef",
760 "reference": "77cb636a5bde4c19d7522c2c548b258859ddd1ef",
761 "shasum": ""
762 },
763 "require": {
764 "ext-mbstring": "*",
765 "php": ">=5.3.1"
766 },
767 "require-dev": {
768 "phpunit/phpunit": "*",
769 "squizlabs/php_codesniffer": "*"
770 },
771 "time": "2015-01-10T00:54:52+00:00",
772 "bin": [
773 "bin/vobject",
774 "bin/generate_vcards"
775 ],
776 "type": "library",
777 "extra": {
778 "branch-alias": {
779 "dev-master": "3.2.x-dev"
780 }
781 },
782 "installation-source": "dist",
783 "autoload": {
784 "psr-4": {
785 "Sabre\\VObject\\": "lib/"
786 }
787 },
788 "notification-url": "https://packagist.org/downloads/",
789 "license": [
790 "BSD-3-Clause"
791 ],
792 "authors": [
793 {
794 "name": "Evert Pot",
795 "email": "me@evertpot.com",
796 "homepage": "http://evertpot.com/",
797 "role": "Developer"
798 },
799 {
800 "name": "Dominik Tobschall",
801 "email": "dominik@fruux.com",
802 "homepage": "http://tobschall.de/",
803 "role": "Developer"
804 }
805 ],
806 "description": "The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects",
807 "homepage": "http://sabre.io/vobject/",
808 "keywords": [
809 "VObject",
810 "iCalendar",
811 "jCal",
812 "jCard",
813 "vCard"
814 ]
815 },
816 {
817 "name": "kolab/libcalendaring",
818 "version": "3.3.3",
819 "version_normalized": "3.3.3.0",
820 "source": {
821 "type": "git",
822 "url": "https://github.com/kolab-roundcube-plugins-mirror/libcalendaring.git",
823 "reference": "7ac86cb576c47b74d2a3958c1eaccecfc18b56b1"
824 },
825 "dist": {
826 "type": "zip",
827 "url": "https://api.github.com/repos/kolab-roundcube-plugins-mirror/libcalendaring/zipball/7ac86cb576c47b74d2a3958c1eaccecfc18b56b1",
828 "reference": "7ac86cb576c47b74d2a3958c1eaccecfc18b56b1",
829 "shasum": ""
830 },
831 "require": {
832 "php": ">=5.4.0",
833 "roundcube/plugin-installer": ">=0.1.3",
834 "sabre/vobject": "~3.3.3"
835 },
836 "time": "2017-09-01T09:57:13+00:00",
837 "type": "roundcube-plugin",
838 "extra": {
839 "roundcube": {
840 "min-version": "1.3.0"
841 }
842 },
843 "installation-source": "dist",
844 "notification-url": "https://plugins.roundcube.net/downloads/",
845 "license": [
846 "AGPLv3"
847 ],
848 "authors": [
849 {
850 "name": "Alensader Machniak",
851 "email": "machniak@kolabsys.com",
852 "role": "Lead"
853 }
854 ],
855 "description": "Library providing common functions for calendaring plugins",
856 "homepage": "https://git.kolab.org/diffusion/RPK/"
857 },
858 {
859 "name": "kolab/calendar",
860 "version": "3.3.3",
861 "version_normalized": "3.3.3.0",
862 "source": {
863 "type": "git",
864 "url": "https://github.com/kolab-roundcube-plugins-mirror/calendar.git",
865 "reference": "143128a1a40b254787dd977e0d9003ed9d26a7bf"
866 },
867 "dist": {
868 "type": "zip",
869 "url": "https://api.github.com/repos/kolab-roundcube-plugins-mirror/calendar/zipball/143128a1a40b254787dd977e0d9003ed9d26a7bf",
870 "reference": "143128a1a40b254787dd977e0d9003ed9d26a7bf",
871 "shasum": ""
872 },
873 "require": {
874 "kolab/libcalendaring": ">=3.3.3",
875 "php": ">=5.3.0",
876 "roundcube/plugin-installer": ">=0.1.3"
877 },
878 "time": "2017-09-01T10:00:02+00:00",
879 "type": "roundcube-plugin",
880 "extra": {
881 "roundcube": {
882 "min-version": "1.3.0",
883 "sql-dir": "drivers/database/SQL"
884 }
885 },
886 "installation-source": "dist",
887 "notification-url": "https://plugins.roundcube.net/downloads/",
888 "license": [
889 "AGPLv3"
890 ],
891 "authors": [
892 {
893 "name": "Alensader Machniak",
894 "email": "machniak@kolabsys.com",
895 "role": "Lead"
896 },
897 {
898 "name": "Thomas Bruederli",
899 "email": "thomas@roundcube.net",
900 "role": "Developer"
901 }
902 ],
903 "description": "Calendar plugin",
904 "homepage": "https://git.kolab.org/diffusion/RPK/",
905 "keywords": [
906 "apps",
907 "calendar",
908 "ical",
909 "itip"
910 ]
911 },
912 {
913 "name": "endroid/qr-code",
914 "version": "1.6.6",
915 "version_normalized": "1.6.6.0",
916 "source": {
917 "type": "git",
918 "url": "https://github.com/endroid/qr-code.git",
919 "reference": "cef5d5b7b904d7bb0708eb744c35316364b65fa0"
920 },
921 "dist": {
922 "type": "zip",
923 "url": "https://api.github.com/repos/endroid/qr-code/zipball/cef5d5b7b904d7bb0708eb744c35316364b65fa0",
924 "reference": "cef5d5b7b904d7bb0708eb744c35316364b65fa0",
925 "shasum": ""
926 },
927 "require": {
928 "ext-gd": "*",
929 "php": ">=5.3.0"
930 },
931 "time": "2016-05-29T07:37:18+00:00",
932 "type": "library",
933 "extra": {
934 "branch-alias": {
935 "dev-master": "1.x-dev"
936 }
937 },
938 "installation-source": "dist",
939 "autoload": {
940 "psr-4": {
941 "Endroid\\QrCode\\": "src/"
942 }
943 },
944 "notification-url": "https://packagist.org/downloads/",
945 "license": [
946 "MIT"
947 ],
948 "authors": [
949 {
950 "name": "Jeroen van den Enden",
951 "email": "info@endroid.nl",
952 "homepage": "http://endroid.nl/"
953 }
954 ],
955 "description": "Endroid QR Code",
956 "homepage": "https://github.com/endroid/QrCode",
957 "keywords": [
958 "code",
959 "endroid",
960 "qr",
961 "qrcode"
962 ]
963 },
964 {
965 "name": "phpdocumentor/reflection-common",
966 "version": "1.0.1",
967 "version_normalized": "1.0.1.0",
968 "source": {
969 "type": "git",
970 "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
971 "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
972 },
973 "dist": {
974 "type": "zip",
975 "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
976 "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
977 "shasum": ""
978 },
979 "require": {
980 "php": ">=5.5"
981 },
982 "require-dev": {
983 "phpunit/phpunit": "^4.6"
984 },
985 "time": "2017-09-11T18:02:19+00:00",
986 "type": "library",
987 "extra": {
988 "branch-alias": {
989 "dev-master": "1.0.x-dev"
990 }
991 },
992 "installation-source": "dist",
993 "autoload": {
994 "psr-4": {
995 "phpDocumentor\\Reflection\\": [
996 "src"
997 ]
998 }
999 },
1000 "notification-url": "https://packagist.org/downloads/",
1001 "license": [
1002 "MIT"
1003 ],
1004 "authors": [
1005 {
1006 "name": "Jaap van Otterdijk",
1007 "email": "opensource@ijaap.nl"
1008 }
1009 ],
1010 "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
1011 "homepage": "http://www.phpdoc.org",
1012 "keywords": [
1013 "FQSEN",
1014 "phpDocumentor",
1015 "phpdoc",
1016 "reflection",
1017 "static analysis"
1018 ]
1019 },
1020 {
1021 "name": "phpdocumentor/type-resolver",
1022 "version": "0.4.0",
1023 "version_normalized": "0.4.0.0",
1024 "source": {
1025 "type": "git",
1026 "url": "https://github.com/phpDocumentor/TypeResolver.git",
1027 "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
1028 },
1029 "dist": {
1030 "type": "zip",
1031 "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
1032 "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
1033 "shasum": ""
1034 },
1035 "require": {
1036 "php": "^5.5 || ^7.0",
1037 "phpdocumentor/reflection-common": "^1.0"
1038 },
1039 "require-dev": {
1040 "mockery/mockery": "^0.9.4",
1041 "phpunit/phpunit": "^5.2||^4.8.24"
1042 },
1043 "time": "2017-07-14T14:27:02+00:00",
1044 "type": "library",
1045 "extra": {
1046 "branch-alias": {
1047 "dev-master": "1.0.x-dev"
1048 }
1049 },
1050 "installation-source": "dist",
1051 "autoload": {
1052 "psr-4": {
1053 "phpDocumentor\\Reflection\\": [
1054 "src/"
1055 ]
1056 }
1057 },
1058 "notification-url": "https://packagist.org/downloads/",
1059 "license": [
1060 "MIT"
1061 ],
1062 "authors": [
1063 {
1064 "name": "Mike van Riel",
1065 "email": "me@mikevanriel.com"
1066 }
1067 ]
1068 },
1069 {
1070 "name": "phpdocumentor/reflection-docblock",
1071 "version": "3.3.2",
1072 "version_normalized": "3.3.2.0",
1073 "source": {
1074 "type": "git",
1075 "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
1076 "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2"
1077 },
1078 "dist": {
1079 "type": "zip",
1080 "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2",
1081 "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2",
1082 "shasum": ""
1083 },
1084 "require": {
1085 "php": "^5.6 || ^7.0",
1086 "phpdocumentor/reflection-common": "^1.0.0",
1087 "phpdocumentor/type-resolver": "^0.4.0",
1088 "webmozart/assert": "^1.0"
1089 },
1090 "require-dev": {
1091 "mockery/mockery": "^0.9.4",
1092 "phpunit/phpunit": "^4.4"
1093 },
1094 "time": "2017-11-10T14:09:06+00:00",
1095 "type": "library",
1096 "installation-source": "dist",
1097 "autoload": {
1098 "psr-4": {
1099 "phpDocumentor\\Reflection\\": [
1100 "src/"
1101 ]
1102 }
1103 },
1104 "notification-url": "https://packagist.org/downloads/",
1105 "license": [
1106 "MIT"
1107 ],
1108 "authors": [
1109 {
1110 "name": "Mike van Riel",
1111 "email": "me@mikevanriel.com"
1112 }
1113 ],
1114 "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock."
1115 },
1116 {
1117 "name": "phpunit/php-token-stream",
1118 "version": "1.4.12",
1119 "version_normalized": "1.4.12.0",
1120 "source": {
1121 "type": "git",
1122 "url": "https://github.com/sebastianbergmann/php-token-stream.git",
1123 "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
1124 },
1125 "dist": {
1126 "type": "zip",
1127 "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
1128 "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
1129 "shasum": ""
1130 },
1131 "require": {
1132 "ext-tokenizer": "*",
1133 "php": ">=5.3.3"
1134 },
1135 "require-dev": {
1136 "phpunit/phpunit": "~4.2"
1137 },
1138 "time": "2017-12-04T08:55:13+00:00",
1139 "type": "library",
1140 "extra": {
1141 "branch-alias": {
1142 "dev-master": "1.4-dev"
1143 }
1144 },
1145 "installation-source": "dist",
1146 "autoload": {
1147 "classmap": [
1148 "src/"
1149 ]
1150 },
1151 "notification-url": "https://packagist.org/downloads/",
1152 "license": [
1153 "BSD-3-Clause"
1154 ],
1155 "authors": [
1156 {
1157 "name": "Sebastian Bergmann",
1158 "email": "sebastian@phpunit.de"
1159 }
1160 ],
1161 "description": "Wrapper around PHP's tokenizer extension.",
1162 "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
1163 "keywords": [
1164 "tokenizer"
1165 ]
1166 },
1167 {
1168 "name": "sebastian/version",
1169 "version": "2.0.1",
1170 "version_normalized": "2.0.1.0",
1171 "source": {
1172 "type": "git",
1173 "url": "https://github.com/sebastianbergmann/version.git",
1174 "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
1175 },
1176 "dist": {
1177 "type": "zip",
1178 "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
1179 "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
1180 "shasum": ""
1181 },
1182 "require": {
1183 "php": ">=5.6"
1184 },
1185 "time": "2016-10-03T07:35:21+00:00",
1186 "type": "library",
1187 "extra": {
1188 "branch-alias": {
1189 "dev-master": "2.0.x-dev"
1190 }
1191 },
1192 "installation-source": "dist",
1193 "autoload": {
1194 "classmap": [
1195 "src/"
1196 ]
1197 },
1198 "notification-url": "https://packagist.org/downloads/",
1199 "license": [
1200 "BSD-3-Clause"
1201 ],
1202 "authors": [
1203 {
1204 "name": "Sebastian Bergmann",
1205 "email": "sebastian@phpunit.de",
1206 "role": "lead"
1207 }
1208 ],
1209 "description": "Library that helps with managing the version number of Git-hosted PHP projects",
1210 "homepage": "https://github.com/sebastianbergmann/version"
1211 },
1212 {
1213 "name": "sebastian/resource-operations",
1214 "version": "1.0.0",
1215 "version_normalized": "1.0.0.0",
1216 "source": {
1217 "type": "git",
1218 "url": "https://github.com/sebastianbergmann/resource-operations.git",
1219 "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
1220 },
1221 "dist": {
1222 "type": "zip",
1223 "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
1224 "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
1225 "shasum": ""
1226 },
1227 "require": {
1228 "php": ">=5.6.0"
1229 },
1230 "time": "2015-07-28T20:34:47+00:00",
1231 "type": "library",
1232 "extra": {
1233 "branch-alias": {
1234 "dev-master": "1.0.x-dev"
1235 }
1236 },
1237 "installation-source": "dist",
1238 "autoload": {
1239 "classmap": [
1240 "src/"
1241 ]
1242 },
1243 "notification-url": "https://packagist.org/downloads/",
1244 "license": [
1245 "BSD-3-Clause"
1246 ],
1247 "authors": [
1248 {
1249 "name": "Sebastian Bergmann",
1250 "email": "sebastian@phpunit.de"
1251 }
1252 ],
1253 "description": "Provides a list of PHP built-in functions that operate on resources",
1254 "homepage": "https://www.github.com/sebastianbergmann/resource-operations"
1255 },
1256 {
1257 "name": "sebastian/recursion-context",
1258 "version": "2.0.0",
1259 "version_normalized": "2.0.0.0",
1260 "source": {
1261 "type": "git",
1262 "url": "https://github.com/sebastianbergmann/recursion-context.git",
1263 "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
1264 },
1265 "dist": {
1266 "type": "zip",
1267 "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
1268 "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
1269 "shasum": ""
1270 },
1271 "require": {
1272 "php": ">=5.3.3"
1273 },
1274 "require-dev": {
1275 "phpunit/phpunit": "~4.4"
1276 },
1277 "time": "2016-11-19T07:33:16+00:00",
1278 "type": "library",
1279 "extra": {
1280 "branch-alias": {
1281 "dev-master": "2.0.x-dev"
1282 }
1283 },
1284 "installation-source": "dist",
1285 "autoload": {
1286 "classmap": [
1287 "src/"
1288 ]
1289 },
1290 "notification-url": "https://packagist.org/downloads/",
1291 "license": [
1292 "BSD-3-Clause"
1293 ],
1294 "authors": [
1295 {
1296 "name": "Jeff Welch",
1297 "email": "whatthejeff@gmail.com"
1298 },
1299 {
1300 "name": "Sebastian Bergmann",
1301 "email": "sebastian@phpunit.de"
1302 },
1303 {
1304 "name": "Adam Harvey",
1305 "email": "aharvey@php.net"
1306 }
1307 ],
1308 "description": "Provides functionality to recursively process PHP variables",
1309 "homepage": "http://www.github.com/sebastianbergmann/recursion-context"
1310 },
1311 {
1312 "name": "sebastian/object-enumerator",
1313 "version": "2.0.1",
1314 "version_normalized": "2.0.1.0",
1315 "source": {
1316 "type": "git",
1317 "url": "https://github.com/sebastianbergmann/object-enumerator.git",
1318 "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
1319 },
1320 "dist": {
1321 "type": "zip",
1322 "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
1323 "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
1324 "shasum": ""
1325 },
1326 "require": {
1327 "php": ">=5.6",
1328 "sebastian/recursion-context": "~2.0"
1329 },
1330 "require-dev": {
1331 "phpunit/phpunit": "~5"
1332 },
1333 "time": "2017-02-18T15:18:39+00:00",
1334 "type": "library",
1335 "extra": {
1336 "branch-alias": {
1337 "dev-master": "2.0.x-dev"
1338 }
1339 },
1340 "installation-source": "dist",
1341 "autoload": {
1342 "classmap": [
1343 "src/"
1344 ]
1345 },
1346 "notification-url": "https://packagist.org/downloads/",
1347 "license": [
1348 "BSD-3-Clause"
1349 ],
1350 "authors": [
1351 {
1352 "name": "Sebastian Bergmann",
1353 "email": "sebastian@phpunit.de"
1354 }
1355 ],
1356 "description": "Traverses array structures and object graphs to enumerate all referenced objects",
1357 "homepage": "https://github.com/sebastianbergmann/object-enumerator/"
1358 },
1359 {
1360 "name": "sebastian/global-state",
1361 "version": "1.1.1",
1362 "version_normalized": "1.1.1.0",
1363 "source": {
1364 "type": "git",
1365 "url": "https://github.com/sebastianbergmann/global-state.git",
1366 "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
1367 },
1368 "dist": {
1369 "type": "zip",
1370 "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
1371 "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
1372 "shasum": ""
1373 },
1374 "require": {
1375 "php": ">=5.3.3"
1376 },
1377 "require-dev": {
1378 "phpunit/phpunit": "~4.2"
1379 },
1380 "suggest": {
1381 "ext-uopz": "*"
1382 },
1383 "time": "2015-10-12T03:26:01+00:00",
1384 "type": "library",
1385 "extra": {
1386 "branch-alias": {
1387 "dev-master": "1.0-dev"
1388 }
1389 },
1390 "installation-source": "dist",
1391 "autoload": {
1392 "classmap": [
1393 "src/"
1394 ]
1395 },
1396 "notification-url": "https://packagist.org/downloads/",
1397 "license": [
1398 "BSD-3-Clause"
1399 ],
1400 "authors": [
1401 {
1402 "name": "Sebastian Bergmann",
1403 "email": "sebastian@phpunit.de"
1404 }
1405 ],
1406 "description": "Snapshotting of global state",
1407 "homepage": "http://www.github.com/sebastianbergmann/global-state",
1408 "keywords": [
1409 "global state"
1410 ]
1411 },
1412 {
1413 "name": "sebastian/exporter",
1414 "version": "2.0.0",
1415 "version_normalized": "2.0.0.0",
1416 "source": {
1417 "type": "git",
1418 "url": "https://github.com/sebastianbergmann/exporter.git",
1419 "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
1420 },
1421 "dist": {
1422 "type": "zip",
1423 "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
1424 "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
1425 "shasum": ""
1426 },
1427 "require": {
1428 "php": ">=5.3.3",
1429 "sebastian/recursion-context": "~2.0"
1430 },
1431 "require-dev": {
1432 "ext-mbstring": "*",
1433 "phpunit/phpunit": "~4.4"
1434 },
1435 "time": "2016-11-19T08:54:04+00:00",
1436 "type": "library",
1437 "extra": {
1438 "branch-alias": {
1439 "dev-master": "2.0.x-dev"
1440 }
1441 },
1442 "installation-source": "dist",
1443 "autoload": {
1444 "classmap": [
1445 "src/"
1446 ]
1447 },
1448 "notification-url": "https://packagist.org/downloads/",
1449 "license": [
1450 "BSD-3-Clause"
1451 ],
1452 "authors": [
1453 {
1454 "name": "Jeff Welch",
1455 "email": "whatthejeff@gmail.com"
1456 },
1457 {
1458 "name": "Volker Dusch",
1459 "email": "github@wallbash.com"
1460 },
1461 {
1462 "name": "Bernhard Schussek",
1463 "email": "bschussek@2bepublished.at"
1464 },
1465 {
1466 "name": "Sebastian Bergmann",
1467 "email": "sebastian@phpunit.de"
1468 },
1469 {
1470 "name": "Adam Harvey",
1471 "email": "aharvey@php.net"
1472 }
1473 ],
1474 "description": "Provides the functionality to export PHP variables for visualization",
1475 "homepage": "http://www.github.com/sebastianbergmann/exporter",
1476 "keywords": [
1477 "export",
1478 "exporter"
1479 ]
1480 },
1481 {
1482 "name": "sebastian/environment",
1483 "version": "2.0.0",
1484 "version_normalized": "2.0.0.0",
1485 "source": {
1486 "type": "git",
1487 "url": "https://github.com/sebastianbergmann/environment.git",
1488 "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
1489 },
1490 "dist": {
1491 "type": "zip",
1492 "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
1493 "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
1494 "shasum": ""
1495 },
1496 "require": {
1497 "php": "^5.6 || ^7.0"
1498 },
1499 "require-dev": {
1500 "phpunit/phpunit": "^5.0"
1501 },
1502 "time": "2016-11-26T07:53:53+00:00",
1503 "type": "library",
1504 "extra": {
1505 "branch-alias": {
1506 "dev-master": "2.0.x-dev"
1507 }
1508 },
1509 "installation-source": "dist",
1510 "autoload": {
1511 "classmap": [
1512 "src/"
1513 ]
1514 },
1515 "notification-url": "https://packagist.org/downloads/",
1516 "license": [
1517 "BSD-3-Clause"
1518 ],
1519 "authors": [
1520 {
1521 "name": "Sebastian Bergmann",
1522 "email": "sebastian@phpunit.de"
1523 }
1524 ],
1525 "description": "Provides functionality to handle HHVM/PHP environments",
1526 "homepage": "http://www.github.com/sebastianbergmann/environment",
1527 "keywords": [
1528 "Xdebug",
1529 "environment",
1530 "hhvm"
1531 ]
1532 },
1533 {
1534 "name": "sebastian/diff",
1535 "version": "1.4.3",
1536 "version_normalized": "1.4.3.0",
1537 "source": {
1538 "type": "git",
1539 "url": "https://github.com/sebastianbergmann/diff.git",
1540 "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
1541 },
1542 "dist": {
1543 "type": "zip",
1544 "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
1545 "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
1546 "shasum": ""
1547 },
1548 "require": {
1549 "php": "^5.3.3 || ^7.0"
1550 },
1551 "require-dev": {
1552 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
1553 },
1554 "time": "2017-05-22T07:24:03+00:00",
1555 "type": "library",
1556 "extra": {
1557 "branch-alias": {
1558 "dev-master": "1.4-dev"
1559 }
1560 },
1561 "installation-source": "dist",
1562 "autoload": {
1563 "classmap": [
1564 "src/"
1565 ]
1566 },
1567 "notification-url": "https://packagist.org/downloads/",
1568 "license": [
1569 "BSD-3-Clause"
1570 ],
1571 "authors": [
1572 {
1573 "name": "Kore Nordmann",
1574 "email": "mail@kore-nordmann.de"
1575 },
1576 {
1577 "name": "Sebastian Bergmann",
1578 "email": "sebastian@phpunit.de"
1579 }
1580 ],
1581 "description": "Diff implementation",
1582 "homepage": "https://github.com/sebastianbergmann/diff",
1583 "keywords": [
1584 "diff"
1585 ]
1586 },
1587 {
1588 "name": "sebastian/comparator",
1589 "version": "1.2.4",
1590 "version_normalized": "1.2.4.0",
1591 "source": {
1592 "type": "git",
1593 "url": "https://github.com/sebastianbergmann/comparator.git",
1594 "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
1595 },
1596 "dist": {
1597 "type": "zip",
1598 "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
1599 "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
1600 "shasum": ""
1601 },
1602 "require": {
1603 "php": ">=5.3.3",
1604 "sebastian/diff": "~1.2",
1605 "sebastian/exporter": "~1.2 || ~2.0"
1606 },
1607 "require-dev": {
1608 "phpunit/phpunit": "~4.4"
1609 },
1610 "time": "2017-01-29T09:50:25+00:00",
1611 "type": "library",
1612 "extra": {
1613 "branch-alias": {
1614 "dev-master": "1.2.x-dev"
1615 }
1616 },
1617 "installation-source": "dist",
1618 "autoload": {
1619 "classmap": [
1620 "src/"
1621 ]
1622 },
1623 "notification-url": "https://packagist.org/downloads/",
1624 "license": [
1625 "BSD-3-Clause"
1626 ],
1627 "authors": [
1628 {
1629 "name": "Jeff Welch",
1630 "email": "whatthejeff@gmail.com"
1631 },
1632 {
1633 "name": "Volker Dusch",
1634 "email": "github@wallbash.com"
1635 },
1636 {
1637 "name": "Bernhard Schussek",
1638 "email": "bschussek@2bepublished.at"
1639 },
1640 {
1641 "name": "Sebastian Bergmann",
1642 "email": "sebastian@phpunit.de"
1643 }
1644 ],
1645 "description": "Provides the functionality to compare PHP values for equality",
1646 "homepage": "http://www.github.com/sebastianbergmann/comparator",
1647 "keywords": [
1648 "comparator",
1649 "compare",
1650 "equality"
1651 ]
1652 },
1653 {
1654 "name": "phpunit/php-text-template",
1655 "version": "1.2.1",
1656 "version_normalized": "1.2.1.0",
1657 "source": {
1658 "type": "git",
1659 "url": "https://github.com/sebastianbergmann/php-text-template.git",
1660 "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
1661 },
1662 "dist": {
1663 "type": "zip",
1664 "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
1665 "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
1666 "shasum": ""
1667 },
1668 "require": {
1669 "php": ">=5.3.3"
1670 },
1671 "time": "2015-06-21T13:50:34+00:00",
1672 "type": "library",
1673 "installation-source": "dist",
1674 "autoload": {
1675 "classmap": [
1676 "src/"
1677 ]
1678 },
1679 "notification-url": "https://packagist.org/downloads/",
1680 "license": [
1681 "BSD-3-Clause"
1682 ],
1683 "authors": [
1684 {
1685 "name": "Sebastian Bergmann",
1686 "email": "sebastian@phpunit.de",
1687 "role": "lead"
1688 }
1689 ],
1690 "description": "Simple template engine.",
1691 "homepage": "https://github.com/sebastianbergmann/php-text-template/",
1692 "keywords": [
1693 "template"
1694 ]
1695 },
1696 {
1697 "name": "doctrine/instantiator",
1698 "version": "1.0.5",
1699 "version_normalized": "1.0.5.0",
1700 "source": {
1701 "type": "git",
1702 "url": "https://github.com/doctrine/instantiator.git",
1703 "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
1704 },
1705 "dist": {
1706 "type": "zip",
1707 "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
1708 "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
1709 "shasum": ""
1710 },
1711 "require": {
1712 "php": ">=5.3,<8.0-DEV"
1713 },
1714 "require-dev": {
1715 "athletic/athletic": "~0.1.8",
1716 "ext-pdo": "*",
1717 "ext-phar": "*",
1718 "phpunit/phpunit": "~4.0",
1719 "squizlabs/php_codesniffer": "~2.0"
1720 },
1721 "time": "2015-06-14T21:17:01+00:00",
1722 "type": "library",
1723 "extra": {
1724 "branch-alias": {
1725 "dev-master": "1.0.x-dev"
1726 }
1727 },
1728 "installation-source": "dist",
1729 "autoload": {
1730 "psr-4": {
1731 "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
1732 }
1733 },
1734 "notification-url": "https://packagist.org/downloads/",
1735 "license": [
1736 "MIT"
1737 ],
1738 "authors": [
1739 {
1740 "name": "Marco Pivetta",
1741 "email": "ocramius@gmail.com",
1742 "homepage": "http://ocramius.github.com/"
1743 }
1744 ],
1745 "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
1746 "homepage": "https://github.com/doctrine/instantiator",
1747 "keywords": [
1748 "constructor",
1749 "instantiate"
1750 ]
1751 },
1752 {
1753 "name": "phpunit/phpunit-mock-objects",
1754 "version": "3.4.4",
1755 "version_normalized": "3.4.4.0",
1756 "source": {
1757 "type": "git",
1758 "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
1759 "reference": "a23b761686d50a560cc56233b9ecf49597cc9118"
1760 },
1761 "dist": {
1762 "type": "zip",
1763 "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118",
1764 "reference": "a23b761686d50a560cc56233b9ecf49597cc9118",
1765 "shasum": ""
1766 },
1767 "require": {
1768 "doctrine/instantiator": "^1.0.2",
1769 "php": "^5.6 || ^7.0",
1770 "phpunit/php-text-template": "^1.2",
1771 "sebastian/exporter": "^1.2 || ^2.0"
1772 },
1773 "conflict": {
1774 "phpunit/phpunit": "<5.4.0"
1775 },
1776 "require-dev": {
1777 "phpunit/phpunit": "^5.4"
1778 },
1779 "suggest": {
1780 "ext-soap": "*"
1781 },
1782 "time": "2017-06-30T09:13:00+00:00",
1783 "type": "library",
1784 "extra": {
1785 "branch-alias": {
1786 "dev-master": "3.2.x-dev"
1787 }
1788 },
1789 "installation-source": "dist",
1790 "autoload": {
1791 "classmap": [
1792 "src/"
1793 ]
1794 },
1795 "notification-url": "https://packagist.org/downloads/",
1796 "license": [
1797 "BSD-3-Clause"
1798 ],
1799 "authors": [
1800 {
1801 "name": "Sebastian Bergmann",
1802 "email": "sb@sebastian-bergmann.de",
1803 "role": "lead"
1804 }
1805 ],
1806 "description": "Mock Object library for PHPUnit",
1807 "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
1808 "keywords": [
1809 "mock",
1810 "xunit"
1811 ]
1812 },
1813 {
1814 "name": "phpunit/php-timer",
1815 "version": "1.0.9",
1816 "version_normalized": "1.0.9.0",
1817 "source": {
1818 "type": "git",
1819 "url": "https://github.com/sebastianbergmann/php-timer.git",
1820 "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
1821 },
1822 "dist": {
1823 "type": "zip",
1824 "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
1825 "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
1826 "shasum": ""
1827 },
1828 "require": {
1829 "php": "^5.3.3 || ^7.0"
1830 },
1831 "require-dev": {
1832 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
1833 },
1834 "time": "2017-02-26T11:10:40+00:00",
1835 "type": "library",
1836 "extra": {
1837 "branch-alias": {
1838 "dev-master": "1.0-dev"
1839 }
1840 },
1841 "installation-source": "dist",
1842 "autoload": {
1843 "classmap": [
1844 "src/"
1845 ]
1846 },
1847 "notification-url": "https://packagist.org/downloads/",
1848 "license": [
1849 "BSD-3-Clause"
1850 ],
1851 "authors": [
1852 {
1853 "name": "Sebastian Bergmann",
1854 "email": "sb@sebastian-bergmann.de",
1855 "role": "lead"
1856 }
1857 ],
1858 "description": "Utility class for timing",
1859 "homepage": "https://github.com/sebastianbergmann/php-timer/",
1860 "keywords": [
1861 "timer"
1862 ]
1863 },
1864 {
1865 "name": "phpunit/php-file-iterator",
1866 "version": "1.4.5",
1867 "version_normalized": "1.4.5.0",
1868 "source": {
1869 "type": "git",
1870 "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
1871 "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
1872 },
1873 "dist": {
1874 "type": "zip",
1875 "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
1876 "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
1877 "shasum": ""
1878 },
1879 "require": {
1880 "php": ">=5.3.3"
1881 },
1882 "time": "2017-11-27T13:52:08+00:00",
1883 "type": "library",
1884 "extra": {
1885 "branch-alias": {
1886 "dev-master": "1.4.x-dev"
1887 }
1888 },
1889 "installation-source": "dist",
1890 "autoload": {
1891 "classmap": [
1892 "src/"
1893 ]
1894 },
1895 "notification-url": "https://packagist.org/downloads/",
1896 "license": [
1897 "BSD-3-Clause"
1898 ],
1899 "authors": [
1900 {
1901 "name": "Sebastian Bergmann",
1902 "email": "sb@sebastian-bergmann.de",
1903 "role": "lead"
1904 }
1905 ],
1906 "description": "FilterIterator implementation that filters files based on a list of suffixes.",
1907 "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
1908 "keywords": [
1909 "filesystem",
1910 "iterator"
1911 ]
1912 },
1913 {
1914 "name": "sebastian/code-unit-reverse-lookup",
1915 "version": "1.0.1",
1916 "version_normalized": "1.0.1.0",
1917 "source": {
1918 "type": "git",
1919 "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
1920 "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
1921 },
1922 "dist": {
1923 "type": "zip",
1924 "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
1925 "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
1926 "shasum": ""
1927 },
1928 "require": {
1929 "php": "^5.6 || ^7.0"
1930 },
1931 "require-dev": {
1932 "phpunit/phpunit": "^5.7 || ^6.0"
1933 },
1934 "time": "2017-03-04T06:30:41+00:00",
1935 "type": "library",
1936 "extra": {
1937 "branch-alias": {
1938 "dev-master": "1.0.x-dev"
1939 }
1940 },
1941 "installation-source": "dist",
1942 "autoload": {
1943 "classmap": [
1944 "src/"
1945 ]
1946 },
1947 "notification-url": "https://packagist.org/downloads/",
1948 "license": [
1949 "BSD-3-Clause"
1950 ],
1951 "authors": [
1952 {
1953 "name": "Sebastian Bergmann",
1954 "email": "sebastian@phpunit.de"
1955 }
1956 ],
1957 "description": "Looks up which function or method a line of code belongs to",
1958 "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/"
1959 },
1960 {
1961 "name": "phpunit/php-code-coverage",
1962 "version": "4.0.8",
1963 "version_normalized": "4.0.8.0",
1964 "source": {
1965 "type": "git",
1966 "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
1967 "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
1968 },
1969 "dist": {
1970 "type": "zip",
1971 "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
1972 "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
1973 "shasum": ""
1974 },
1975 "require": {
1976 "ext-dom": "*",
1977 "ext-xmlwriter": "*",
1978 "php": "^5.6 || ^7.0",
1979 "phpunit/php-file-iterator": "^1.3",
1980 "phpunit/php-text-template": "^1.2",
1981 "phpunit/php-token-stream": "^1.4.2 || ^2.0",
1982 "sebastian/code-unit-reverse-lookup": "^1.0",
1983 "sebastian/environment": "^1.3.2 || ^2.0",
1984 "sebastian/version": "^1.0 || ^2.0"
1985 },
1986 "require-dev": {
1987 "ext-xdebug": "^2.1.4",
1988 "phpunit/phpunit": "^5.7"
1989 },
1990 "suggest": {
1991 "ext-xdebug": "^2.5.1"
1992 },
1993 "time": "2017-04-02T07:44:40+00:00",
1994 "type": "library",
1995 "extra": {
1996 "branch-alias": {
1997 "dev-master": "4.0.x-dev"
1998 }
1999 },
2000 "installation-source": "dist",
2001 "autoload": {
2002 "classmap": [
2003 "src/"
2004 ]
2005 },
2006 "notification-url": "https://packagist.org/downloads/",
2007 "license": [
2008 "BSD-3-Clause"
2009 ],
2010 "authors": [
2011 {
2012 "name": "Sebastian Bergmann",
2013 "email": "sb@sebastian-bergmann.de",
2014 "role": "lead"
2015 }
2016 ],
2017 "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
2018 "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
2019 "keywords": [
2020 "coverage",
2021 "testing",
2022 "xunit"
2023 ]
2024 },
2025 {
2026 "name": "myclabs/deep-copy",
2027 "version": "1.7.0",
2028 "version_normalized": "1.7.0.0",
2029 "source": {
2030 "type": "git",
2031 "url": "https://github.com/myclabs/DeepCopy.git",
2032 "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
2033 },
2034 "dist": {
2035 "type": "zip",
2036 "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
2037 "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
2038 "shasum": ""
2039 },
2040 "require": {
2041 "php": "^5.6 || ^7.0"
2042 },
2043 "require-dev": {
2044 "doctrine/collections": "^1.0",
2045 "doctrine/common": "^2.6",
2046 "phpunit/phpunit": "^4.1"
2047 },
2048 "time": "2017-10-19T19:58:43+00:00",
2049 "type": "library",
2050 "installation-source": "dist",
2051 "autoload": {
2052 "psr-4": {
2053 "DeepCopy\\": "src/DeepCopy/"
2054 },
2055 "files": [
2056 "src/DeepCopy/deep_copy.php"
2057 ]
2058 },
2059 "notification-url": "https://packagist.org/downloads/",
2060 "license": [
2061 "MIT"
2062 ],
2063 "description": "Create deep copies (clones) of your objects",
2064 "keywords": [
2065 "clone",
2066 "copy",
2067 "duplicate",
2068 "object",
2069 "object graph"
2070 ]
2071 },
2072 {
2073 "name": "pear/net_sieve",
2074 "version": "1.4.3",
2075 "version_normalized": "1.4.3.0",
2076 "source": {
2077 "type": "git",
2078 "url": "https://github.com/pear/Net_Sieve.git",
2079 "reference": "ffbe5cfc59ac5c79d9ef26923bb1eace5d539845"
2080 },
2081 "dist": {
2082 "type": "zip",
2083 "url": "https://api.github.com/repos/pear/Net_Sieve/zipball/ffbe5cfc59ac5c79d9ef26923bb1eace5d539845",
2084 "reference": "ffbe5cfc59ac5c79d9ef26923bb1eace5d539845",
2085 "shasum": ""
2086 },
2087 "require": {
2088 "pear/net_socket": "~1.2",
2089 "pear/pear-core-minimal": "~1.10"
2090 },
2091 "require-dev": {
2092 "phpunit/phpunit": "~5.7.15"
2093 },
2094 "suggest": {
2095 "pear/auth_sasl": "Install optionally via your project's composer.json"
2096 },
2097 "time": "2018-03-04T07:55:00+00:00",
2098 "type": "library",
2099 "installation-source": "dist",
2100 "autoload": {
2101 "classmap": [
2102 "./"
2103 ]
2104 },
2105 "notification-url": "https://packagist.org/downloads/",
2106 "license": [
2107 "BSD-2-Clause"
2108 ],
2109 "authors": [
2110 {
2111 "name": "Anish Mistry",
2112 "email": "amistry@am-productions.biz",
2113 "role": "Lead"
2114 },
2115 {
2116 "name": "Richard Heyes",
2117 "email": "richard@php.net",
2118 "role": "Lead"
2119 },
2120 {
2121 "name": "Jan Schneider",
2122 "email": "jan@horde.org",
2123 "role": "Lead"
2124 },
2125 {
2126 "name": "Damian Fernandez Sosa",
2127 "email": "damlists@cnba.uba.ar",
2128 "role": "Lead"
2129 }
2130 ],
2131 "description": "More info available on: http://pear.php.net/package/Net_Sieve"
2132 },
2133 {
2134 "name": "symfony/polyfill-ctype",
2135 "version": "v1.8.0",
2136 "version_normalized": "1.8.0.0",
2137 "source": {
2138 "type": "git",
2139 "url": "https://github.com/symfony/polyfill-ctype.git",
2140 "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae"
2141 },
2142 "dist": {
2143 "type": "zip",
2144 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
2145 "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
2146 "shasum": ""
2147 },
2148 "require": {
2149 "php": ">=5.3.3"
2150 },
2151 "time": "2018-04-30T19:57:29+00:00",
2152 "type": "library",
2153 "extra": {
2154 "branch-alias": {
2155 "dev-master": "1.8-dev"
2156 }
2157 },
2158 "installation-source": "dist",
2159 "autoload": {
2160 "psr-4": {
2161 "Symfony\\Polyfill\\Ctype\\": ""
2162 },
2163 "files": [
2164 "bootstrap.php"
2165 ]
2166 },
2167 "notification-url": "https://packagist.org/downloads/",
2168 "license": [
2169 "MIT"
2170 ],
2171 "authors": [
2172 {
2173 "name": "Symfony Community",
2174 "homepage": "https://symfony.com/contributors"
2175 },
2176 {
2177 "name": "Gert de Pagter",
2178 "email": "BackEndTea@gmail.com"
2179 }
2180 ],
2181 "description": "Symfony polyfill for ctype functions",
2182 "homepage": "https://symfony.com",
2183 "keywords": [
2184 "compatibility",
2185 "ctype",
2186 "polyfill",
2187 "portable"
2188 ]
2189 },
2190 {
2191 "name": "symfony/yaml",
2192 "version": "v3.4.11",
2193 "version_normalized": "3.4.11.0",
2194 "source": {
2195 "type": "git",
2196 "url": "https://github.com/symfony/yaml.git",
2197 "reference": "c5010cc1692ce1fa328b1fb666961eb3d4a85bb0"
2198 },
2199 "dist": {
2200 "type": "zip",
2201 "url": "https://api.github.com/repos/symfony/yaml/zipball/c5010cc1692ce1fa328b1fb666961eb3d4a85bb0",
2202 "reference": "c5010cc1692ce1fa328b1fb666961eb3d4a85bb0",
2203 "shasum": ""
2204 },
2205 "require": {
2206 "php": "^5.5.9|>=7.0.8",
2207 "symfony/polyfill-ctype": "~1.8"
2208 },
2209 "conflict": {
2210 "symfony/console": "<3.4"
2211 },
2212 "require-dev": {
2213 "symfony/console": "~3.4|~4.0"
2214 },
2215 "suggest": {
2216 "symfony/console": "For validating YAML files using the lint command"
2217 },
2218 "time": "2018-05-03T23:18:14+00:00",
2219 "type": "library",
2220 "extra": {
2221 "branch-alias": {
2222 "dev-master": "3.4-dev"
2223 }
2224 },
2225 "installation-source": "dist",
2226 "autoload": {
2227 "psr-4": {
2228 "Symfony\\Component\\Yaml\\": ""
2229 },
2230 "exclude-from-classmap": [
2231 "/Tests/"
2232 ]
2233 },
2234 "notification-url": "https://packagist.org/downloads/",
2235 "license": [
2236 "MIT"
2237 ],
2238 "authors": [
2239 {
2240 "name": "Fabien Potencier",
2241 "email": "fabien@symfony.com"
2242 },
2243 {
2244 "name": "Symfony Community",
2245 "homepage": "https://symfony.com/contributors"
2246 }
2247 ],
2248 "description": "Symfony Yaml Component",
2249 "homepage": "https://symfony.com"
2250 },
2251 {
2252 "name": "webmozart/assert",
2253 "version": "1.3.0",
2254 "version_normalized": "1.3.0.0",
2255 "source": {
2256 "type": "git",
2257 "url": "https://github.com/webmozart/assert.git",
2258 "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
2259 },
2260 "dist": {
2261 "type": "zip",
2262 "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
2263 "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
2264 "shasum": ""
2265 },
2266 "require": {
2267 "php": "^5.3.3 || ^7.0"
2268 },
2269 "require-dev": {
2270 "phpunit/phpunit": "^4.6",
2271 "sebastian/version": "^1.0.1"
2272 },
2273 "time": "2018-01-29T19:49:41+00:00",
2274 "type": "library",
2275 "extra": {
2276 "branch-alias": {
2277 "dev-master": "1.3-dev"
2278 }
2279 },
2280 "installation-source": "dist",
2281 "autoload": {
2282 "psr-4": {
2283 "Webmozart\\Assert\\": "src/"
2284 }
2285 },
2286 "notification-url": "https://packagist.org/downloads/",
2287 "license": [
2288 "MIT"
2289 ],
2290 "authors": [
2291 {
2292 "name": "Bernhard Schussek",
2293 "email": "bschussek@gmail.com"
2294 }
2295 ],
2296 "description": "Assertions to validate method input/output with nice error messages.",
2297 "keywords": [
2298 "assert",
2299 "check",
2300 "validate"
2301 ]
2302 },
2303 {
2304 "name": "phpspec/prophecy",
2305 "version": "1.7.6",
2306 "version_normalized": "1.7.6.0",
2307 "source": {
2308 "type": "git",
2309 "url": "https://github.com/phpspec/prophecy.git",
2310 "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712"
2311 },
2312 "dist": {
2313 "type": "zip",
2314 "url": "https://api.github.com/repos/phpspec/prophecy/zipball/33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
2315 "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
2316 "shasum": ""
2317 },
2318 "require": {
2319 "doctrine/instantiator": "^1.0.2",
2320 "php": "^5.3|^7.0",
2321 "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
2322 "sebastian/comparator": "^1.1|^2.0|^3.0",
2323 "sebastian/recursion-context": "^1.0|^2.0|^3.0"
2324 },
2325 "require-dev": {
2326 "phpspec/phpspec": "^2.5|^3.2",
2327 "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
2328 },
2329 "time": "2018-04-18T13:57:24+00:00",
2330 "type": "library",
2331 "extra": {
2332 "branch-alias": {
2333 "dev-master": "1.7.x-dev"
2334 }
2335 },
2336 "installation-source": "dist",
2337 "autoload": {
2338 "psr-0": {
2339 "Prophecy\\": "src/"
2340 }
2341 },
2342 "notification-url": "https://packagist.org/downloads/",
2343 "license": [
2344 "MIT"
2345 ],
2346 "authors": [
2347 {
2348 "name": "Konstantin Kudryashov",
2349 "email": "ever.zet@gmail.com",
2350 "homepage": "http://everzet.com"
2351 },
2352 {
2353 "name": "Marcello Duarte",
2354 "email": "marcello.duarte@gmail.com"
2355 }
2356 ],
2357 "description": "Highly opinionated mocking framework for PHP 5.3+",
2358 "homepage": "https://github.com/phpspec/prophecy",
2359 "keywords": [
2360 "Double",
2361 "Dummy",
2362 "fake",
2363 "mock",
2364 "spy",
2365 "stub"
2366 ]
2367 },
2368 {
2369 "name": "phpunit/phpunit",
2370 "version": "5.7.27",
2371 "version_normalized": "5.7.27.0",
2372 "source": {
2373 "type": "git",
2374 "url": "https://github.com/sebastianbergmann/phpunit.git",
2375 "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c"
2376 },
2377 "dist": {
2378 "type": "zip",
2379 "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
2380 "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
2381 "shasum": ""
2382 },
2383 "require": {
2384 "ext-dom": "*",
2385 "ext-json": "*",
2386 "ext-libxml": "*",
2387 "ext-mbstring": "*",
2388 "ext-xml": "*",
2389 "myclabs/deep-copy": "~1.3",
2390 "php": "^5.6 || ^7.0",
2391 "phpspec/prophecy": "^1.6.2",
2392 "phpunit/php-code-coverage": "^4.0.4",
2393 "phpunit/php-file-iterator": "~1.4",
2394 "phpunit/php-text-template": "~1.2",
2395 "phpunit/php-timer": "^1.0.6",
2396 "phpunit/phpunit-mock-objects": "^3.2",
2397 "sebastian/comparator": "^1.2.4",
2398 "sebastian/diff": "^1.4.3",
2399 "sebastian/environment": "^1.3.4 || ^2.0",
2400 "sebastian/exporter": "~2.0",
2401 "sebastian/global-state": "^1.1",
2402 "sebastian/object-enumerator": "~2.0",
2403 "sebastian/resource-operations": "~1.0",
2404 "sebastian/version": "^1.0.6|^2.0.1",
2405 "symfony/yaml": "~2.1|~3.0|~4.0"
2406 },
2407 "conflict": {
2408 "phpdocumentor/reflection-docblock": "3.0.2"
2409 },
2410 "require-dev": {
2411 "ext-pdo": "*"
2412 },
2413 "suggest": {
2414 "ext-xdebug": "*",
2415 "phpunit/php-invoker": "~1.1"
2416 },
2417 "time": "2018-02-01T05:50:59+00:00",
2418 "bin": [
2419 "phpunit"
2420 ],
2421 "type": "library",
2422 "extra": {
2423 "branch-alias": {
2424 "dev-master": "5.7.x-dev"
2425 }
2426 },
2427 "installation-source": "dist",
2428 "autoload": {
2429 "classmap": [
2430 "src/"
2431 ]
2432 },
2433 "notification-url": "https://packagist.org/downloads/",
2434 "license": [
2435 "BSD-3-Clause"
2436 ],
2437 "authors": [
2438 {
2439 "name": "Sebastian Bergmann",
2440 "email": "sebastian@phpunit.de",
2441 "role": "lead"
2442 }
2443 ],
2444 "description": "The PHP Unit Testing framework.",
2445 "homepage": "https://phpunit.de/",
2446 "keywords": [
2447 "phpunit",
2448 "testing",
2449 "xunit"
2450 ]
2451 },
2452 {
2453 "name": "takika/rc_foldersort",
2454 "version": "1.0",
2455 "version_normalized": "1.0.0.0",
2456 "source": {
2457 "type": "git",
2458 "url": "https://github.com/Takika/rc_foldersort.git",
2459 "reference": "dad5b5466e6ba233b2d63ba46cc04d46099fbe8e"
2460 },
2461 "dist": {
2462 "type": "zip",
2463 "url": "https://api.github.com/repos/Takika/rc_foldersort/zipball/dad5b5466e6ba233b2d63ba46cc04d46099fbe8e",
2464 "reference": "dad5b5466e6ba233b2d63ba46cc04d46099fbe8e",
2465 "shasum": ""
2466 },
2467 "require": {
2468 "php": ">=5.3.0",
2469 "roundcube/plugin-installer": ">=0.1.3"
2470 },
2471 "time": "2015-01-02T01:09:17+00:00",
2472 "type": "roundcube-plugin",
2473 "installation-source": "dist",
2474 "notification-url": "https://plugins.roundcube.net/downloads/",
2475 "license": [
2476 "AGPLv3"
2477 ],
2478 "authors": [
2479 {
2480 "name": "Sandor Takacs",
2481 "email": "taki@alkoholista.hu",
2482 "role": "Developer"
2483 }
2484 ],
2485 "description": "Roundcube webmail plugin to do per-folder sorting",
2486 "homepage": "https://github.com/Takika/rc_foldersort"
2487 }
2488 ]