Browse Source

Don't use @; fix dynamic properties

master 0.9.2
J. King 1 year ago
parent
commit
88dbf8398a
  1. 8
      CHANGELOG
  2. 5
      composer.json
  3. 31
      composer.lock
  4. 2
      lib/Encoding/AbstractEncoding.php
  5. 8
      lib/Encoding/Big5.php
  6. 8
      lib/Encoding/EUCJP.php
  7. 9
      lib/Encoding/EUCKR.php
  8. 1
      lib/Encoding/Encoder.php
  9. 12
      lib/Encoding/GBCommon.php
  10. 10
      lib/Encoding/ISO2022JP.php
  11. 10
      lib/Encoding/ShiftJIS.php
  12. 4
      lib/Encoding/SingleByteEncoding.php
  13. 12
      lib/Encoding/UTF16.php
  14. 8
      lib/Encoding/UTF8.php
  15. 4
      lib/Encoding/XUserDefined.php
  16. 712
      vendor-bin/csfixer/composer.lock
  17. 601
      vendor-bin/phpunit/composer.lock
  18. 2
      vendor-bin/robo/composer.json
  19. 997
      vendor-bin/robo/composer.lock

8
CHANGELOG

@ -1,3 +1,10 @@
Version 0.9.2 (2023-01-25)
==========================
Bug fixes
- Define properties which were accidentally created dynamically
- Avoid use of @ operator to play nice with custom error handlers
Version 0.9.1 (2021-10-24)
==========================
@ -5,6 +12,7 @@ Bug fixes
- Correctly skip byte order marks
- Detect byte order marks in \MensBeam\Intl\Encoding::createEncoder()
Version 0.9.0 (2021-03-25)
==========================
New features:

5
composer.json

@ -32,5 +32,10 @@
"psr-4": {
"MensBeam\\Intl\\Test\\": "tests/lib/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}

31
composer.lock

@ -9,29 +9,36 @@
"packages-dev": [
{
"name": "bamarni/composer-bin-plugin",
"version": "1.4.1",
"version": "1.8.2",
"source": {
"type": "git",
"url": "https://github.com/bamarni/composer-bin-plugin.git",
"reference": "9329fb0fbe29e0e1b2db8f4639a193e4f5406225"
"reference": "92fd7b1e6e9cdae19b0d57369d8ad31a37b6a880"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/bamarni/composer-bin-plugin/zipball/9329fb0fbe29e0e1b2db8f4639a193e4f5406225",
"reference": "9329fb0fbe29e0e1b2db8f4639a193e4f5406225",
"url": "https://api.github.com/repos/bamarni/composer-bin-plugin/zipball/92fd7b1e6e9cdae19b0d57369d8ad31a37b6a880",
"reference": "92fd7b1e6e9cdae19b0d57369d8ad31a37b6a880",
"shasum": ""
},
"require": {
"composer-plugin-api": "^1.0 || ^2.0",
"php": "^5.5.9 || ^7.0 || ^8.0"
"composer-plugin-api": "^2.0",
"php": "^7.2.5 || ^8.0"
},
"require-dev": {
"composer/composer": "^1.0 || ^2.0",
"symfony/console": "^2.5 || ^3.0 || ^4.0"
"composer/composer": "^2.0",
"ext-json": "*",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^8.5 || ^9.5",
"symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
"symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
"symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0"
},
"type": "composer-plugin",
"extra": {
"class": "Bamarni\\Composer\\Bin\\Plugin"
"class": "Bamarni\\Composer\\Bin\\BamarniBinPlugin"
},
"autoload": {
"psr-4": {
@ -53,9 +60,9 @@
],
"support": {
"issues": "https://github.com/bamarni/composer-bin-plugin/issues",
"source": "https://github.com/bamarni/composer-bin-plugin/tree/master"
"source": "https://github.com/bamarni/composer-bin-plugin/tree/1.8.2"
},
"time": "2020-05-03T08:27:20+00:00"
"time": "2022-10-31T08:38:03+00:00"
}
],
"aliases": [],
@ -69,5 +76,5 @@
"platform-dev": {
"ext-intl": "*"
},
"plugin-api-version": "2.0.0"
"plugin-api-version": "2.3.0"
}

2
lib/Encoding/AbstractEncoding.php

@ -72,7 +72,7 @@ abstract class AbstractEncoding implements Decoder {
public function nextChar(): string {
// get the byte at the current position
$b = @$this->string[$this->posByte];
$b = $this->string[$this->posByte] ?? "";
if ($b === "") {
// if the byte is end of input, simply return it
return "";

8
lib/Encoding/Big5.php

@ -46,7 +46,7 @@ class Big5 extends AbstractEncoding implements Coder, Decoder {
return $code;
}
$lead = 0x00;
while (($b = @$this->string[$this->posByte++]) !== "") {
while (($b = $this->string[$this->posByte++] ?? "") !== "") {
$b = ord($b);
if ($lead == 0) {
if ($b < 0x80) {
@ -127,13 +127,13 @@ class Big5 extends AbstractEncoding implements Coder, Decoder {
continue;
}
// go back one byte
$b1 = ord(@$this->string[--$this->posByte]);
$b1 = ord($this->string[--$this->posByte] ?? "");
if ($b1 < 0x40 || $b1 == 0x7F || $this->posByte === $this->errMark || $this->posByte == 0) { // these bytes never appear in sequences, a byte coming after an error is necessarily its own character, and the first byte is necessarily the start of a sequence
// the byte is a character
continue;
}
// go back a second byte
$b2 = ord(@$this->string[--$this->posByte]);
$b2 = ord($this->string[--$this->posByte] ?? "");
if ($b2 < 0x80) { // these bytes never appear in the lead of a sequence
// the first byte was a character
$this->posByte += 1;
@ -151,7 +151,7 @@ class Big5 extends AbstractEncoding implements Coder, Decoder {
$pos = $this->posByte;
// go back bytes until an error mark, an ASCII byte, or start of string
while ($pos > 0 && $pos > $this->errMark) {
$b = ord(@$this->string[--$pos]);
$b = ord($this->string[--$pos] ?? "");
if ($b < 0x80) {
$pos++;
break;

8
lib/Encoding/EUCJP.php

@ -30,7 +30,7 @@ class EUCJP extends AbstractEncoding implements Coder, Decoder {
$this->posChar++;
$lead = 0x00;
$jis0212 = false;
while (($b = @$this->string[$this->posByte++]) !== "") {
while (($b = $this->string[$this->posByte++] ?? "") !== "") {
$b = ord($b);
if ($lead == 0) {
if ($b < 0x80) {
@ -116,14 +116,14 @@ class EUCJP extends AbstractEncoding implements Coder, Decoder {
continue;
}
// go back one byte
$b1 = ord(@$this->string[--$this->posByte]);
$b1 = ord($this->string[--$this->posByte] ?? "");
// if the byte is an ASCII byte or the first byte in the string, this is a character
if ($b1 < 0x80 || $this->posByte === 0) { // ASCII bytes are always isolate in EUC-JP
// the byte is a character
continue;
}
// go back a second byte
$b2 = ord(@$this->string[--$this->posByte]);
$b2 = ord($this->string[--$this->posByte] ?? "");
if ($b2 === 0x8E) { // JIS X 0201 character
// the two bytes form a character
continue;
@ -132,7 +132,7 @@ class EUCJP extends AbstractEncoding implements Coder, Decoder {
continue;
}
// go back a third byte
$b3 = ord(@$this->string[--$this->posByte]);
$b3 = ord($this->string[--$this->posByte] ?? "");
if ($b3 === 0x8F) { // JIS X 0212 character
// the three bytes form a character
continue;

9
lib/Encoding/EUCKR.php

@ -24,11 +24,12 @@ class EUCKR extends AbstractEncoding implements Coder, Decoder {
/** @var array $pointerCache A cached result of flipping the pointer-to-code-point table */
protected static $pointerCache;
protected $dirtyEOF = 0;
public function nextCode() {
$this->posChar++;
$lead = 0x00;
while (($b = @$this->string[$this->posByte++]) !== "") {
while (($b = $this->string[$this->posByte++] ?? "") !== "") {
$b = ord($b);
if ($lead == 0) {
if ($b < 0x80) {
@ -96,13 +97,13 @@ class EUCKR extends AbstractEncoding implements Coder, Decoder {
continue;
}
// go back one byte
$b1 = ord(@$this->string[--$this->posByte]);
$b1 = ord($this->string[--$this->posByte] ?? "");
if ($b1 < 0x41 || $this->posByte === $this->errMark || $this->posByte == 0) { // these bytes never appear in sequences, a byte coming after an error is necessarily its own character, and the first byte is necessarily the start of a sequence
// the byte is a character
continue;
}
// go back a second byte
$b2 = ord(@$this->string[--$this->posByte]);
$b2 = ord($this->string[--$this->posByte] ?? "");
if ($b2 < 0x80) { // these bytes never appear in the lead of a sequence
// the first byte was a character
$this->posByte += 1;
@ -115,7 +116,7 @@ class EUCKR extends AbstractEncoding implements Coder, Decoder {
$pos = $this->posByte;
// go back bytes until an error mark, an ASCII byte, or start of string
while ($pos > 0 && $pos > $this->errMark) {
$b = ord(@$this->string[--$pos]);
$b = ord($this->string[--$pos] ?? "");
if ($b < 0x80) {
$pos++;
break;

1
lib/Encoding/Encoder.php

@ -11,6 +11,7 @@ use MensBeam\Intl\Encoding as Matcher;
class Encoder {
protected $name;
protected $fatal = true;
protected $mode = null;
/** Constructs a new encoder for the specified $label
*

12
lib/Encoding/GBCommon.php

@ -20,7 +20,7 @@ abstract class GBCommon extends AbstractEncoding implements Coder, Decoder {
$second = 0;
$third = 0;
$this->posChar++;
while (($b = @$this->string[$this->posByte++]) !== "") {
while (($b = $this->string[$this->posByte++] ?? "") !== "") {
$b = ord($b);
if ($first === 0) {
if ($b < 0x80) {
@ -148,7 +148,7 @@ abstract class GBCommon extends AbstractEncoding implements Coder, Decoder {
continue;
}
// go back one byte
$b1 = ord(@$this->string[--$this->posByte]);
$b1 = ord($this->string[--$this->posByte] ?? "");
if ($b1 > 0x80) { // only GBK characters end in high bytes
// the preceeding byte starts the character
$this->posByte--;
@ -165,10 +165,10 @@ abstract class GBCommon extends AbstractEncoding implements Coder, Decoder {
continue;
}
// go back a second byte
$b2 = ord(@$this->string[$this->posByte - 1]);
$b2 = ord($this->string[$this->posByte - 1] ?? "");
if ($b2 > 0x80) {
// go back a third byte
$b3 = ord(@$this->string[$this->posByte - 2]);
$b3 = ord($this->string[$this->posByte - 2] ?? "");
if ($b3 >= 0x30 && $b3 <= 0x39) {
// the next byte starts the character
$this->posByte -= 3;
@ -179,7 +179,7 @@ abstract class GBCommon extends AbstractEncoding implements Coder, Decoder {
continue;
} else { // this can either be the trail of a two-byte GBK character, or a single-byte character
// go back a second byte
$b2 = ord(@$this->string[--$this->posByte]);
$b2 = ord($this->string[--$this->posByte] ?? "");
if ($b2 < 0x81) { // these bytes never appear in the lead of a sequence
// the first byte was a character
$this->posByte += 1;
@ -189,7 +189,7 @@ abstract class GBCommon extends AbstractEncoding implements Coder, Decoder {
$pos = $this->posByte;
// go back bytes until an error mark, an ASCII byte, or start of string
while ($pos > 0 && $pos > $this->errMark) {
$b = ord(@$this->string[--$pos]);
$b = ord($this->string[--$pos] ?? "");
if ($b < 0x81) {
$pos++;
break;

10
lib/Encoding/ISO2022JP.php

@ -57,7 +57,7 @@ class ISO2022JP extends AbstractEncoding implements ModalCoder, Decoder {
$this->posChar++;
$state = $this->mode;
while (true) {
$b = @$this->string[$this->posByte++];
$b = $this->string[$this->posByte++] ?? "";
$eof = ($b === "");
$b = ord($b);
// unify handling of basic states where possible
@ -210,7 +210,7 @@ class ISO2022JP extends AbstractEncoding implements ModalCoder, Decoder {
}
}
// check if the current position has a mode change to ASCII or Roman modes and is followed by a desired character
if ($left && @$this->string[$this->posByte] === "\x1B") {
if ($left && ($this->string[$this->posByte] ?? "") === "\x1B") {
if (substr($this->string, $this->posByte + 1, 2) === "\x28\x42") {
$exc = '/[\x0E\x0F\x1B\x80-\xFF]/s';
} elseif (substr($this->string, $this->posByte + 1, 2) === "\x28\x4A") {
@ -220,7 +220,7 @@ class ISO2022JP extends AbstractEncoding implements ModalCoder, Decoder {
}
$effectiveMask = preg_replace($exc, "", $mask);
// if the byte after the mode switch is a wanted one, consume it and go back to the start
if (strspn(@$this->string[$this->posByte + 3], $effectiveMask)) {
if (strspn($this->string[$this->posByte + 3] ?? "", $effectiveMask)) {
$out .= $this->nextChar();
if (--$left) {
goto Process;
@ -256,7 +256,7 @@ class ISO2022JP extends AbstractEncoding implements ModalCoder, Decoder {
}
}
// check if the current position has a mode change to ASCII or Roman modes and is followed by a desired character
if ($left && @$this->string[$this->posByte] === "\x1B") {
if ($left && ($this->string[$this->posByte] ?? "") === "\x1B") {
if (substr($this->string, $this->posByte + 1, 2) === "\x28\x42") {
$effectiveMask = $mask."\x0E\x0F\x1B";
} elseif (substr($this->string, $this->posByte + 1, 2) === "\x28\x4A") {
@ -265,7 +265,7 @@ class ISO2022JP extends AbstractEncoding implements ModalCoder, Decoder {
return $out;
}
// if the byte after the mode switch is a wanted one, consume it and go back to the start
if (strcspn(@$this->string[$this->posByte + 3], $effectiveMask)) {
if (strcspn($this->string[$this->posByte + 3] ?? "", $effectiveMask)) {
$out .= $this->nextChar();
if (--$left) {
goto Process;

10
lib/Encoding/ShiftJIS.php

@ -25,7 +25,7 @@ class ShiftJIS extends AbstractEncoding implements Coder, Decoder {
protected static $pointerCache;
public function nextCode() {
if (($b = @$this->string[$this->posByte++]) === "") {
if (($b = $this->string[$this->posByte++] ?? "") === "") {
// clean EOF
$this->posByte--;
return false;
@ -38,7 +38,7 @@ class ShiftJIS extends AbstractEncoding implements Coder, Decoder {
return 0xFF61 - 0xA1 + $b;
} elseif (($b >= 0x81 && $b <= 0x9F) || ($b >= 0xE0 && $b <= 0xFC)) {
$lead = $b;
if (($b = @$this->string[$this->posByte++]) === "") {
if (($b = $this->string[$this->posByte++] ?? "") === "") {
// dirty EOF
return $this->errDec($this->errMode, $this->posChar - 1, --$this->posByte - 1);
}
@ -121,13 +121,13 @@ class ShiftJIS extends AbstractEncoding implements Coder, Decoder {
continue;
}
// go back one byte
$b1 = ord(@$this->string[--$this->posByte]);
$b1 = ord($this->string[--$this->posByte] ?? "");
if ($b1 < 0x40 || $b1 > 0xFC || $b1 === 0x7F || $this->posByte === 0 || $this->posByte === $this->errMark) { // these bytes never appear in sequences, and the first byte is necessarily the start of a sequence
// the byte is a character
continue;
}
// go back a second byte
$b2 = ord(@$this->string[--$this->posByte]);
$b2 = ord($this->string[--$this->posByte] ?? "");
if ($b2 < 0x81 || $b2 > 0xFC || ($b2 >= 0xA0 && $b2 <= 0xDF)) { // these bytes never appear in the lead of a sequence
// the first byte was a character
$this->posByte += 1;
@ -140,7 +140,7 @@ class ShiftJIS extends AbstractEncoding implements Coder, Decoder {
$pos = $this->posByte;
// go back bytes until an error mark, a definite byte, or start of string
while ($pos > 0 && $pos > $this->errMark) {
$b = ord(@$this->string[--$pos]);
$b = ord($this->string[--$pos] ?? "");
if ($b < 0x81 || ($b >= 0xA0 && $b <= 0xDF) || $b > 0xFC) {
$pos++;
break;

4
lib/Encoding/SingleByteEncoding.php

@ -11,7 +11,7 @@ abstract class SingleByteEncoding extends AbstractEncoding implements Coder, Dec
public function nextChar(): string {
// get the byte at the current position
$b = @$this->string[$this->posChar];
$b = $this->string[$this->posChar] ?? "";
if ($b === "") {
return "";
}
@ -28,7 +28,7 @@ abstract class SingleByteEncoding extends AbstractEncoding implements Coder, Dec
public function nextCode() {
// get the byte at the current position
$b = @$this->string[$this->posChar];
$b = $this->string[$this->posChar] ?? "";
if ($b === "") {
return false;
}

12
lib/Encoding/UTF16.php

@ -30,7 +30,7 @@ abstract class UTF16 extends AbstractEncoding {
$lead_b = null;
$lead_s = null;
$this->posChar++;
while (($b = @$this->string[$this->posByte++]) !== "") {
while (($b = $this->string[$this->posByte++] ?? "") !== "") {
$b = ord($b);
if (is_null($lead_b)) {
$lead_b = $b;
@ -85,7 +85,7 @@ abstract class UTF16 extends AbstractEncoding {
public function nextChar(): string {
// get the byte at the current position
$b = @$this->string[$this->posByte];
$b = $this->string[$this->posByte] ?? "";
if ($b === "") {
// if the byte is end of input, simply return it
return "";
@ -100,8 +100,8 @@ abstract class UTF16 extends AbstractEncoding {
$out = "";
$left = ($length === null) ? -1 : $length;
while ($left) {
$c1 = @$this->string[$this->posByte];
$c2 = @$this->string[$this->posByte + 1];
$c1 = $this->string[$this->posByte] ?? "";
$c2 = $this->string[$this->posByte + 1] ?? "";
$b = ord(static::BE ? $c1 : $c2);
if (!$b) {
$c = static::BE ? $c2 : $c1;
@ -126,8 +126,8 @@ abstract class UTF16 extends AbstractEncoding {
$out = "";
$left = ($length === null) ? -1 : $length;
while ($left) {
$c1 = @$this->string[$this->posByte];
$c2 = @$this->string[$this->posByte + 1];
$c1 = $this->string[$this->posByte] ?? "";
$c2 = $this->string[$this->posByte + 1] ?? "";
$b = ord(static::BE ? $c1 : $c2);
if (!$b) {
$c = static::BE ? $c2 : $c1;

8
lib/Encoding/UTF8.php

@ -37,7 +37,7 @@ class UTF8 extends AbstractEncoding implements Coder, Decoder {
public function nextCode() {
// this function effectively implements https://encoding.spec.whatwg.org/#utf-8-decoder
// optimization for ASCII characters
$b = @$this->string[$this->posByte];
$b = $this->string[$this->posByte] ?? "";
if ($b === "") {
return false;
} elseif (($b = ord($b)) < 0x80) {
@ -52,7 +52,7 @@ class UTF8 extends AbstractEncoding implements Coder, Decoder {
$lower = 0x80;
$upper = 0xBF;
while ($seen < $needed) {
$b = ord(@$this->string[$this->posByte++]);
$b = ord($this->string[$this->posByte++] ?? "");
if (!$seen) {
if ($b >= 0xC2 && $b <= 0xDF) { // two-byte character
$needed = 2;
@ -117,7 +117,7 @@ class UTF8 extends AbstractEncoding implements Coder, Decoder {
while ($distance > 0 && $this->posChar > 0) {
$distance--;
$this->posChar--;
$b = ord(@$this->string[$this->posByte - 1]);
$b = ord($this->string[$this->posByte - 1] ?? "");
if ($b < 0x80) {
// if the byte is an ASCII byte or the end of input, then this is already a synchronized position
$this->posByte--;
@ -125,7 +125,7 @@ class UTF8 extends AbstractEncoding implements Coder, Decoder {
$s = $this->posByte;
$pos = $s - 1;
while ($b >= 0x80 && $b <= 0xBF && $pos > 0 && ($s - $pos) < 4) { // go back at most four bytes, no further than the start of the string, and only as long as the byte remains a continuation byte
$b = ord(@$this->string[--$pos]);
$b = ord($this->string[--$pos] ?? "");
}
$this->posByte = $pos;
// decrement the character position because nextCode() increments it

4
lib/Encoding/XUserDefined.php

@ -16,7 +16,7 @@ class XUserDefined extends AbstractEncoding implements Coder, Decoder {
*/
public function nextChar(): string {
// get the byte at the current position
$b = @$this->string[$this->posChar];
$b = $this->string[$this->posChar] ?? "";
if ($b === "") {
return "";
}
@ -39,7 +39,7 @@ class XUserDefined extends AbstractEncoding implements Coder, Decoder {
*/
public function nextCode() {
// get the byte at the current position
$b = @$this->string[$this->posChar];
$b = $this->string[$this->posChar] ?? "";
if ($b === "") {
return false;
}

712
vendor-bin/csfixer/composer.lock

File diff suppressed because it is too large

601
vendor-bin/phpunit/composer.lock

@ -8,29 +8,30 @@
"packages": [
{
"name": "doctrine/instantiator",
"version": "1.4.0",
"version": "2.0.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/instantiator.git",
"reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
"reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
"reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
"url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
"reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0"
"php": "^8.1"
},
"require-dev": {
"doctrine/coding-standard": "^8.0",
"doctrine/coding-standard": "^11",
"ext-pdo": "*",
"ext-phar": "*",
"phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
"phpbench/phpbench": "^1.2",
"phpstan/phpstan": "^1.9.4",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.5.27",
"vimeo/psalm": "^5.4"
},
"type": "library",
"autoload": {
@ -57,7 +58,7 @@
],
"support": {
"issues": "https://github.com/doctrine/instantiator/issues",
"source": "https://github.com/doctrine/instantiator/tree/1.4.0"
"source": "https://github.com/doctrine/instantiator/tree/2.0.0"
},
"funding": [
{
@ -73,41 +74,42 @@
"type": "tidelift"
}
],
"time": "2020-11-10T18:47:58+00:00"
"time": "2022-12-30T00:23:10+00:00"
},
{
"name": "myclabs/deep-copy",
"version": "1.10.2",
"version": "1.11.0",
"source": {
"type": "git",
"url": "https://github.com/myclabs/DeepCopy.git",
"reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
"reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
"reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
"url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
"reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0"
},
"replace": {
"myclabs/deep-copy": "self.version"
"conflict": {
"doctrine/collections": "<1.6.8",
"doctrine/common": "<2.13.3 || >=3,<3.2.2"
},
"require-dev": {
"doctrine/collections": "^1.0",
"doctrine/common": "^2.6",
"phpunit/phpunit": "^7.1"
"doctrine/collections": "^1.6.8",
"doctrine/common": "^2.13.3 || ^3.2.2",
"phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
},
"type": "library",
"autoload": {
"psr-4": {
"DeepCopy\\": "src/DeepCopy/"
},
"files": [
"src/DeepCopy/deep_copy.php"
]
],
"psr-4": {
"DeepCopy\\": "src/DeepCopy/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@ -123,7 +125,7 @@
],
"support": {
"issues": "https://github.com/myclabs/DeepCopy/issues",
"source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
"source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
},
"funding": [
{
@ -131,20 +133,20 @@
"type": "tidelift"
}
],
"time": "2020-11-13T09:40:50+00:00"
"time": "2022-03-03T13:19:32+00:00"
},
{
"name": "nikic/php-parser",
"version": "v4.10.4",
"version": "v4.15.3",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
"reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
"reference": "570e980a201d8ed0236b0a62ddf2c9cbb2034039"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
"reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/570e980a201d8ed0236b0a62ddf2c9cbb2034039",
"reference": "570e980a201d8ed0236b0a62ddf2c9cbb2034039",
"shasum": ""
},
"require": {
@ -185,22 +187,22 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
"source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
"source": "https://github.com/nikic/PHP-Parser/tree/v4.15.3"
},
"time": "2020-12-20T10:01:03+00:00"
"time": "2023-01-16T22:05:37+00:00"
},
{
"name": "phar-io/manifest",
"version": "2.0.1",
"version": "2.0.3",
"source": {
"type": "git",
"url": "https://github.com/phar-io/manifest.git",
"reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
"reference": "97803eca37d319dfa7826cc2437fc020857acb53"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
"reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
"url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
"reference": "97803eca37d319dfa7826cc2437fc020857acb53",
"shasum": ""
},
"require": {
@ -245,22 +247,22 @@
"description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
"support": {
"issues": "https://github.com/phar-io/manifest/issues",
"source": "https://github.com/phar-io/manifest/tree/master"
"source": "https://github.com/phar-io/manifest/tree/2.0.3"
},
"time": "2020-06-27T14:33:11+00:00"
"time": "2021-07-20T11:28:43+00:00"
},
{
"name": "phar-io/version",
"version": "3.1.0",
"version": "3.2.1",
"source": {
"type": "git",
"url": "https://github.com/phar-io/version.git",
"reference": "bae7c545bef187884426f042434e561ab1ddb182"
"reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
"reference": "bae7c545bef187884426f042434e561ab1ddb182",
"url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
"reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
"shasum": ""
},
"require": {
@ -296,254 +298,29 @@
"description": "Library for handling version information and constraints",
"support": {
"issues": "https://github.com/phar-io/version/issues",
"source": "https://github.com/phar-io/version/tree/3.1.0"
},
"time": "2021-02-23T14:00:09+00:00"
},
{
"name": "phpdocumentor/reflection-common",
"version": "2.2.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-2.x": "2.x-dev"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Jaap van Otterdijk",
"email": "opensource@ijaap.nl"
}
],
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
"homepage": "http://www.phpdoc.org",
"keywords": [
"FQSEN",
"phpDocumentor",
"phpdoc",
"reflection",
"static analysis"
],
"support": {
"issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
"source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
},
"time": "2020-06-27T09:03:43+00:00"
},
{
"name": "phpdocumentor/reflection-docblock",
"version": "5.2.2",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
"reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
"reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
"shasum": ""
},
"require": {
"ext-filter": "*",
"php": "^7.2 || ^8.0",
"phpdocumentor/reflection-common": "^2.2",
"phpdocumentor/type-resolver": "^1.3",
"webmozart/assert": "^1.9.1"
},
"require-dev": {
"mockery/mockery": "~1.3.2"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
"source": "https://github.com/phar-io/version/tree/3.2.1"
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Mike van Riel",
"email": "me@mikevanriel.com"
},
{
"name": "Jaap van Otterdijk",
"email": "account@ijaap.nl"
}
],
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"support": {
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
"source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
},
"time": "2020-09-03T19:13:55+00:00"
},
{
"name": "phpdocumentor/type-resolver",
"version": "1.4.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
"reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
"reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0",
"phpdocumentor/reflection-common": "^2.0"
},
"require-dev": {
"ext-tokenizer": "*"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-1.x": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Mike van Riel",
"email": "me@mikevanriel.com"
}
],
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
"support": {
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
"source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
},
"time": "2020-09-17T18:55:26+00:00"
},
{
"name": "phpspec/prophecy",
"version": "1.12.2",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
"reference": "245710e971a030f42e08f4912863805570f23d39"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
"reference": "245710e971a030f42e08f4912863805570f23d39",
"shasum": ""
},
"require": {
"doctrine/instantiator": "^1.2",
"php": "^7.2 || ~8.0, <8.1",
"phpdocumentor/reflection-docblock": "^5.2",
"sebastian/comparator": "^3.0 || ^4.0",
"sebastian/recursion-context": "^3.0 || ^4.0"
},
"require-dev": {
"phpspec/phpspec": "^6.0",
"phpunit/phpunit": "^8.0 || ^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.11.x-dev"
}
},
"autoload": {
"psr-4": {
"Prophecy\\": "src/Prophecy"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "ever.zet@gmail.com",
"homepage": "http://everzet.com"
},
{
"name": "Marcello Duarte",
"email": "marcello.duarte@gmail.com"
}
],
"description": "Highly opinionated mocking framework for PHP 5.3+",
"homepage": "https://github.com/phpspec/prophecy",
"keywords": [
"Double",
"Dummy",
"fake",
"mock",
"spy",
"stub"
],
"support": {
"issues": "https://github.com/phpspec/prophecy/issues",
"source": "https://github.com/phpspec/prophecy/tree/1.12.2"
},
"time": "2020-12-19T10:15:11+00:00"
"time": "2022-02-21T01:04:05+00:00"
},
{
"name": "phpunit/php-code-coverage",
"version": "9.2.5",
"version": "9.2.23",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
"reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
"reference": "9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
"reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c",
"reference": "9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"ext-xmlwriter": "*",
"nikic/php-parser": "^4.10.2",
"nikic/php-parser": "^4.14",
"php": ">=7.3",
"phpunit/php-file-iterator": "^3.0.3",
"phpunit/php-text-template": "^2.0.2",
@ -592,7 +369,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.23"
},
"funding": [
{
@ -600,20 +377,20 @@
"type": "github"
}
],
"time": "2020-11-28T06:44:49+00:00"
"time": "2022-12-28T12:41:10+00:00"
},
{
"name": "phpunit/php-file-iterator",
"version": "3.0.5",
"version": "3.0.6",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-file-iterator.git",
"reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
"reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
"reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
"url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
"reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
"shasum": ""
},
"require": {
@ -652,7 +429,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
"source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
"source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
},
"funding": [
{
@ -660,7 +437,7 @@
"type": "github"
}
],
"time": "2020-09-28T05:57:25+00:00"
"time": "2021-12-02T12:48:52+00:00"
},
{
"name": "phpunit/php-invoker",
@ -845,20 +622,20 @@
},
{
"name": "phpunit/phpunit",
"version": "9.5.2",
"version": "9.5.28",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "f661659747f2f87f9e72095bb207bceb0f151cb4"
"reference": "954ca3113a03bf780d22f07bf055d883ee04b65e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f661659747f2f87f9e72095bb207bceb0f151cb4",
"reference": "f661659747f2f87f9e72095bb207bceb0f151cb4",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/954ca3113a03bf780d22f07bf055d883ee04b65e",
"reference": "954ca3113a03bf780d22f07bf055d883ee04b65e",
"shasum": ""
},
"require": {
"doctrine/instantiator": "^1.3.1",
"doctrine/instantiator": "^1.3.1 || ^2",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
@ -866,31 +643,26 @@
"ext-xml": "*",
"ext-xmlwriter": "*",
"myclabs/deep-copy": "^1.10.1",
"phar-io/manifest": "^2.0.1",
"phar-io/manifest": "^2.0.3",
"phar-io/version": "^3.0.2",
"php": ">=7.3",
"phpspec/prophecy": "^1.12.1",
"phpunit/php-code-coverage": "^9.2.3",
"phpunit/php-code-coverage": "^9.2.13",
"phpunit/php-file-iterator": "^3.0.5",
"phpunit/php-invoker": "^3.1.1",
"phpunit/php-text-template": "^2.0.3",
"phpunit/php-timer": "^5.0.2",
"sebastian/cli-parser": "^1.0.1",
"sebastian/code-unit": "^1.0.6",
"sebastian/comparator": "^4.0.5",
"sebastian/comparator": "^4.0.8",
"sebastian/diff": "^4.0.3",
"sebastian/environment": "^5.1.3",
"sebastian/exporter": "^4.0.3",
"sebastian/exporter": "^4.0.5",
"sebastian/global-state": "^5.0.1",
"sebastian/object-enumerator": "^4.0.3",
"sebastian/resource-operations": "^3.0.3",
"sebastian/type": "^2.3",
"sebastian/type": "^3.2",
"sebastian/version": "^3.0.2"
},
"require-dev": {
"ext-pdo": "*",
"phpspec/prophecy-phpunit": "^2.0.1"
},
"suggest": {
"ext-soap": "*",
"ext-xdebug": "*"
@ -905,11 +677,11 @@
}
},
"autoload": {
"classmap": [
"src/"
],
"files": [
"src/Framework/Assert/Functions.php"
],
"classmap": [
"src/"
]
},
"notification-url": "https://packagist.org/downloads/",
@ -932,19 +704,23 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.2"
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.28"
},
"funding": [
{
"url": "https://phpunit.de/donate.html",
"url": "https://phpunit.de/sponsors.html",
"type": "custom"
},
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
"type": "tidelift"
}
],
"time": "2021-02-02T14:45:58+00:00"
"time": "2023-01-14T12:32:24+00:00"
},
{
"name": "sebastian/cli-parser",
@ -1115,16 +891,16 @@
},
{
"name": "sebastian/comparator",
"version": "4.0.6",
"version": "4.0.8",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
"reference": "55f4261989e546dc112258c7a75935a81a7ce382"
"reference": "fa0f136dd2334583309d32b62544682ee972b51a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
"reference": "55f4261989e546dc112258c7a75935a81a7ce382",
"url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
"reference": "fa0f136dd2334583309d32b62544682ee972b51a",
"shasum": ""
},
"require": {
@ -1177,7 +953,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/comparator/issues",
"source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
"source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
},
"funding": [
{
@ -1185,7 +961,7 @@
"type": "github"
}
],
"time": "2020-10-26T15:49:45+00:00"
"time": "2022-09-14T12:41:17+00:00"
},
{
"name": "sebastian/complexity",
@ -1312,16 +1088,16 @@
},
{
"name": "sebastian/environment",
"version": "5.1.3",
"version": "5.1.4",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/environment.git",
"reference": "388b6ced16caa751030f6a69e588299fa09200ac"
"reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
"reference": "388b6ced16caa751030f6a69e588299fa09200ac",
"url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
"reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
"shasum": ""
},
"require": {
@ -1363,7 +1139,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/environment/issues",
"source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
"source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
},
"funding": [
{
@ -1371,20 +1147,20 @@
"type": "github"
}
],
"time": "2020-09-28T05:52:38+00:00"
"time": "2022-04-03T09:37:03+00:00"
},
{
"name": "sebastian/exporter",
"version": "4.0.3",
"version": "4.0.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/exporter.git",
"reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
"reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
"reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
"url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
"reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
"shasum": ""
},
"require": {
@ -1433,14 +1209,14 @@
}
],
"description": "Provides the functionality to export PHP variables for visualization",
"homepage": "http://www.github.com/sebastianbergmann/exporter",
"homepage": "https://www.github.com/sebastianbergmann/exporter",
"keywords": [
"export",
"exporter"
],
"support": {
"issues": "https://github.com/sebastianbergmann/exporter/issues",
"source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
"source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
},
"funding": [
{
@ -1448,20 +1224,20 @@
"type": "github"
}
],
"time": "2020-09-28T05:24:23+00:00"
"time": "2022-09-14T06:03:37+00:00"
},
{
"name": "sebastian/global-state",
"version": "5.0.2",
"version": "5.0.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/global-state.git",
"reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
"reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
"reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
"url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
"reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
"shasum": ""
},
"require": {
@ -1504,7 +1280,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/global-state/issues",
"source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
"source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
},
"funding": [
{
@ -1512,7 +1288,7 @@
"type": "github"
}
],
"time": "2020-10-26T15:55:19+00:00"
"time": "2022-02-14T08:28:10+00:00"
},
{
"name": "sebastian/lines-of-code",
@ -1803,28 +1579,28 @@
},
{
"name": "sebastian/type",
"version": "2.3.1",
"version": "3.2.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/type.git",
"reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
"reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
"reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
"url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
"reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
"shasum": ""
},
"require": {
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^9.3"
"phpunit/phpunit": "^9.5"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.3-dev"
"dev-master": "3.2-dev"
}
},
"autoload": {
@ -1847,7 +1623,7 @@
"homepage": "https://github.com/sebastianbergmann/type",
"support": {
"issues": "https://github.com/sebastianbergmann/type/issues",
"source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
"source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
},
"funding": [
{
@ -1855,7 +1631,7 @@
"type": "github"
}
],
"time": "2020-10-26T13:18:59+00:00"
"time": "2022-09-12T14:47:03+00:00"
},
{
"name": "sebastian/version",
@ -1910,97 +1686,18 @@
],
"time": "2020-09-28T06:39:44+00:00"
},
{
"name": "symfony/polyfill-ctype",
"version": "v1.22.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
"reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
"reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"suggest": {
"ext-ctype": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.22-dev"
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"psr-4": {
"Symfony\\Polyfill\\Ctype\\": ""
},
"files": [
"bootstrap.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Gert de Pagter",
"email": "BackEndTea@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony polyfill for ctype functions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
"ctype",
"polyfill",
"portable"
],
"support": {
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
},
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
"time": "2021-01-07T16:49:33+00:00"
},
{
"name": "theseer/tokenizer",
"version": "1.2.0",
"version": "1.2.1",
"source": {
"type": "git",
"url": "https://github.com/theseer/tokenizer.git",
"reference": "75a63c33a8577608444246075ea0af0d052e452a"
"reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
"reference": "75a63c33a8577608444246075ea0af0d052e452a",
"url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
"reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
"shasum": ""
},
"require": {
@ -2029,7 +1726,7 @@
"description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
"support": {
"issues": "https://github.com/theseer/tokenizer/issues",
"source": "https://github.com/theseer/tokenizer/tree/master"
"source": "https://github.com/theseer/tokenizer/tree/1.2.1"
},
"funding": [
{
@ -2037,65 +1734,7 @@
"type": "github"
}
],
"time": "2020-07-12T23:59:07+00:00"
},
{
"name": "webmozart/assert",
"version": "1.10.0",
"source": {
"type": "git",
"url": "https://github.com/webmozarts/assert.git",
"reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
"reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0",
"symfony/polyfill-ctype": "^1.8"
},
"conflict": {
"phpstan/phpstan": "<0.12.20",
"vimeo/psalm": "<4.6.1 || 4.6.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5.13"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.10-dev"
}
},
"autoload": {
"psr-4": {
"Webmozart\\Assert\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Bernhard Schussek",
"email": "bschussek@gmail.com"
}
],
"description": "Assertions to validate method input/output with nice error messages.",
"keywords": [
"assert",
"check",
"validate"
],
"support": {
"issues": "https://github.com/webmozarts/assert/issues",
"source": "https://github.com/webmozarts/assert/tree/1.10.0"
},
"time": "2021-03-09T10:59:23+00:00"
"time": "2021-07-28T10:34:58+00:00"
}
],
"packages-dev": [],
@ -2106,5 +1745,5 @@
"prefer-lowest": false,
"platform": [],
"platform-dev": [],
"plugin-api-version": "2.0.0"
"plugin-api-version": "2.3.0"
}

2
vendor-bin/robo/composer.json

@ -1,5 +1,5 @@
{
"require": {
"consolidation/robo": "^3.0"
"consolidation/robo": "^4.0"
}
}

997
vendor-bin/robo/composer.lock

File diff suppressed because it is too large
Loading…
Cancel
Save