├── .gitignore
├── test
├── DesignPattern-Decorator-Draw.png
├── php
├── src
└── Web
│ ├── Interfaces
│ └── IOText.php
│ ├── Input.php
│ └── Output.php
├── README.md
├── composer.json
├── tests
└── DecoratorTest.php
└── composer.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
--------------------------------------------------------------------------------
/test:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | ./php vendor/bin/phpunit tests --color=always
--------------------------------------------------------------------------------
/DesignPattern-Decorator-Draw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/leoqbc/DesignPatternsPHP-Decorator/HEAD/DesignPattern-Decorator-Draw.png
--------------------------------------------------------------------------------
/php:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | docker run --rm --workdir /var/www -u 1000 \
4 | -v $(pwd):/var/www \
5 | php:8.0.8-alpine \
6 | php $@
--------------------------------------------------------------------------------
/src/Web/Interfaces/IOText.php:
--------------------------------------------------------------------------------
1 | inputString = $inputString;
14 | }
15 |
16 | // Método a ser decorado
17 | public function getText(): string
18 | {
19 | return $this->inputString;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/src/Web/Output.php:
--------------------------------------------------------------------------------
1 | outputString = $outputString;
14 | }
15 |
16 | // Método a ser decorado
17 | public function getText(): string
18 | {
19 | return $this->outputString;
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/tests/DecoratorTest.php:
--------------------------------------------------------------------------------
1 | input = new Input();
19 |
20 | $this->output = new Output();
21 | }
22 |
23 | public function testCheckGetTextValueForInput()
24 | {
25 | $this->input->setText('{ "json": "entrada" }');
26 | $this->assertEquals(
27 | '{ "json": "entrada" }',
28 | $this->input->getText()
29 | );
30 | }
31 |
32 | public function testCheckGetTextValueForOutPut()
33 | {
34 | $this->output->setText('{ "json": "saída" }');
35 | $this->assertEquals(
36 | '{ "json": "saída" }',
37 | $this->output->getText()
38 | );
39 | }
40 |
41 | public function testInputRemoveSpacesAndTagsDecorator()
42 | {
43 | $this->input->setText(' { "json": "
entrada
" } ');
44 |
45 | $this->assertEquals(
46 | '{ "json": "entrada" }',
47 | $this->input->getText()
48 | );
49 | }
50 |
51 | public function testOutputRemoveSpacesAndTagsDecorator()
52 | {
53 | $this->output->setText(' { "json": "saída
" } ');
54 |
55 | $this->assertEquals(
56 | '{ "json": "saída" }',
57 | $this->output->getText()
58 | );
59 | }
60 |
61 | public function testOutputRemoveQuoteDecorator()
62 | {
63 | $this->output->setText(' { "json": "\'saída\'
" } ');
64 |
65 | $this->assertEquals(
66 | '{ "json": "\'saída\'" }',
67 | $this->output->getText()
68 | );
69 | }
70 |
71 | public function testInputRemoveQuoteDecorator()
72 | {
73 | $this->input->setText(' { "json": "\'entrada\'
" } ');
74 |
75 | $this->assertEquals(
76 | '{ "json": "entrada" }',
77 | $this->input->getText()
78 | );
79 | }
80 | }
81 |
--------------------------------------------------------------------------------
/composer.lock:
--------------------------------------------------------------------------------
1 | {
2 | "_readme": [
3 | "This file locks the dependencies of your project to a known state",
4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5 | "This file is @generated automatically"
6 | ],
7 | "content-hash": "35af05125772022407b135fe3ac4ec10",
8 | "packages": [],
9 | "packages-dev": [
10 | {
11 | "name": "doctrine/instantiator",
12 | "version": "1.4.0",
13 | "source": {
14 | "type": "git",
15 | "url": "https://github.com/doctrine/instantiator.git",
16 | "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
17 | },
18 | "dist": {
19 | "type": "zip",
20 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
21 | "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
22 | "shasum": ""
23 | },
24 | "require": {
25 | "php": "^7.1 || ^8.0"
26 | },
27 | "require-dev": {
28 | "doctrine/coding-standard": "^8.0",
29 | "ext-pdo": "*",
30 | "ext-phar": "*",
31 | "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
32 | "phpstan/phpstan": "^0.12",
33 | "phpstan/phpstan-phpunit": "^0.12",
34 | "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
35 | },
36 | "type": "library",
37 | "autoload": {
38 | "psr-4": {
39 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
40 | }
41 | },
42 | "notification-url": "https://packagist.org/downloads/",
43 | "license": [
44 | "MIT"
45 | ],
46 | "authors": [
47 | {
48 | "name": "Marco Pivetta",
49 | "email": "ocramius@gmail.com",
50 | "homepage": "https://ocramius.github.io/"
51 | }
52 | ],
53 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
54 | "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
55 | "keywords": [
56 | "constructor",
57 | "instantiate"
58 | ],
59 | "support": {
60 | "issues": "https://github.com/doctrine/instantiator/issues",
61 | "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
62 | },
63 | "funding": [
64 | {
65 | "url": "https://www.doctrine-project.org/sponsorship.html",
66 | "type": "custom"
67 | },
68 | {
69 | "url": "https://www.patreon.com/phpdoctrine",
70 | "type": "patreon"
71 | },
72 | {
73 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
74 | "type": "tidelift"
75 | }
76 | ],
77 | "time": "2020-11-10T18:47:58+00:00"
78 | },
79 | {
80 | "name": "myclabs/deep-copy",
81 | "version": "1.10.2",
82 | "source": {
83 | "type": "git",
84 | "url": "https://github.com/myclabs/DeepCopy.git",
85 | "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
86 | },
87 | "dist": {
88 | "type": "zip",
89 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
90 | "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
91 | "shasum": ""
92 | },
93 | "require": {
94 | "php": "^7.1 || ^8.0"
95 | },
96 | "replace": {
97 | "myclabs/deep-copy": "self.version"
98 | },
99 | "require-dev": {
100 | "doctrine/collections": "^1.0",
101 | "doctrine/common": "^2.6",
102 | "phpunit/phpunit": "^7.1"
103 | },
104 | "type": "library",
105 | "autoload": {
106 | "psr-4": {
107 | "DeepCopy\\": "src/DeepCopy/"
108 | },
109 | "files": [
110 | "src/DeepCopy/deep_copy.php"
111 | ]
112 | },
113 | "notification-url": "https://packagist.org/downloads/",
114 | "license": [
115 | "MIT"
116 | ],
117 | "description": "Create deep copies (clones) of your objects",
118 | "keywords": [
119 | "clone",
120 | "copy",
121 | "duplicate",
122 | "object",
123 | "object graph"
124 | ],
125 | "support": {
126 | "issues": "https://github.com/myclabs/DeepCopy/issues",
127 | "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
128 | },
129 | "funding": [
130 | {
131 | "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
132 | "type": "tidelift"
133 | }
134 | ],
135 | "time": "2020-11-13T09:40:50+00:00"
136 | },
137 | {
138 | "name": "nikic/php-parser",
139 | "version": "v4.11.0",
140 | "source": {
141 | "type": "git",
142 | "url": "https://github.com/nikic/PHP-Parser.git",
143 | "reference": "fe14cf3672a149364fb66dfe11bf6549af899f94"
144 | },
145 | "dist": {
146 | "type": "zip",
147 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/fe14cf3672a149364fb66dfe11bf6549af899f94",
148 | "reference": "fe14cf3672a149364fb66dfe11bf6549af899f94",
149 | "shasum": ""
150 | },
151 | "require": {
152 | "ext-tokenizer": "*",
153 | "php": ">=7.0"
154 | },
155 | "require-dev": {
156 | "ircmaxell/php-yacc": "^0.0.7",
157 | "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
158 | },
159 | "bin": [
160 | "bin/php-parse"
161 | ],
162 | "type": "library",
163 | "extra": {
164 | "branch-alias": {
165 | "dev-master": "4.9-dev"
166 | }
167 | },
168 | "autoload": {
169 | "psr-4": {
170 | "PhpParser\\": "lib/PhpParser"
171 | }
172 | },
173 | "notification-url": "https://packagist.org/downloads/",
174 | "license": [
175 | "BSD-3-Clause"
176 | ],
177 | "authors": [
178 | {
179 | "name": "Nikita Popov"
180 | }
181 | ],
182 | "description": "A PHP parser written in PHP",
183 | "keywords": [
184 | "parser",
185 | "php"
186 | ],
187 | "support": {
188 | "issues": "https://github.com/nikic/PHP-Parser/issues",
189 | "source": "https://github.com/nikic/PHP-Parser/tree/v4.11.0"
190 | },
191 | "time": "2021-07-03T13:36:55+00:00"
192 | },
193 | {
194 | "name": "phar-io/manifest",
195 | "version": "2.0.1",
196 | "source": {
197 | "type": "git",
198 | "url": "https://github.com/phar-io/manifest.git",
199 | "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
200 | },
201 | "dist": {
202 | "type": "zip",
203 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
204 | "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
205 | "shasum": ""
206 | },
207 | "require": {
208 | "ext-dom": "*",
209 | "ext-phar": "*",
210 | "ext-xmlwriter": "*",
211 | "phar-io/version": "^3.0.1",
212 | "php": "^7.2 || ^8.0"
213 | },
214 | "type": "library",
215 | "extra": {
216 | "branch-alias": {
217 | "dev-master": "2.0.x-dev"
218 | }
219 | },
220 | "autoload": {
221 | "classmap": [
222 | "src/"
223 | ]
224 | },
225 | "notification-url": "https://packagist.org/downloads/",
226 | "license": [
227 | "BSD-3-Clause"
228 | ],
229 | "authors": [
230 | {
231 | "name": "Arne Blankerts",
232 | "email": "arne@blankerts.de",
233 | "role": "Developer"
234 | },
235 | {
236 | "name": "Sebastian Heuer",
237 | "email": "sebastian@phpeople.de",
238 | "role": "Developer"
239 | },
240 | {
241 | "name": "Sebastian Bergmann",
242 | "email": "sebastian@phpunit.de",
243 | "role": "Developer"
244 | }
245 | ],
246 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
247 | "support": {
248 | "issues": "https://github.com/phar-io/manifest/issues",
249 | "source": "https://github.com/phar-io/manifest/tree/master"
250 | },
251 | "time": "2020-06-27T14:33:11+00:00"
252 | },
253 | {
254 | "name": "phar-io/version",
255 | "version": "3.1.0",
256 | "source": {
257 | "type": "git",
258 | "url": "https://github.com/phar-io/version.git",
259 | "reference": "bae7c545bef187884426f042434e561ab1ddb182"
260 | },
261 | "dist": {
262 | "type": "zip",
263 | "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
264 | "reference": "bae7c545bef187884426f042434e561ab1ddb182",
265 | "shasum": ""
266 | },
267 | "require": {
268 | "php": "^7.2 || ^8.0"
269 | },
270 | "type": "library",
271 | "autoload": {
272 | "classmap": [
273 | "src/"
274 | ]
275 | },
276 | "notification-url": "https://packagist.org/downloads/",
277 | "license": [
278 | "BSD-3-Clause"
279 | ],
280 | "authors": [
281 | {
282 | "name": "Arne Blankerts",
283 | "email": "arne@blankerts.de",
284 | "role": "Developer"
285 | },
286 | {
287 | "name": "Sebastian Heuer",
288 | "email": "sebastian@phpeople.de",
289 | "role": "Developer"
290 | },
291 | {
292 | "name": "Sebastian Bergmann",
293 | "email": "sebastian@phpunit.de",
294 | "role": "Developer"
295 | }
296 | ],
297 | "description": "Library for handling version information and constraints",
298 | "support": {
299 | "issues": "https://github.com/phar-io/version/issues",
300 | "source": "https://github.com/phar-io/version/tree/3.1.0"
301 | },
302 | "time": "2021-02-23T14:00:09+00:00"
303 | },
304 | {
305 | "name": "phpdocumentor/reflection-common",
306 | "version": "2.2.0",
307 | "source": {
308 | "type": "git",
309 | "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
310 | "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
311 | },
312 | "dist": {
313 | "type": "zip",
314 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
315 | "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
316 | "shasum": ""
317 | },
318 | "require": {
319 | "php": "^7.2 || ^8.0"
320 | },
321 | "type": "library",
322 | "extra": {
323 | "branch-alias": {
324 | "dev-2.x": "2.x-dev"
325 | }
326 | },
327 | "autoload": {
328 | "psr-4": {
329 | "phpDocumentor\\Reflection\\": "src/"
330 | }
331 | },
332 | "notification-url": "https://packagist.org/downloads/",
333 | "license": [
334 | "MIT"
335 | ],
336 | "authors": [
337 | {
338 | "name": "Jaap van Otterdijk",
339 | "email": "opensource@ijaap.nl"
340 | }
341 | ],
342 | "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
343 | "homepage": "http://www.phpdoc.org",
344 | "keywords": [
345 | "FQSEN",
346 | "phpDocumentor",
347 | "phpdoc",
348 | "reflection",
349 | "static analysis"
350 | ],
351 | "support": {
352 | "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
353 | "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
354 | },
355 | "time": "2020-06-27T09:03:43+00:00"
356 | },
357 | {
358 | "name": "phpdocumentor/reflection-docblock",
359 | "version": "5.2.2",
360 | "source": {
361 | "type": "git",
362 | "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
363 | "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
364 | },
365 | "dist": {
366 | "type": "zip",
367 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
368 | "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
369 | "shasum": ""
370 | },
371 | "require": {
372 | "ext-filter": "*",
373 | "php": "^7.2 || ^8.0",
374 | "phpdocumentor/reflection-common": "^2.2",
375 | "phpdocumentor/type-resolver": "^1.3",
376 | "webmozart/assert": "^1.9.1"
377 | },
378 | "require-dev": {
379 | "mockery/mockery": "~1.3.2"
380 | },
381 | "type": "library",
382 | "extra": {
383 | "branch-alias": {
384 | "dev-master": "5.x-dev"
385 | }
386 | },
387 | "autoload": {
388 | "psr-4": {
389 | "phpDocumentor\\Reflection\\": "src"
390 | }
391 | },
392 | "notification-url": "https://packagist.org/downloads/",
393 | "license": [
394 | "MIT"
395 | ],
396 | "authors": [
397 | {
398 | "name": "Mike van Riel",
399 | "email": "me@mikevanriel.com"
400 | },
401 | {
402 | "name": "Jaap van Otterdijk",
403 | "email": "account@ijaap.nl"
404 | }
405 | ],
406 | "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
407 | "support": {
408 | "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
409 | "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
410 | },
411 | "time": "2020-09-03T19:13:55+00:00"
412 | },
413 | {
414 | "name": "phpdocumentor/type-resolver",
415 | "version": "1.4.0",
416 | "source": {
417 | "type": "git",
418 | "url": "https://github.com/phpDocumentor/TypeResolver.git",
419 | "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
420 | },
421 | "dist": {
422 | "type": "zip",
423 | "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
424 | "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
425 | "shasum": ""
426 | },
427 | "require": {
428 | "php": "^7.2 || ^8.0",
429 | "phpdocumentor/reflection-common": "^2.0"
430 | },
431 | "require-dev": {
432 | "ext-tokenizer": "*"
433 | },
434 | "type": "library",
435 | "extra": {
436 | "branch-alias": {
437 | "dev-1.x": "1.x-dev"
438 | }
439 | },
440 | "autoload": {
441 | "psr-4": {
442 | "phpDocumentor\\Reflection\\": "src"
443 | }
444 | },
445 | "notification-url": "https://packagist.org/downloads/",
446 | "license": [
447 | "MIT"
448 | ],
449 | "authors": [
450 | {
451 | "name": "Mike van Riel",
452 | "email": "me@mikevanriel.com"
453 | }
454 | ],
455 | "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
456 | "support": {
457 | "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
458 | "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
459 | },
460 | "time": "2020-09-17T18:55:26+00:00"
461 | },
462 | {
463 | "name": "phpspec/prophecy",
464 | "version": "1.13.0",
465 | "source": {
466 | "type": "git",
467 | "url": "https://github.com/phpspec/prophecy.git",
468 | "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
469 | },
470 | "dist": {
471 | "type": "zip",
472 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
473 | "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
474 | "shasum": ""
475 | },
476 | "require": {
477 | "doctrine/instantiator": "^1.2",
478 | "php": "^7.2 || ~8.0, <8.1",
479 | "phpdocumentor/reflection-docblock": "^5.2",
480 | "sebastian/comparator": "^3.0 || ^4.0",
481 | "sebastian/recursion-context": "^3.0 || ^4.0"
482 | },
483 | "require-dev": {
484 | "phpspec/phpspec": "^6.0",
485 | "phpunit/phpunit": "^8.0 || ^9.0"
486 | },
487 | "type": "library",
488 | "extra": {
489 | "branch-alias": {
490 | "dev-master": "1.11.x-dev"
491 | }
492 | },
493 | "autoload": {
494 | "psr-4": {
495 | "Prophecy\\": "src/Prophecy"
496 | }
497 | },
498 | "notification-url": "https://packagist.org/downloads/",
499 | "license": [
500 | "MIT"
501 | ],
502 | "authors": [
503 | {
504 | "name": "Konstantin Kudryashov",
505 | "email": "ever.zet@gmail.com",
506 | "homepage": "http://everzet.com"
507 | },
508 | {
509 | "name": "Marcello Duarte",
510 | "email": "marcello.duarte@gmail.com"
511 | }
512 | ],
513 | "description": "Highly opinionated mocking framework for PHP 5.3+",
514 | "homepage": "https://github.com/phpspec/prophecy",
515 | "keywords": [
516 | "Double",
517 | "Dummy",
518 | "fake",
519 | "mock",
520 | "spy",
521 | "stub"
522 | ],
523 | "support": {
524 | "issues": "https://github.com/phpspec/prophecy/issues",
525 | "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
526 | },
527 | "time": "2021-03-17T13:42:18+00:00"
528 | },
529 | {
530 | "name": "phpunit/php-code-coverage",
531 | "version": "9.2.6",
532 | "source": {
533 | "type": "git",
534 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
535 | "reference": "f6293e1b30a2354e8428e004689671b83871edde"
536 | },
537 | "dist": {
538 | "type": "zip",
539 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde",
540 | "reference": "f6293e1b30a2354e8428e004689671b83871edde",
541 | "shasum": ""
542 | },
543 | "require": {
544 | "ext-dom": "*",
545 | "ext-libxml": "*",
546 | "ext-xmlwriter": "*",
547 | "nikic/php-parser": "^4.10.2",
548 | "php": ">=7.3",
549 | "phpunit/php-file-iterator": "^3.0.3",
550 | "phpunit/php-text-template": "^2.0.2",
551 | "sebastian/code-unit-reverse-lookup": "^2.0.2",
552 | "sebastian/complexity": "^2.0",
553 | "sebastian/environment": "^5.1.2",
554 | "sebastian/lines-of-code": "^1.0.3",
555 | "sebastian/version": "^3.0.1",
556 | "theseer/tokenizer": "^1.2.0"
557 | },
558 | "require-dev": {
559 | "phpunit/phpunit": "^9.3"
560 | },
561 | "suggest": {
562 | "ext-pcov": "*",
563 | "ext-xdebug": "*"
564 | },
565 | "type": "library",
566 | "extra": {
567 | "branch-alias": {
568 | "dev-master": "9.2-dev"
569 | }
570 | },
571 | "autoload": {
572 | "classmap": [
573 | "src/"
574 | ]
575 | },
576 | "notification-url": "https://packagist.org/downloads/",
577 | "license": [
578 | "BSD-3-Clause"
579 | ],
580 | "authors": [
581 | {
582 | "name": "Sebastian Bergmann",
583 | "email": "sebastian@phpunit.de",
584 | "role": "lead"
585 | }
586 | ],
587 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
588 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
589 | "keywords": [
590 | "coverage",
591 | "testing",
592 | "xunit"
593 | ],
594 | "support": {
595 | "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
596 | "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6"
597 | },
598 | "funding": [
599 | {
600 | "url": "https://github.com/sebastianbergmann",
601 | "type": "github"
602 | }
603 | ],
604 | "time": "2021-03-28T07:26:59+00:00"
605 | },
606 | {
607 | "name": "phpunit/php-file-iterator",
608 | "version": "3.0.5",
609 | "source": {
610 | "type": "git",
611 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
612 | "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
613 | },
614 | "dist": {
615 | "type": "zip",
616 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
617 | "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
618 | "shasum": ""
619 | },
620 | "require": {
621 | "php": ">=7.3"
622 | },
623 | "require-dev": {
624 | "phpunit/phpunit": "^9.3"
625 | },
626 | "type": "library",
627 | "extra": {
628 | "branch-alias": {
629 | "dev-master": "3.0-dev"
630 | }
631 | },
632 | "autoload": {
633 | "classmap": [
634 | "src/"
635 | ]
636 | },
637 | "notification-url": "https://packagist.org/downloads/",
638 | "license": [
639 | "BSD-3-Clause"
640 | ],
641 | "authors": [
642 | {
643 | "name": "Sebastian Bergmann",
644 | "email": "sebastian@phpunit.de",
645 | "role": "lead"
646 | }
647 | ],
648 | "description": "FilterIterator implementation that filters files based on a list of suffixes.",
649 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
650 | "keywords": [
651 | "filesystem",
652 | "iterator"
653 | ],
654 | "support": {
655 | "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
656 | "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
657 | },
658 | "funding": [
659 | {
660 | "url": "https://github.com/sebastianbergmann",
661 | "type": "github"
662 | }
663 | ],
664 | "time": "2020-09-28T05:57:25+00:00"
665 | },
666 | {
667 | "name": "phpunit/php-invoker",
668 | "version": "3.1.1",
669 | "source": {
670 | "type": "git",
671 | "url": "https://github.com/sebastianbergmann/php-invoker.git",
672 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
673 | },
674 | "dist": {
675 | "type": "zip",
676 | "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
677 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
678 | "shasum": ""
679 | },
680 | "require": {
681 | "php": ">=7.3"
682 | },
683 | "require-dev": {
684 | "ext-pcntl": "*",
685 | "phpunit/phpunit": "^9.3"
686 | },
687 | "suggest": {
688 | "ext-pcntl": "*"
689 | },
690 | "type": "library",
691 | "extra": {
692 | "branch-alias": {
693 | "dev-master": "3.1-dev"
694 | }
695 | },
696 | "autoload": {
697 | "classmap": [
698 | "src/"
699 | ]
700 | },
701 | "notification-url": "https://packagist.org/downloads/",
702 | "license": [
703 | "BSD-3-Clause"
704 | ],
705 | "authors": [
706 | {
707 | "name": "Sebastian Bergmann",
708 | "email": "sebastian@phpunit.de",
709 | "role": "lead"
710 | }
711 | ],
712 | "description": "Invoke callables with a timeout",
713 | "homepage": "https://github.com/sebastianbergmann/php-invoker/",
714 | "keywords": [
715 | "process"
716 | ],
717 | "support": {
718 | "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
719 | "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
720 | },
721 | "funding": [
722 | {
723 | "url": "https://github.com/sebastianbergmann",
724 | "type": "github"
725 | }
726 | ],
727 | "time": "2020-09-28T05:58:55+00:00"
728 | },
729 | {
730 | "name": "phpunit/php-text-template",
731 | "version": "2.0.4",
732 | "source": {
733 | "type": "git",
734 | "url": "https://github.com/sebastianbergmann/php-text-template.git",
735 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
736 | },
737 | "dist": {
738 | "type": "zip",
739 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
740 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
741 | "shasum": ""
742 | },
743 | "require": {
744 | "php": ">=7.3"
745 | },
746 | "require-dev": {
747 | "phpunit/phpunit": "^9.3"
748 | },
749 | "type": "library",
750 | "extra": {
751 | "branch-alias": {
752 | "dev-master": "2.0-dev"
753 | }
754 | },
755 | "autoload": {
756 | "classmap": [
757 | "src/"
758 | ]
759 | },
760 | "notification-url": "https://packagist.org/downloads/",
761 | "license": [
762 | "BSD-3-Clause"
763 | ],
764 | "authors": [
765 | {
766 | "name": "Sebastian Bergmann",
767 | "email": "sebastian@phpunit.de",
768 | "role": "lead"
769 | }
770 | ],
771 | "description": "Simple template engine.",
772 | "homepage": "https://github.com/sebastianbergmann/php-text-template/",
773 | "keywords": [
774 | "template"
775 | ],
776 | "support": {
777 | "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
778 | "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
779 | },
780 | "funding": [
781 | {
782 | "url": "https://github.com/sebastianbergmann",
783 | "type": "github"
784 | }
785 | ],
786 | "time": "2020-10-26T05:33:50+00:00"
787 | },
788 | {
789 | "name": "phpunit/php-timer",
790 | "version": "5.0.3",
791 | "source": {
792 | "type": "git",
793 | "url": "https://github.com/sebastianbergmann/php-timer.git",
794 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
795 | },
796 | "dist": {
797 | "type": "zip",
798 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
799 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
800 | "shasum": ""
801 | },
802 | "require": {
803 | "php": ">=7.3"
804 | },
805 | "require-dev": {
806 | "phpunit/phpunit": "^9.3"
807 | },
808 | "type": "library",
809 | "extra": {
810 | "branch-alias": {
811 | "dev-master": "5.0-dev"
812 | }
813 | },
814 | "autoload": {
815 | "classmap": [
816 | "src/"
817 | ]
818 | },
819 | "notification-url": "https://packagist.org/downloads/",
820 | "license": [
821 | "BSD-3-Clause"
822 | ],
823 | "authors": [
824 | {
825 | "name": "Sebastian Bergmann",
826 | "email": "sebastian@phpunit.de",
827 | "role": "lead"
828 | }
829 | ],
830 | "description": "Utility class for timing",
831 | "homepage": "https://github.com/sebastianbergmann/php-timer/",
832 | "keywords": [
833 | "timer"
834 | ],
835 | "support": {
836 | "issues": "https://github.com/sebastianbergmann/php-timer/issues",
837 | "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
838 | },
839 | "funding": [
840 | {
841 | "url": "https://github.com/sebastianbergmann",
842 | "type": "github"
843 | }
844 | ],
845 | "time": "2020-10-26T13:16:10+00:00"
846 | },
847 | {
848 | "name": "phpunit/phpunit",
849 | "version": "9.5.6",
850 | "source": {
851 | "type": "git",
852 | "url": "https://github.com/sebastianbergmann/phpunit.git",
853 | "reference": "fb9b8333f14e3dce976a60ef6a7e05c7c7ed8bfb"
854 | },
855 | "dist": {
856 | "type": "zip",
857 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fb9b8333f14e3dce976a60ef6a7e05c7c7ed8bfb",
858 | "reference": "fb9b8333f14e3dce976a60ef6a7e05c7c7ed8bfb",
859 | "shasum": ""
860 | },
861 | "require": {
862 | "doctrine/instantiator": "^1.3.1",
863 | "ext-dom": "*",
864 | "ext-json": "*",
865 | "ext-libxml": "*",
866 | "ext-mbstring": "*",
867 | "ext-xml": "*",
868 | "ext-xmlwriter": "*",
869 | "myclabs/deep-copy": "^1.10.1",
870 | "phar-io/manifest": "^2.0.1",
871 | "phar-io/version": "^3.0.2",
872 | "php": ">=7.3",
873 | "phpspec/prophecy": "^1.12.1",
874 | "phpunit/php-code-coverage": "^9.2.3",
875 | "phpunit/php-file-iterator": "^3.0.5",
876 | "phpunit/php-invoker": "^3.1.1",
877 | "phpunit/php-text-template": "^2.0.3",
878 | "phpunit/php-timer": "^5.0.2",
879 | "sebastian/cli-parser": "^1.0.1",
880 | "sebastian/code-unit": "^1.0.6",
881 | "sebastian/comparator": "^4.0.5",
882 | "sebastian/diff": "^4.0.3",
883 | "sebastian/environment": "^5.1.3",
884 | "sebastian/exporter": "^4.0.3",
885 | "sebastian/global-state": "^5.0.1",
886 | "sebastian/object-enumerator": "^4.0.3",
887 | "sebastian/resource-operations": "^3.0.3",
888 | "sebastian/type": "^2.3.4",
889 | "sebastian/version": "^3.0.2"
890 | },
891 | "require-dev": {
892 | "ext-pdo": "*",
893 | "phpspec/prophecy-phpunit": "^2.0.1"
894 | },
895 | "suggest": {
896 | "ext-soap": "*",
897 | "ext-xdebug": "*"
898 | },
899 | "bin": [
900 | "phpunit"
901 | ],
902 | "type": "library",
903 | "extra": {
904 | "branch-alias": {
905 | "dev-master": "9.5-dev"
906 | }
907 | },
908 | "autoload": {
909 | "classmap": [
910 | "src/"
911 | ],
912 | "files": [
913 | "src/Framework/Assert/Functions.php"
914 | ]
915 | },
916 | "notification-url": "https://packagist.org/downloads/",
917 | "license": [
918 | "BSD-3-Clause"
919 | ],
920 | "authors": [
921 | {
922 | "name": "Sebastian Bergmann",
923 | "email": "sebastian@phpunit.de",
924 | "role": "lead"
925 | }
926 | ],
927 | "description": "The PHP Unit Testing framework.",
928 | "homepage": "https://phpunit.de/",
929 | "keywords": [
930 | "phpunit",
931 | "testing",
932 | "xunit"
933 | ],
934 | "support": {
935 | "issues": "https://github.com/sebastianbergmann/phpunit/issues",
936 | "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.6"
937 | },
938 | "funding": [
939 | {
940 | "url": "https://phpunit.de/donate.html",
941 | "type": "custom"
942 | },
943 | {
944 | "url": "https://github.com/sebastianbergmann",
945 | "type": "github"
946 | }
947 | ],
948 | "time": "2021-06-23T05:14:38+00:00"
949 | },
950 | {
951 | "name": "sebastian/cli-parser",
952 | "version": "1.0.1",
953 | "source": {
954 | "type": "git",
955 | "url": "https://github.com/sebastianbergmann/cli-parser.git",
956 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
957 | },
958 | "dist": {
959 | "type": "zip",
960 | "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
961 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
962 | "shasum": ""
963 | },
964 | "require": {
965 | "php": ">=7.3"
966 | },
967 | "require-dev": {
968 | "phpunit/phpunit": "^9.3"
969 | },
970 | "type": "library",
971 | "extra": {
972 | "branch-alias": {
973 | "dev-master": "1.0-dev"
974 | }
975 | },
976 | "autoload": {
977 | "classmap": [
978 | "src/"
979 | ]
980 | },
981 | "notification-url": "https://packagist.org/downloads/",
982 | "license": [
983 | "BSD-3-Clause"
984 | ],
985 | "authors": [
986 | {
987 | "name": "Sebastian Bergmann",
988 | "email": "sebastian@phpunit.de",
989 | "role": "lead"
990 | }
991 | ],
992 | "description": "Library for parsing CLI options",
993 | "homepage": "https://github.com/sebastianbergmann/cli-parser",
994 | "support": {
995 | "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
996 | "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
997 | },
998 | "funding": [
999 | {
1000 | "url": "https://github.com/sebastianbergmann",
1001 | "type": "github"
1002 | }
1003 | ],
1004 | "time": "2020-09-28T06:08:49+00:00"
1005 | },
1006 | {
1007 | "name": "sebastian/code-unit",
1008 | "version": "1.0.8",
1009 | "source": {
1010 | "type": "git",
1011 | "url": "https://github.com/sebastianbergmann/code-unit.git",
1012 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
1013 | },
1014 | "dist": {
1015 | "type": "zip",
1016 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
1017 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
1018 | "shasum": ""
1019 | },
1020 | "require": {
1021 | "php": ">=7.3"
1022 | },
1023 | "require-dev": {
1024 | "phpunit/phpunit": "^9.3"
1025 | },
1026 | "type": "library",
1027 | "extra": {
1028 | "branch-alias": {
1029 | "dev-master": "1.0-dev"
1030 | }
1031 | },
1032 | "autoload": {
1033 | "classmap": [
1034 | "src/"
1035 | ]
1036 | },
1037 | "notification-url": "https://packagist.org/downloads/",
1038 | "license": [
1039 | "BSD-3-Clause"
1040 | ],
1041 | "authors": [
1042 | {
1043 | "name": "Sebastian Bergmann",
1044 | "email": "sebastian@phpunit.de",
1045 | "role": "lead"
1046 | }
1047 | ],
1048 | "description": "Collection of value objects that represent the PHP code units",
1049 | "homepage": "https://github.com/sebastianbergmann/code-unit",
1050 | "support": {
1051 | "issues": "https://github.com/sebastianbergmann/code-unit/issues",
1052 | "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
1053 | },
1054 | "funding": [
1055 | {
1056 | "url": "https://github.com/sebastianbergmann",
1057 | "type": "github"
1058 | }
1059 | ],
1060 | "time": "2020-10-26T13:08:54+00:00"
1061 | },
1062 | {
1063 | "name": "sebastian/code-unit-reverse-lookup",
1064 | "version": "2.0.3",
1065 | "source": {
1066 | "type": "git",
1067 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
1068 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
1069 | },
1070 | "dist": {
1071 | "type": "zip",
1072 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
1073 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
1074 | "shasum": ""
1075 | },
1076 | "require": {
1077 | "php": ">=7.3"
1078 | },
1079 | "require-dev": {
1080 | "phpunit/phpunit": "^9.3"
1081 | },
1082 | "type": "library",
1083 | "extra": {
1084 | "branch-alias": {
1085 | "dev-master": "2.0-dev"
1086 | }
1087 | },
1088 | "autoload": {
1089 | "classmap": [
1090 | "src/"
1091 | ]
1092 | },
1093 | "notification-url": "https://packagist.org/downloads/",
1094 | "license": [
1095 | "BSD-3-Clause"
1096 | ],
1097 | "authors": [
1098 | {
1099 | "name": "Sebastian Bergmann",
1100 | "email": "sebastian@phpunit.de"
1101 | }
1102 | ],
1103 | "description": "Looks up which function or method a line of code belongs to",
1104 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
1105 | "support": {
1106 | "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
1107 | "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
1108 | },
1109 | "funding": [
1110 | {
1111 | "url": "https://github.com/sebastianbergmann",
1112 | "type": "github"
1113 | }
1114 | ],
1115 | "time": "2020-09-28T05:30:19+00:00"
1116 | },
1117 | {
1118 | "name": "sebastian/comparator",
1119 | "version": "4.0.6",
1120 | "source": {
1121 | "type": "git",
1122 | "url": "https://github.com/sebastianbergmann/comparator.git",
1123 | "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
1124 | },
1125 | "dist": {
1126 | "type": "zip",
1127 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
1128 | "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
1129 | "shasum": ""
1130 | },
1131 | "require": {
1132 | "php": ">=7.3",
1133 | "sebastian/diff": "^4.0",
1134 | "sebastian/exporter": "^4.0"
1135 | },
1136 | "require-dev": {
1137 | "phpunit/phpunit": "^9.3"
1138 | },
1139 | "type": "library",
1140 | "extra": {
1141 | "branch-alias": {
1142 | "dev-master": "4.0-dev"
1143 | }
1144 | },
1145 | "autoload": {
1146 | "classmap": [
1147 | "src/"
1148 | ]
1149 | },
1150 | "notification-url": "https://packagist.org/downloads/",
1151 | "license": [
1152 | "BSD-3-Clause"
1153 | ],
1154 | "authors": [
1155 | {
1156 | "name": "Sebastian Bergmann",
1157 | "email": "sebastian@phpunit.de"
1158 | },
1159 | {
1160 | "name": "Jeff Welch",
1161 | "email": "whatthejeff@gmail.com"
1162 | },
1163 | {
1164 | "name": "Volker Dusch",
1165 | "email": "github@wallbash.com"
1166 | },
1167 | {
1168 | "name": "Bernhard Schussek",
1169 | "email": "bschussek@2bepublished.at"
1170 | }
1171 | ],
1172 | "description": "Provides the functionality to compare PHP values for equality",
1173 | "homepage": "https://github.com/sebastianbergmann/comparator",
1174 | "keywords": [
1175 | "comparator",
1176 | "compare",
1177 | "equality"
1178 | ],
1179 | "support": {
1180 | "issues": "https://github.com/sebastianbergmann/comparator/issues",
1181 | "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
1182 | },
1183 | "funding": [
1184 | {
1185 | "url": "https://github.com/sebastianbergmann",
1186 | "type": "github"
1187 | }
1188 | ],
1189 | "time": "2020-10-26T15:49:45+00:00"
1190 | },
1191 | {
1192 | "name": "sebastian/complexity",
1193 | "version": "2.0.2",
1194 | "source": {
1195 | "type": "git",
1196 | "url": "https://github.com/sebastianbergmann/complexity.git",
1197 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
1198 | },
1199 | "dist": {
1200 | "type": "zip",
1201 | "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
1202 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
1203 | "shasum": ""
1204 | },
1205 | "require": {
1206 | "nikic/php-parser": "^4.7",
1207 | "php": ">=7.3"
1208 | },
1209 | "require-dev": {
1210 | "phpunit/phpunit": "^9.3"
1211 | },
1212 | "type": "library",
1213 | "extra": {
1214 | "branch-alias": {
1215 | "dev-master": "2.0-dev"
1216 | }
1217 | },
1218 | "autoload": {
1219 | "classmap": [
1220 | "src/"
1221 | ]
1222 | },
1223 | "notification-url": "https://packagist.org/downloads/",
1224 | "license": [
1225 | "BSD-3-Clause"
1226 | ],
1227 | "authors": [
1228 | {
1229 | "name": "Sebastian Bergmann",
1230 | "email": "sebastian@phpunit.de",
1231 | "role": "lead"
1232 | }
1233 | ],
1234 | "description": "Library for calculating the complexity of PHP code units",
1235 | "homepage": "https://github.com/sebastianbergmann/complexity",
1236 | "support": {
1237 | "issues": "https://github.com/sebastianbergmann/complexity/issues",
1238 | "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
1239 | },
1240 | "funding": [
1241 | {
1242 | "url": "https://github.com/sebastianbergmann",
1243 | "type": "github"
1244 | }
1245 | ],
1246 | "time": "2020-10-26T15:52:27+00:00"
1247 | },
1248 | {
1249 | "name": "sebastian/diff",
1250 | "version": "4.0.4",
1251 | "source": {
1252 | "type": "git",
1253 | "url": "https://github.com/sebastianbergmann/diff.git",
1254 | "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
1255 | },
1256 | "dist": {
1257 | "type": "zip",
1258 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
1259 | "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
1260 | "shasum": ""
1261 | },
1262 | "require": {
1263 | "php": ">=7.3"
1264 | },
1265 | "require-dev": {
1266 | "phpunit/phpunit": "^9.3",
1267 | "symfony/process": "^4.2 || ^5"
1268 | },
1269 | "type": "library",
1270 | "extra": {
1271 | "branch-alias": {
1272 | "dev-master": "4.0-dev"
1273 | }
1274 | },
1275 | "autoload": {
1276 | "classmap": [
1277 | "src/"
1278 | ]
1279 | },
1280 | "notification-url": "https://packagist.org/downloads/",
1281 | "license": [
1282 | "BSD-3-Clause"
1283 | ],
1284 | "authors": [
1285 | {
1286 | "name": "Sebastian Bergmann",
1287 | "email": "sebastian@phpunit.de"
1288 | },
1289 | {
1290 | "name": "Kore Nordmann",
1291 | "email": "mail@kore-nordmann.de"
1292 | }
1293 | ],
1294 | "description": "Diff implementation",
1295 | "homepage": "https://github.com/sebastianbergmann/diff",
1296 | "keywords": [
1297 | "diff",
1298 | "udiff",
1299 | "unidiff",
1300 | "unified diff"
1301 | ],
1302 | "support": {
1303 | "issues": "https://github.com/sebastianbergmann/diff/issues",
1304 | "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
1305 | },
1306 | "funding": [
1307 | {
1308 | "url": "https://github.com/sebastianbergmann",
1309 | "type": "github"
1310 | }
1311 | ],
1312 | "time": "2020-10-26T13:10:38+00:00"
1313 | },
1314 | {
1315 | "name": "sebastian/environment",
1316 | "version": "5.1.3",
1317 | "source": {
1318 | "type": "git",
1319 | "url": "https://github.com/sebastianbergmann/environment.git",
1320 | "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
1321 | },
1322 | "dist": {
1323 | "type": "zip",
1324 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
1325 | "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
1326 | "shasum": ""
1327 | },
1328 | "require": {
1329 | "php": ">=7.3"
1330 | },
1331 | "require-dev": {
1332 | "phpunit/phpunit": "^9.3"
1333 | },
1334 | "suggest": {
1335 | "ext-posix": "*"
1336 | },
1337 | "type": "library",
1338 | "extra": {
1339 | "branch-alias": {
1340 | "dev-master": "5.1-dev"
1341 | }
1342 | },
1343 | "autoload": {
1344 | "classmap": [
1345 | "src/"
1346 | ]
1347 | },
1348 | "notification-url": "https://packagist.org/downloads/",
1349 | "license": [
1350 | "BSD-3-Clause"
1351 | ],
1352 | "authors": [
1353 | {
1354 | "name": "Sebastian Bergmann",
1355 | "email": "sebastian@phpunit.de"
1356 | }
1357 | ],
1358 | "description": "Provides functionality to handle HHVM/PHP environments",
1359 | "homepage": "http://www.github.com/sebastianbergmann/environment",
1360 | "keywords": [
1361 | "Xdebug",
1362 | "environment",
1363 | "hhvm"
1364 | ],
1365 | "support": {
1366 | "issues": "https://github.com/sebastianbergmann/environment/issues",
1367 | "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
1368 | },
1369 | "funding": [
1370 | {
1371 | "url": "https://github.com/sebastianbergmann",
1372 | "type": "github"
1373 | }
1374 | ],
1375 | "time": "2020-09-28T05:52:38+00:00"
1376 | },
1377 | {
1378 | "name": "sebastian/exporter",
1379 | "version": "4.0.3",
1380 | "source": {
1381 | "type": "git",
1382 | "url": "https://github.com/sebastianbergmann/exporter.git",
1383 | "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
1384 | },
1385 | "dist": {
1386 | "type": "zip",
1387 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
1388 | "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
1389 | "shasum": ""
1390 | },
1391 | "require": {
1392 | "php": ">=7.3",
1393 | "sebastian/recursion-context": "^4.0"
1394 | },
1395 | "require-dev": {
1396 | "ext-mbstring": "*",
1397 | "phpunit/phpunit": "^9.3"
1398 | },
1399 | "type": "library",
1400 | "extra": {
1401 | "branch-alias": {
1402 | "dev-master": "4.0-dev"
1403 | }
1404 | },
1405 | "autoload": {
1406 | "classmap": [
1407 | "src/"
1408 | ]
1409 | },
1410 | "notification-url": "https://packagist.org/downloads/",
1411 | "license": [
1412 | "BSD-3-Clause"
1413 | ],
1414 | "authors": [
1415 | {
1416 | "name": "Sebastian Bergmann",
1417 | "email": "sebastian@phpunit.de"
1418 | },
1419 | {
1420 | "name": "Jeff Welch",
1421 | "email": "whatthejeff@gmail.com"
1422 | },
1423 | {
1424 | "name": "Volker Dusch",
1425 | "email": "github@wallbash.com"
1426 | },
1427 | {
1428 | "name": "Adam Harvey",
1429 | "email": "aharvey@php.net"
1430 | },
1431 | {
1432 | "name": "Bernhard Schussek",
1433 | "email": "bschussek@gmail.com"
1434 | }
1435 | ],
1436 | "description": "Provides the functionality to export PHP variables for visualization",
1437 | "homepage": "http://www.github.com/sebastianbergmann/exporter",
1438 | "keywords": [
1439 | "export",
1440 | "exporter"
1441 | ],
1442 | "support": {
1443 | "issues": "https://github.com/sebastianbergmann/exporter/issues",
1444 | "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
1445 | },
1446 | "funding": [
1447 | {
1448 | "url": "https://github.com/sebastianbergmann",
1449 | "type": "github"
1450 | }
1451 | ],
1452 | "time": "2020-09-28T05:24:23+00:00"
1453 | },
1454 | {
1455 | "name": "sebastian/global-state",
1456 | "version": "5.0.3",
1457 | "source": {
1458 | "type": "git",
1459 | "url": "https://github.com/sebastianbergmann/global-state.git",
1460 | "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49"
1461 | },
1462 | "dist": {
1463 | "type": "zip",
1464 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/23bd5951f7ff26f12d4e3242864df3e08dec4e49",
1465 | "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49",
1466 | "shasum": ""
1467 | },
1468 | "require": {
1469 | "php": ">=7.3",
1470 | "sebastian/object-reflector": "^2.0",
1471 | "sebastian/recursion-context": "^4.0"
1472 | },
1473 | "require-dev": {
1474 | "ext-dom": "*",
1475 | "phpunit/phpunit": "^9.3"
1476 | },
1477 | "suggest": {
1478 | "ext-uopz": "*"
1479 | },
1480 | "type": "library",
1481 | "extra": {
1482 | "branch-alias": {
1483 | "dev-master": "5.0-dev"
1484 | }
1485 | },
1486 | "autoload": {
1487 | "classmap": [
1488 | "src/"
1489 | ]
1490 | },
1491 | "notification-url": "https://packagist.org/downloads/",
1492 | "license": [
1493 | "BSD-3-Clause"
1494 | ],
1495 | "authors": [
1496 | {
1497 | "name": "Sebastian Bergmann",
1498 | "email": "sebastian@phpunit.de"
1499 | }
1500 | ],
1501 | "description": "Snapshotting of global state",
1502 | "homepage": "http://www.github.com/sebastianbergmann/global-state",
1503 | "keywords": [
1504 | "global state"
1505 | ],
1506 | "support": {
1507 | "issues": "https://github.com/sebastianbergmann/global-state/issues",
1508 | "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.3"
1509 | },
1510 | "funding": [
1511 | {
1512 | "url": "https://github.com/sebastianbergmann",
1513 | "type": "github"
1514 | }
1515 | ],
1516 | "time": "2021-06-11T13:31:12+00:00"
1517 | },
1518 | {
1519 | "name": "sebastian/lines-of-code",
1520 | "version": "1.0.3",
1521 | "source": {
1522 | "type": "git",
1523 | "url": "https://github.com/sebastianbergmann/lines-of-code.git",
1524 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
1525 | },
1526 | "dist": {
1527 | "type": "zip",
1528 | "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
1529 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
1530 | "shasum": ""
1531 | },
1532 | "require": {
1533 | "nikic/php-parser": "^4.6",
1534 | "php": ">=7.3"
1535 | },
1536 | "require-dev": {
1537 | "phpunit/phpunit": "^9.3"
1538 | },
1539 | "type": "library",
1540 | "extra": {
1541 | "branch-alias": {
1542 | "dev-master": "1.0-dev"
1543 | }
1544 | },
1545 | "autoload": {
1546 | "classmap": [
1547 | "src/"
1548 | ]
1549 | },
1550 | "notification-url": "https://packagist.org/downloads/",
1551 | "license": [
1552 | "BSD-3-Clause"
1553 | ],
1554 | "authors": [
1555 | {
1556 | "name": "Sebastian Bergmann",
1557 | "email": "sebastian@phpunit.de",
1558 | "role": "lead"
1559 | }
1560 | ],
1561 | "description": "Library for counting the lines of code in PHP source code",
1562 | "homepage": "https://github.com/sebastianbergmann/lines-of-code",
1563 | "support": {
1564 | "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
1565 | "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
1566 | },
1567 | "funding": [
1568 | {
1569 | "url": "https://github.com/sebastianbergmann",
1570 | "type": "github"
1571 | }
1572 | ],
1573 | "time": "2020-11-28T06:42:11+00:00"
1574 | },
1575 | {
1576 | "name": "sebastian/object-enumerator",
1577 | "version": "4.0.4",
1578 | "source": {
1579 | "type": "git",
1580 | "url": "https://github.com/sebastianbergmann/object-enumerator.git",
1581 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
1582 | },
1583 | "dist": {
1584 | "type": "zip",
1585 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
1586 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
1587 | "shasum": ""
1588 | },
1589 | "require": {
1590 | "php": ">=7.3",
1591 | "sebastian/object-reflector": "^2.0",
1592 | "sebastian/recursion-context": "^4.0"
1593 | },
1594 | "require-dev": {
1595 | "phpunit/phpunit": "^9.3"
1596 | },
1597 | "type": "library",
1598 | "extra": {
1599 | "branch-alias": {
1600 | "dev-master": "4.0-dev"
1601 | }
1602 | },
1603 | "autoload": {
1604 | "classmap": [
1605 | "src/"
1606 | ]
1607 | },
1608 | "notification-url": "https://packagist.org/downloads/",
1609 | "license": [
1610 | "BSD-3-Clause"
1611 | ],
1612 | "authors": [
1613 | {
1614 | "name": "Sebastian Bergmann",
1615 | "email": "sebastian@phpunit.de"
1616 | }
1617 | ],
1618 | "description": "Traverses array structures and object graphs to enumerate all referenced objects",
1619 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
1620 | "support": {
1621 | "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
1622 | "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
1623 | },
1624 | "funding": [
1625 | {
1626 | "url": "https://github.com/sebastianbergmann",
1627 | "type": "github"
1628 | }
1629 | ],
1630 | "time": "2020-10-26T13:12:34+00:00"
1631 | },
1632 | {
1633 | "name": "sebastian/object-reflector",
1634 | "version": "2.0.4",
1635 | "source": {
1636 | "type": "git",
1637 | "url": "https://github.com/sebastianbergmann/object-reflector.git",
1638 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
1639 | },
1640 | "dist": {
1641 | "type": "zip",
1642 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
1643 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
1644 | "shasum": ""
1645 | },
1646 | "require": {
1647 | "php": ">=7.3"
1648 | },
1649 | "require-dev": {
1650 | "phpunit/phpunit": "^9.3"
1651 | },
1652 | "type": "library",
1653 | "extra": {
1654 | "branch-alias": {
1655 | "dev-master": "2.0-dev"
1656 | }
1657 | },
1658 | "autoload": {
1659 | "classmap": [
1660 | "src/"
1661 | ]
1662 | },
1663 | "notification-url": "https://packagist.org/downloads/",
1664 | "license": [
1665 | "BSD-3-Clause"
1666 | ],
1667 | "authors": [
1668 | {
1669 | "name": "Sebastian Bergmann",
1670 | "email": "sebastian@phpunit.de"
1671 | }
1672 | ],
1673 | "description": "Allows reflection of object attributes, including inherited and non-public ones",
1674 | "homepage": "https://github.com/sebastianbergmann/object-reflector/",
1675 | "support": {
1676 | "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
1677 | "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
1678 | },
1679 | "funding": [
1680 | {
1681 | "url": "https://github.com/sebastianbergmann",
1682 | "type": "github"
1683 | }
1684 | ],
1685 | "time": "2020-10-26T13:14:26+00:00"
1686 | },
1687 | {
1688 | "name": "sebastian/recursion-context",
1689 | "version": "4.0.4",
1690 | "source": {
1691 | "type": "git",
1692 | "url": "https://github.com/sebastianbergmann/recursion-context.git",
1693 | "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
1694 | },
1695 | "dist": {
1696 | "type": "zip",
1697 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
1698 | "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
1699 | "shasum": ""
1700 | },
1701 | "require": {
1702 | "php": ">=7.3"
1703 | },
1704 | "require-dev": {
1705 | "phpunit/phpunit": "^9.3"
1706 | },
1707 | "type": "library",
1708 | "extra": {
1709 | "branch-alias": {
1710 | "dev-master": "4.0-dev"
1711 | }
1712 | },
1713 | "autoload": {
1714 | "classmap": [
1715 | "src/"
1716 | ]
1717 | },
1718 | "notification-url": "https://packagist.org/downloads/",
1719 | "license": [
1720 | "BSD-3-Clause"
1721 | ],
1722 | "authors": [
1723 | {
1724 | "name": "Sebastian Bergmann",
1725 | "email": "sebastian@phpunit.de"
1726 | },
1727 | {
1728 | "name": "Jeff Welch",
1729 | "email": "whatthejeff@gmail.com"
1730 | },
1731 | {
1732 | "name": "Adam Harvey",
1733 | "email": "aharvey@php.net"
1734 | }
1735 | ],
1736 | "description": "Provides functionality to recursively process PHP variables",
1737 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
1738 | "support": {
1739 | "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
1740 | "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
1741 | },
1742 | "funding": [
1743 | {
1744 | "url": "https://github.com/sebastianbergmann",
1745 | "type": "github"
1746 | }
1747 | ],
1748 | "time": "2020-10-26T13:17:30+00:00"
1749 | },
1750 | {
1751 | "name": "sebastian/resource-operations",
1752 | "version": "3.0.3",
1753 | "source": {
1754 | "type": "git",
1755 | "url": "https://github.com/sebastianbergmann/resource-operations.git",
1756 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
1757 | },
1758 | "dist": {
1759 | "type": "zip",
1760 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
1761 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
1762 | "shasum": ""
1763 | },
1764 | "require": {
1765 | "php": ">=7.3"
1766 | },
1767 | "require-dev": {
1768 | "phpunit/phpunit": "^9.0"
1769 | },
1770 | "type": "library",
1771 | "extra": {
1772 | "branch-alias": {
1773 | "dev-master": "3.0-dev"
1774 | }
1775 | },
1776 | "autoload": {
1777 | "classmap": [
1778 | "src/"
1779 | ]
1780 | },
1781 | "notification-url": "https://packagist.org/downloads/",
1782 | "license": [
1783 | "BSD-3-Clause"
1784 | ],
1785 | "authors": [
1786 | {
1787 | "name": "Sebastian Bergmann",
1788 | "email": "sebastian@phpunit.de"
1789 | }
1790 | ],
1791 | "description": "Provides a list of PHP built-in functions that operate on resources",
1792 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
1793 | "support": {
1794 | "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
1795 | "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
1796 | },
1797 | "funding": [
1798 | {
1799 | "url": "https://github.com/sebastianbergmann",
1800 | "type": "github"
1801 | }
1802 | ],
1803 | "time": "2020-09-28T06:45:17+00:00"
1804 | },
1805 | {
1806 | "name": "sebastian/type",
1807 | "version": "2.3.4",
1808 | "source": {
1809 | "type": "git",
1810 | "url": "https://github.com/sebastianbergmann/type.git",
1811 | "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
1812 | },
1813 | "dist": {
1814 | "type": "zip",
1815 | "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
1816 | "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
1817 | "shasum": ""
1818 | },
1819 | "require": {
1820 | "php": ">=7.3"
1821 | },
1822 | "require-dev": {
1823 | "phpunit/phpunit": "^9.3"
1824 | },
1825 | "type": "library",
1826 | "extra": {
1827 | "branch-alias": {
1828 | "dev-master": "2.3-dev"
1829 | }
1830 | },
1831 | "autoload": {
1832 | "classmap": [
1833 | "src/"
1834 | ]
1835 | },
1836 | "notification-url": "https://packagist.org/downloads/",
1837 | "license": [
1838 | "BSD-3-Clause"
1839 | ],
1840 | "authors": [
1841 | {
1842 | "name": "Sebastian Bergmann",
1843 | "email": "sebastian@phpunit.de",
1844 | "role": "lead"
1845 | }
1846 | ],
1847 | "description": "Collection of value objects that represent the types of the PHP type system",
1848 | "homepage": "https://github.com/sebastianbergmann/type",
1849 | "support": {
1850 | "issues": "https://github.com/sebastianbergmann/type/issues",
1851 | "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
1852 | },
1853 | "funding": [
1854 | {
1855 | "url": "https://github.com/sebastianbergmann",
1856 | "type": "github"
1857 | }
1858 | ],
1859 | "time": "2021-06-15T12:49:02+00:00"
1860 | },
1861 | {
1862 | "name": "sebastian/version",
1863 | "version": "3.0.2",
1864 | "source": {
1865 | "type": "git",
1866 | "url": "https://github.com/sebastianbergmann/version.git",
1867 | "reference": "c6c1022351a901512170118436c764e473f6de8c"
1868 | },
1869 | "dist": {
1870 | "type": "zip",
1871 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
1872 | "reference": "c6c1022351a901512170118436c764e473f6de8c",
1873 | "shasum": ""
1874 | },
1875 | "require": {
1876 | "php": ">=7.3"
1877 | },
1878 | "type": "library",
1879 | "extra": {
1880 | "branch-alias": {
1881 | "dev-master": "3.0-dev"
1882 | }
1883 | },
1884 | "autoload": {
1885 | "classmap": [
1886 | "src/"
1887 | ]
1888 | },
1889 | "notification-url": "https://packagist.org/downloads/",
1890 | "license": [
1891 | "BSD-3-Clause"
1892 | ],
1893 | "authors": [
1894 | {
1895 | "name": "Sebastian Bergmann",
1896 | "email": "sebastian@phpunit.de",
1897 | "role": "lead"
1898 | }
1899 | ],
1900 | "description": "Library that helps with managing the version number of Git-hosted PHP projects",
1901 | "homepage": "https://github.com/sebastianbergmann/version",
1902 | "support": {
1903 | "issues": "https://github.com/sebastianbergmann/version/issues",
1904 | "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
1905 | },
1906 | "funding": [
1907 | {
1908 | "url": "https://github.com/sebastianbergmann",
1909 | "type": "github"
1910 | }
1911 | ],
1912 | "time": "2020-09-28T06:39:44+00:00"
1913 | },
1914 | {
1915 | "name": "squizlabs/php_codesniffer",
1916 | "version": "3.6.0",
1917 | "source": {
1918 | "type": "git",
1919 | "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
1920 | "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625"
1921 | },
1922 | "dist": {
1923 | "type": "zip",
1924 | "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ffced0d2c8fa8e6cdc4d695a743271fab6c38625",
1925 | "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625",
1926 | "shasum": ""
1927 | },
1928 | "require": {
1929 | "ext-simplexml": "*",
1930 | "ext-tokenizer": "*",
1931 | "ext-xmlwriter": "*",
1932 | "php": ">=5.4.0"
1933 | },
1934 | "require-dev": {
1935 | "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
1936 | },
1937 | "bin": [
1938 | "bin/phpcs",
1939 | "bin/phpcbf"
1940 | ],
1941 | "type": "library",
1942 | "extra": {
1943 | "branch-alias": {
1944 | "dev-master": "3.x-dev"
1945 | }
1946 | },
1947 | "notification-url": "https://packagist.org/downloads/",
1948 | "license": [
1949 | "BSD-3-Clause"
1950 | ],
1951 | "authors": [
1952 | {
1953 | "name": "Greg Sherwood",
1954 | "role": "lead"
1955 | }
1956 | ],
1957 | "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
1958 | "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
1959 | "keywords": [
1960 | "phpcs",
1961 | "standards"
1962 | ],
1963 | "support": {
1964 | "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
1965 | "source": "https://github.com/squizlabs/PHP_CodeSniffer",
1966 | "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
1967 | },
1968 | "time": "2021-04-09T00:54:41+00:00"
1969 | },
1970 | {
1971 | "name": "symfony/polyfill-ctype",
1972 | "version": "v1.23.0",
1973 | "source": {
1974 | "type": "git",
1975 | "url": "https://github.com/symfony/polyfill-ctype.git",
1976 | "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
1977 | },
1978 | "dist": {
1979 | "type": "zip",
1980 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
1981 | "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
1982 | "shasum": ""
1983 | },
1984 | "require": {
1985 | "php": ">=7.1"
1986 | },
1987 | "suggest": {
1988 | "ext-ctype": "For best performance"
1989 | },
1990 | "type": "library",
1991 | "extra": {
1992 | "branch-alias": {
1993 | "dev-main": "1.23-dev"
1994 | },
1995 | "thanks": {
1996 | "name": "symfony/polyfill",
1997 | "url": "https://github.com/symfony/polyfill"
1998 | }
1999 | },
2000 | "autoload": {
2001 | "psr-4": {
2002 | "Symfony\\Polyfill\\Ctype\\": ""
2003 | },
2004 | "files": [
2005 | "bootstrap.php"
2006 | ]
2007 | },
2008 | "notification-url": "https://packagist.org/downloads/",
2009 | "license": [
2010 | "MIT"
2011 | ],
2012 | "authors": [
2013 | {
2014 | "name": "Gert de Pagter",
2015 | "email": "BackEndTea@gmail.com"
2016 | },
2017 | {
2018 | "name": "Symfony Community",
2019 | "homepage": "https://symfony.com/contributors"
2020 | }
2021 | ],
2022 | "description": "Symfony polyfill for ctype functions",
2023 | "homepage": "https://symfony.com",
2024 | "keywords": [
2025 | "compatibility",
2026 | "ctype",
2027 | "polyfill",
2028 | "portable"
2029 | ],
2030 | "support": {
2031 | "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
2032 | },
2033 | "funding": [
2034 | {
2035 | "url": "https://symfony.com/sponsor",
2036 | "type": "custom"
2037 | },
2038 | {
2039 | "url": "https://github.com/fabpot",
2040 | "type": "github"
2041 | },
2042 | {
2043 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2044 | "type": "tidelift"
2045 | }
2046 | ],
2047 | "time": "2021-02-19T12:13:01+00:00"
2048 | },
2049 | {
2050 | "name": "theseer/tokenizer",
2051 | "version": "1.2.0",
2052 | "source": {
2053 | "type": "git",
2054 | "url": "https://github.com/theseer/tokenizer.git",
2055 | "reference": "75a63c33a8577608444246075ea0af0d052e452a"
2056 | },
2057 | "dist": {
2058 | "type": "zip",
2059 | "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
2060 | "reference": "75a63c33a8577608444246075ea0af0d052e452a",
2061 | "shasum": ""
2062 | },
2063 | "require": {
2064 | "ext-dom": "*",
2065 | "ext-tokenizer": "*",
2066 | "ext-xmlwriter": "*",
2067 | "php": "^7.2 || ^8.0"
2068 | },
2069 | "type": "library",
2070 | "autoload": {
2071 | "classmap": [
2072 | "src/"
2073 | ]
2074 | },
2075 | "notification-url": "https://packagist.org/downloads/",
2076 | "license": [
2077 | "BSD-3-Clause"
2078 | ],
2079 | "authors": [
2080 | {
2081 | "name": "Arne Blankerts",
2082 | "email": "arne@blankerts.de",
2083 | "role": "Developer"
2084 | }
2085 | ],
2086 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
2087 | "support": {
2088 | "issues": "https://github.com/theseer/tokenizer/issues",
2089 | "source": "https://github.com/theseer/tokenizer/tree/master"
2090 | },
2091 | "funding": [
2092 | {
2093 | "url": "https://github.com/theseer",
2094 | "type": "github"
2095 | }
2096 | ],
2097 | "time": "2020-07-12T23:59:07+00:00"
2098 | },
2099 | {
2100 | "name": "webmozart/assert",
2101 | "version": "1.10.0",
2102 | "source": {
2103 | "type": "git",
2104 | "url": "https://github.com/webmozarts/assert.git",
2105 | "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
2106 | },
2107 | "dist": {
2108 | "type": "zip",
2109 | "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
2110 | "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
2111 | "shasum": ""
2112 | },
2113 | "require": {
2114 | "php": "^7.2 || ^8.0",
2115 | "symfony/polyfill-ctype": "^1.8"
2116 | },
2117 | "conflict": {
2118 | "phpstan/phpstan": "<0.12.20",
2119 | "vimeo/psalm": "<4.6.1 || 4.6.2"
2120 | },
2121 | "require-dev": {
2122 | "phpunit/phpunit": "^8.5.13"
2123 | },
2124 | "type": "library",
2125 | "extra": {
2126 | "branch-alias": {
2127 | "dev-master": "1.10-dev"
2128 | }
2129 | },
2130 | "autoload": {
2131 | "psr-4": {
2132 | "Webmozart\\Assert\\": "src/"
2133 | }
2134 | },
2135 | "notification-url": "https://packagist.org/downloads/",
2136 | "license": [
2137 | "MIT"
2138 | ],
2139 | "authors": [
2140 | {
2141 | "name": "Bernhard Schussek",
2142 | "email": "bschussek@gmail.com"
2143 | }
2144 | ],
2145 | "description": "Assertions to validate method input/output with nice error messages.",
2146 | "keywords": [
2147 | "assert",
2148 | "check",
2149 | "validate"
2150 | ],
2151 | "support": {
2152 | "issues": "https://github.com/webmozarts/assert/issues",
2153 | "source": "https://github.com/webmozarts/assert/tree/1.10.0"
2154 | },
2155 | "time": "2021-03-09T10:59:23+00:00"
2156 | }
2157 | ],
2158 | "aliases": [],
2159 | "minimum-stability": "stable",
2160 | "stability-flags": [],
2161 | "prefer-stable": false,
2162 | "prefer-lowest": false,
2163 | "platform": [],
2164 | "platform-dev": [],
2165 | "plugin-api-version": "2.0.0"
2166 | }
2167 |
--------------------------------------------------------------------------------