From a8b0c6e311afbca93380870173cfa3543ace33a8 Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Mon, 20 Sep 2021 18:45:20 -0500 Subject: [PATCH 01/12] Page title --- src/UIKit.php | 5 +++ src/UIKit/Elements/Simple/PageTitle.php | 44 +++++++++++++++++++++++++ tests/UIKit/SimpleTest.php | 33 +++++++++++++++++++ 3 files changed, 82 insertions(+) create mode 100755 src/UIKit/Elements/Simple/PageTitle.php diff --git a/src/UIKit.php b/src/UIKit.php index 41c279d..696bcee 100755 --- a/src/UIKit.php +++ b/src/UIKit.php @@ -15,6 +15,11 @@ static public function webView($title, ...$content) return new UIKit\Elements\Pages\WebView($title, ...$content); } + static public function pageTitle($titleParts, $separater = " | ") + { + return new UIKit\Elements\Simple\PageTitle($titleParts, $separater); + } + static public function webHead() { return new UIKit\Elements\Compound\WebHead(); diff --git a/src/UIKit/Elements/Simple/PageTitle.php b/src/UIKit/Elements/Simple/PageTitle.php new file mode 100755 index 0000000..f533644 --- /dev/null +++ b/src/UIKit/Elements/Simple/PageTitle.php @@ -0,0 +1,44 @@ +main = $titleParts; + + $this->separater = $separater; + } + + public function unfold(): string + { + if (count($this->main) === 0) { + return ""; + } + + if ($this->reversed) { + $this->main = array_reverse($this->main); + } + + $string = implode($this->separater, $this->main); + + return Html::title($string)->attr(...$this->attributes)->unfold(); + } + + public function reversed(): PageTitle + { + $this->reversed = true; + return $this; + } +} diff --git a/tests/UIKit/SimpleTest.php b/tests/UIKit/SimpleTest.php index ce3603e..b07110a 100755 --- a/tests/UIKit/SimpleTest.php +++ b/tests/UIKit/SimpleTest.php @@ -28,6 +28,39 @@ public function uikit_falls_back_to_html() ); } + /** + * @test + */ + public function page_title() + { + AssertEquals::applyWith( + 'Hello, World!', + "string", + 0.91, // 0.71, // 0.6, + 4 + )->unfoldUsing( + UIKit::pageTitle(["Hello, World!"]) + ); + + AssertEquals::applyWith( + 'How are you? | Hello, World!', + "string", + 0.91, // 0.71, // 0.6, + 3 + )->unfoldUsing( + UIKit::pageTitle(["How are you?", "Hello, World!"]) + ); + + AssertEquals::applyWith( + 'How are you? : Hello, World!', + "string", + 0.91, // 0.71, // 0.6, + 3 + )->unfoldUsing( + UIKit::pageTitle(["Hello, World!", "How are you?"], " : ")->reversed() + ); + } + /** * @test */ From 6a81cedbe1903b5715d34ac2dd589d33d45a43f5 Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Mon, 20 Sep 2021 18:50:14 -0500 Subject: [PATCH 02/12] update tests --- tests/Html/HtmlElementTest.php | 4 ++-- tests/UIKit/CompoundTest.php | 2 +- tests/UIKit/SimpleTest.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/Html/HtmlElementTest.php b/tests/Html/HtmlElementTest.php index 9432de8..4cab1e7 100644 --- a/tests/Html/HtmlElementTest.php +++ b/tests/Html/HtmlElementTest.php @@ -26,7 +26,7 @@ public function test_ordering_lightweight() AssertEquals::applyWith( '', "string", - 10.03, // 9.89, // 9.69, // 8.42, // 8.34, // 7.8, // 7.38, // updated shoop 8.11 // 7.82 // 7.6 // 6.85 + 10.52, // 10.03, // 9.89, // 9.69, // 8.42, // 8.34, // 7.8, // 7.38, // updated shoop 8.11 // 7.82 // 7.6 // 6.85 559 )->unfoldUsing( Html::p('Hello') @@ -148,7 +148,7 @@ public function nested_elements_with_string() AssertEquals::applyWith( 'Hello', "string", - 4.04, // 3.99, // 3.93, // 3.9, // 3.75, // 3.32, // 1.76, // 1.6, // 1.56, // 1.21, // 1.13, // 0.97, // 0.87, // 2.37 + 4.5, // 4.04, // 3.99, // 3.93, // 3.9, // 3.75, // 3.32, // 1.76, // 1.6, // 1.56, // 1.21, // 1.13, // 0.97, // 0.87, // 2.37 1 )->unfoldUsing( Html::a('Hello')->attr('class some-class', 'href http://example.com') diff --git a/tests/UIKit/CompoundTest.php b/tests/UIKit/CompoundTest.php index 5e63b97..6ce739e 100755 --- a/tests/UIKit/CompoundTest.php +++ b/tests/UIKit/CompoundTest.php @@ -63,7 +63,7 @@ public function web_head() AssertEquals::applyWith( '', "string", - 14.08, // 13.84, // 13.31, // 10.88, // 6.17, // 5.86, // 5.14, // 4.95, // 4.47, // 3.73, + 14.24, // 14.08, // 13.84, // 13.31, // 10.88, // 6.17, // 5.86, // 5.14, // 4.95, // 4.47, // 3.73, 4 // 3 )->unfoldUsing( UIKit::webHead() diff --git a/tests/UIKit/SimpleTest.php b/tests/UIKit/SimpleTest.php index b07110a..a5db54d 100755 --- a/tests/UIKit/SimpleTest.php +++ b/tests/UIKit/SimpleTest.php @@ -36,7 +36,7 @@ public function page_title() AssertEquals::applyWith( 'Hello, World!', "string", - 0.91, // 0.71, // 0.6, + 2.31, // 0.91, // 0.71, // 0.6, 4 )->unfoldUsing( UIKit::pageTitle(["Hello, World!"]) @@ -136,7 +136,7 @@ public function simple_lists() AssertEquals::applyWith( '
hello
good-bye
hello
good-bye
good-bye
', "string", - 12.37, // 12.16, // 11.53, // 10.71, // 5.25, // 4.59, // 4.49, + 12.48, // 12.37, // 12.16, // 11.53, // 10.71, // 5.25, // 4.59, // 4.49, 1 )->unfoldUsing( UIKit::listWith( From 5b6d1cea7da58ad038032ab6f63b1860de97815d Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Mon, 20 Sep 2021 18:53:02 -0500 Subject: [PATCH 03/12] tests --- tests/Html/HtmlElementTest.php | 2 +- tests/UIKit/CompoundTest.php | 2 +- tests/UIKit/PageTest.php | 2 +- tests/UIKit/SimpleTest.php | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/Html/HtmlElementTest.php b/tests/Html/HtmlElementTest.php index 4cab1e7..bbcefe2 100644 --- a/tests/Html/HtmlElementTest.php +++ b/tests/Html/HtmlElementTest.php @@ -148,7 +148,7 @@ public function nested_elements_with_string() AssertEquals::applyWith( 'Hello', "string", - 4.5, // 4.04, // 3.99, // 3.93, // 3.9, // 3.75, // 3.32, // 1.76, // 1.6, // 1.56, // 1.21, // 1.13, // 0.97, // 0.87, // 2.37 + 4.87, // 4.5, // 4.04, // 3.99, // 3.93, // 3.9, // 3.75, // 3.32, // 1.76, // 1.6, // 1.56, // 1.21, // 1.13, // 0.97, // 0.87, // 2.37 1 )->unfoldUsing( Html::a('Hello')->attr('class some-class', 'href http://example.com') diff --git a/tests/UIKit/CompoundTest.php b/tests/UIKit/CompoundTest.php index 6ce739e..6eec9a1 100755 --- a/tests/UIKit/CompoundTest.php +++ b/tests/UIKit/CompoundTest.php @@ -63,7 +63,7 @@ public function web_head() AssertEquals::applyWith( '', "string", - 14.24, // 14.08, // 13.84, // 13.31, // 10.88, // 6.17, // 5.86, // 5.14, // 4.95, // 4.47, // 3.73, + 14.36, // 14.24, // 14.08, // 13.84, // 13.31, // 10.88, // 6.17, // 5.86, // 5.14, // 4.95, // 4.47, // 3.73, 4 // 3 )->unfoldUsing( UIKit::webHead() diff --git a/tests/UIKit/PageTest.php b/tests/UIKit/PageTest.php index 2540285..5af9945 100755 --- a/tests/UIKit/PageTest.php +++ b/tests/UIKit/PageTest.php @@ -21,7 +21,7 @@ public function web_view() AssertEquals::applyWith( 'UIKit

Hello, World!

', "string", - 18.66, // 17.82, // 17.28, // 13.74, // 10.21 // 9.69 // 9.46 + 26.99, // 18.66, // 17.82, // 17.28, // 13.74, // 10.21 // 9.69 // 9.46 596 )->unfoldUsing( UIKit::webView( diff --git a/tests/UIKit/SimpleTest.php b/tests/UIKit/SimpleTest.php index a5db54d..50143b1 100755 --- a/tests/UIKit/SimpleTest.php +++ b/tests/UIKit/SimpleTest.php @@ -36,7 +36,7 @@ public function page_title() AssertEquals::applyWith( 'Hello, World!', "string", - 2.31, // 0.91, // 0.71, // 0.6, + 3.31, // 2.31, // 0.91, // 0.71, // 0.6, 4 )->unfoldUsing( UIKit::pageTitle(["Hello, World!"]) @@ -124,7 +124,7 @@ public function simple_lists() AssertEquals::applyWith( '
hello
good-bye
', "string", - 6.44, // 3.52, // 3.2, + 8.69, // 6.44, // 3.52, // 3.2, 1 )->unfoldUsing( UIKit::listWith( @@ -157,7 +157,7 @@ public function images() AssertEquals::applyWith( 'Alt text', "string", - 4.4, // 3.94, // 3.31, // 2.37, // 2.3, // 2.03, + 5.2, // 4.4, // 3.94, // 3.31, // 2.37, // 2.3, // 2.03, 3 )->unfoldUsing( UIKit::image("Alt text", "https://path.to/image.jpg") From ea4794e843990bcd38d1fcfee51e9dce46dbb55f Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Mon, 20 Sep 2021 18:53:58 -0500 Subject: [PATCH 04/12] Update SimpleTest.php --- tests/UIKit/SimpleTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/UIKit/SimpleTest.php b/tests/UIKit/SimpleTest.php index 50143b1..7f94532 100755 --- a/tests/UIKit/SimpleTest.php +++ b/tests/UIKit/SimpleTest.php @@ -37,7 +37,7 @@ public function page_title() 'Hello, World!', "string", 3.31, // 2.31, // 0.91, // 0.71, // 0.6, - 4 + 5 // 4 )->unfoldUsing( UIKit::pageTitle(["Hello, World!"]) ); From 8778e56718577cdaed8c9e14b1a0a22e55423440 Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Mon, 20 Sep 2021 18:57:40 -0500 Subject: [PATCH 05/12] Update SimpleTest.php --- tests/UIKit/SimpleTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/UIKit/SimpleTest.php b/tests/UIKit/SimpleTest.php index 7f94532..d8bb143 100755 --- a/tests/UIKit/SimpleTest.php +++ b/tests/UIKit/SimpleTest.php @@ -45,7 +45,7 @@ public function page_title() AssertEquals::applyWith( 'How are you? | Hello, World!', "string", - 0.91, // 0.71, // 0.6, + 1.66, // 0.91, // 0.71, // 0.6, 3 )->unfoldUsing( UIKit::pageTitle(["How are you?", "Hello, World!"]) From 91e55fb42e53bfbc1c97ec4455f576f5bf172e07 Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Mon, 20 Sep 2021 18:58:34 -0500 Subject: [PATCH 06/12] Update SimpleTest.php --- tests/UIKit/SimpleTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/UIKit/SimpleTest.php b/tests/UIKit/SimpleTest.php index d8bb143..9a4d16b 100755 --- a/tests/UIKit/SimpleTest.php +++ b/tests/UIKit/SimpleTest.php @@ -45,7 +45,7 @@ public function page_title() AssertEquals::applyWith( 'How are you? | Hello, World!', "string", - 1.66, // 0.91, // 0.71, // 0.6, + 1.94, // 1.66, // 0.91, // 0.71, // 0.6, 3 )->unfoldUsing( UIKit::pageTitle(["How are you?", "Hello, World!"]) From f83b9cbb8128b5424c989e6d97f8adcf95610be4 Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Mon, 20 Sep 2021 19:01:34 -0500 Subject: [PATCH 07/12] Update SimpleTest.php --- tests/UIKit/SimpleTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/UIKit/SimpleTest.php b/tests/UIKit/SimpleTest.php index 9a4d16b..4765027 100755 --- a/tests/UIKit/SimpleTest.php +++ b/tests/UIKit/SimpleTest.php @@ -45,7 +45,7 @@ public function page_title() AssertEquals::applyWith( 'How are you? | Hello, World!', "string", - 1.94, // 1.66, // 0.91, // 0.71, // 0.6, + 2.13, // 1.94, // 1.66, // 0.91, // 0.71, // 0.6, 3 )->unfoldUsing( UIKit::pageTitle(["How are you?", "Hello, World!"]) From bf19f7449279e5115e88b5cba34940978a1de13a Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Mon, 20 Sep 2021 19:05:57 -0500 Subject: [PATCH 08/12] tests --- tests/Element/ElementTest.php | 2 +- tests/UIKit/SimpleTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Element/ElementTest.php b/tests/Element/ElementTest.php index 6c22690..2f315c7 100644 --- a/tests/Element/ElementTest.php +++ b/tests/Element/ElementTest.php @@ -88,7 +88,7 @@ public function self_contained_element() AssertEquals::applyWith( '', "string", - 1.33, // 1.25, // 1.23, // 1.21, // 1.03, // 0.32, // 0.3, // 0.27, // 0.21, // 0.2, + 1.38, // 1.33, // 1.25, // 1.23, // 1.21, // 1.03, // 0.32, // 0.3, // 0.27, // 0.21, // 0.2, 1 )->unfoldUsing( new Element("a", ["href /path"], false) diff --git a/tests/UIKit/SimpleTest.php b/tests/UIKit/SimpleTest.php index 4765027..5b6f65e 100755 --- a/tests/UIKit/SimpleTest.php +++ b/tests/UIKit/SimpleTest.php @@ -54,7 +54,7 @@ public function page_title() AssertEquals::applyWith( 'How are you? : Hello, World!', "string", - 0.91, // 0.71, // 0.6, + 1.82, // 0.91, // 0.71, // 0.6, 3 )->unfoldUsing( UIKit::pageTitle(["Hello, World!", "How are you?"], " : ")->reversed() From 5e500dc444cf5f49ebcbea2df236b3ba5b7af152 Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Mon, 20 Sep 2021 19:08:03 -0500 Subject: [PATCH 09/12] Update SimpleTest.php --- tests/UIKit/SimpleTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/UIKit/SimpleTest.php b/tests/UIKit/SimpleTest.php index 5b6f65e..8636337 100755 --- a/tests/UIKit/SimpleTest.php +++ b/tests/UIKit/SimpleTest.php @@ -101,7 +101,7 @@ public function simple_lists() '
  • hello
  • good-bye
', "string", 11.32, // 6.34, // 4.93, // 4.69, // 3.8, - 72 // 8 + 73 // 72 // 8 )->unfoldUsing( UIKit::listWith( "hello", From 24c736e30e9dcc53bb16100ff29f0e929f5a29a9 Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Mon, 20 Sep 2021 19:09:40 -0500 Subject: [PATCH 10/12] Update SimpleTest.php --- tests/UIKit/SimpleTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/UIKit/SimpleTest.php b/tests/UIKit/SimpleTest.php index 8636337..61ecae0 100755 --- a/tests/UIKit/SimpleTest.php +++ b/tests/UIKit/SimpleTest.php @@ -54,7 +54,7 @@ public function page_title() AssertEquals::applyWith( 'How are you? : Hello, World!', "string", - 1.82, // 0.91, // 0.71, // 0.6, + 1.95, // 1.82, // 0.91, // 0.71, // 0.6, 3 )->unfoldUsing( UIKit::pageTitle(["Hello, World!", "How are you?"], " : ")->reversed() From 5f1fecdac181a754006a77a170722fd15a4f551a Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Mon, 20 Sep 2021 19:14:00 -0500 Subject: [PATCH 11/12] string only --- src/UIKit/Elements/Simple/PageTitle.php | 12 ++++++++++++ tests/UIKit/SimpleTest.php | 9 +++++++++ 2 files changed, 21 insertions(+) diff --git a/src/UIKit/Elements/Simple/PageTitle.php b/src/UIKit/Elements/Simple/PageTitle.php index f533644..cc287a9 100755 --- a/src/UIKit/Elements/Simple/PageTitle.php +++ b/src/UIKit/Elements/Simple/PageTitle.php @@ -14,6 +14,8 @@ class PageTitle extends HtmlElement private $reversed = false; + private $stringOnly = false; + public function __construct(array $titleParts, string $separater = " | ") { $this->main = $titleParts; @@ -33,6 +35,10 @@ public function unfold(): string $string = implode($this->separater, $this->main); + if ($this->stringOnly) { + return $string; + } + return Html::title($string)->attr(...$this->attributes)->unfold(); } @@ -41,4 +47,10 @@ public function reversed(): PageTitle $this->reversed = true; return $this; } + + public function stringOnly(): PageTitle + { + $this->stringOnly = true; + return $this; + } } diff --git a/tests/UIKit/SimpleTest.php b/tests/UIKit/SimpleTest.php index 61ecae0..d551355 100755 --- a/tests/UIKit/SimpleTest.php +++ b/tests/UIKit/SimpleTest.php @@ -59,6 +59,15 @@ public function page_title() )->unfoldUsing( UIKit::pageTitle(["Hello, World!", "How are you?"], " : ")->reversed() ); + + AssertEquals::applyWith( + 'How are you? : Hello, World!', + "string", + 1.95, // 1.82, // 0.91, // 0.71, // 0.6, + 3 + )->unfoldUsing( + UIKit::pageTitle(["Hello, World!", "How are you?"], " : ")->reversed()->stringOnly() + ); } /** From 8c67df36137cc37943f9760e1f353fb47dd6af90 Mon Sep 17 00:00:00 2001 From: Josh Bruce Date: Tue, 21 Sep 2021 18:27:01 -0500 Subject: [PATCH 12/12] update dependencies --- composer.json | 2 +- composer.lock | 50 +++++++++++++++++++++++++------------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/composer.json b/composer.json index a95a167..3e25918 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ ], "require": { "php": "^7.2|^8.0", - "8fold/php-shoop-shelf": "^0.8.5", + "8fold/php-shoop-shelf": "^0.8.6", "8fold/php-html-spec": "^0.0.5", "nesbot/carbon": "^2.5" }, diff --git a/composer.lock b/composer.lock index 5ab767e..dcce2e8 100644 --- a/composer.lock +++ b/composer.lock @@ -164,27 +164,27 @@ }, { "name": "8fold/php-shoop-shelf", - "version": "0.8.5", + "version": "0.8.6", "source": { "type": "git", "url": "https://github.com/8fold/php-shoop-shelf.git", - "reference": "2ca01d3f2d80b0c2a493bdc506e46f70c49617e5" + "reference": "4086354b9926892f57cab856bdc311defa171928" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/8fold/php-shoop-shelf/zipball/2ca01d3f2d80b0c2a493bdc506e46f70c49617e5", - "reference": "2ca01d3f2d80b0c2a493bdc506e46f70c49617e5", + "url": "https://api.github.com/repos/8fold/php-shoop-shelf/zipball/4086354b9926892f57cab856bdc311defa171928", + "reference": "4086354b9926892f57cab856bdc311defa171928", "shasum": "" }, "require": { - "8fold/php-shoop": "~0.10", - "league/commonmark": "~2.0.1", - "league/flysystem": "~2.0", - "php": "^7.2|^8.0", - "spatie/yaml-front-matter": "~2.0.5" + "8fold/php-shoop": "^0.10.19", + "league/commonmark": "^2.0.2", + "league/flysystem": "^1.1.5|^2.2.3", + "php": "^7.0|^8.0", + "spatie/yaml-front-matter": "^2.0.5" }, "require-dev": { - "phpunit/phpunit": "~9.3.3" + "phpunit/phpunit": "^9.5.8" }, "type": "library", "autoload": { @@ -205,7 +205,7 @@ "description": "Shoop-like objects that do not fit at the 8fold Shoop table.", "support": { "issues": "https://github.com/8fold/php-shoop-shelf/issues", - "source": "https://github.com/8fold/php-shoop-shelf/tree/0.8.5" + "source": "https://github.com/8fold/php-shoop-shelf/tree/0.8.6" }, "funding": [ { @@ -217,7 +217,7 @@ "type": "github" } ], - "time": "2021-08-15T18:47:10+00:00" + "time": "2021-09-21T22:13:37+00:00" }, { "name": "dflydev/dot-access-data", @@ -786,20 +786,20 @@ }, { "name": "nette/utils", - "version": "v3.2.3", + "version": "v3.2.5", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822" + "reference": "9cd80396ca58d7969ab44fc7afcf03624dfa526e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822", - "reference": "5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822", + "url": "https://api.github.com/repos/nette/utils/zipball/9cd80396ca58d7969ab44fc7afcf03624dfa526e", + "reference": "9cd80396ca58d7969ab44fc7afcf03624dfa526e", "shasum": "" }, "require": { - "php": ">=7.2 <8.1" + "php": ">=7.2 <8.2" }, "conflict": { "nette/di": "<3.0.6" @@ -865,9 +865,9 @@ ], "support": { "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v3.2.3" + "source": "https://github.com/nette/utils/tree/v3.2.5" }, - "time": "2021-08-16T21:05:00+00:00" + "time": "2021-09-20T10:50:11+00:00" }, { "name": "nikic/iter", @@ -1710,16 +1710,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.12.0", + "version": "v4.13.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "6608f01670c3cc5079e18c1dab1104e002579143" + "reference": "50953a2691a922aa1769461637869a0a2faa3f53" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6608f01670c3cc5079e18c1dab1104e002579143", - "reference": "6608f01670c3cc5079e18c1dab1104e002579143", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/50953a2691a922aa1769461637869a0a2faa3f53", + "reference": "50953a2691a922aa1769461637869a0a2faa3f53", "shasum": "" }, "require": { @@ -1760,9 +1760,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.12.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.0" }, - "time": "2021-07-21T10:44:31+00:00" + "time": "2021-09-20T12:20:58+00:00" }, { "name": "phar-io/manifest",