Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Dec 2024 09:05:07 GMT
From:      Zsolt Udvari <uzsolt@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 5b534a0f925a - main - www/webtrees21: Update to 2.1.22
Message-ID:  <202412150905.4BF957N0033412@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by uzsolt:

URL: https://cgit.FreeBSD.org/ports/commit/?id=5b534a0f925a580e5f904d727ef1a299694b0581

commit 5b534a0f925a580e5f904d727ef1a299694b0581
Author:     Krzysztof <ports@bsdserwis.com>
AuthorDate: 2024-12-15 08:35:36 +0000
Commit:     Zsolt Udvari <uzsolt@FreeBSD.org>
CommitDate: 2024-12-15 09:04:41 +0000

    www/webtrees21: Update to 2.1.22
    
    Introduce PHP flavors. This branch is targeted to PHP 7.4-8.2 so should
    use IGNORE_WITH_PHP.
    Conflicts webtree20 so doesn't need change DOCSDIR and WWWDIR
    from default and can remove SUB_LIST variable.
    Move LICENSE.md from PORTDOCS to LICENSE_FILE.
    Switch to DISTVERSION.
    
    Changelog: https://webtrees.net/blog/2024/11/30/new-webtrees-release-2-2-1.html
    
    PR:             283149
    Approved by:    submitter is maintainer
---
 www/webtrees21/Makefile             |  15 +-
 www/webtrees21/distinfo             |   6 +-
 www/webtrees21/files/pkg-message.in |  12 +-
 www/webtrees21/pkg-plist            | 401 ++++++++++++++++++++++++++++++++++--
 4 files changed, 403 insertions(+), 31 deletions(-)

diff --git a/www/webtrees21/Makefile b/www/webtrees21/Makefile
index 9b6ff8e49d4d..f3e5d619cf96 100644
--- a/www/webtrees21/Makefile
+++ b/www/webtrees21/Makefile
@@ -1,31 +1,32 @@
 PORTNAME=	webtrees
-PORTVERSION=	2.1.20
+DISTVERSION=	2.1.22
 CATEGORIES=	www
 MASTER_SITES=	https://github.com/fisharebest/${PORTNAME}/releases/download/${PORTVERSION}/
-PKGNAMESUFFIX=	21
+PKGNAMESUFFIX=	21${PHP_PKGNAMESUFFIX}
 
 MAINTAINER=	ports@bsdserwis.com
 COMMENT=	Online genealogy viewer (for PHP 7.4-8.2)
 WWW=		https://webtrees.net/
 
 LICENSE=	GPLv3+
+LICENSE_FILE=	${WRKSRC}/${PORTNAME}/LICENSE.md
 
+IGNORE_WITH_PHP=	83 84
 USES=		cpe php shebangfix zip
 # php pcre extension is required but it's statically linked in default php
 USE_PHP=	calendar curl dom filter gd iconv pdo_mysql session xml
 
 SHEBANG_FILES=	webtrees/vendor/tecnickcom/tcpdf/tools/tcpdf_addfont.php
 
-WWWDIR=		${PREFIX}/www/webtrees${PKGNAMESUFFIX}
+CONFLICTS=	webtrees20-2.0*
+
 EXTRACT_AFTER_ARGS=	-d ${WRKSRC}
 NO_ARCH=	yes
 NO_BUILD=	yes
 
-SUB_FILES=	pkg-message pkg-deinstall
-SUB_LIST=	VERSION_SUFFIX=${PKGNAMESUFFIX}
+SUB_FILES=	pkg-deinstall pkg-message
 
-DOCSDIR=	${PREFIX}/share/doc/webtrees21
-PORTDOCS=	CONTRIBUTING.md LICENSE.md README.md SECURITY.md
+PORTDOCS=	CONTRIBUTING.md README.md SECURITY.md
 
 OPTIONS_DEFINE=	DOCS
 
diff --git a/www/webtrees21/distinfo b/www/webtrees21/distinfo
index 4c26e94b9148..626c47e4fbed 100644
--- a/www/webtrees21/distinfo
+++ b/www/webtrees21/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1712772104
-SHA256 (webtrees-2.1.20.zip) = 0e2f9ccf601e5d4579ef90d727b1630620bc22b9ef66c4aacbaf7329b3c7b49d
-SIZE (webtrees-2.1.20.zip) = 32799876
+TIMESTAMP = 1733268404
+SHA256 (webtrees-2.1.22.zip) = b5b27406013f26e08869b97ff3cb20063f4d272a8385a5c5997df4223c4b079c
+SIZE (webtrees-2.1.22.zip) = 34151286
diff --git a/www/webtrees21/files/pkg-message.in b/www/webtrees21/files/pkg-message.in
index 994a4302c5ed..25ef3f3538f4 100644
--- a/www/webtrees21/files/pkg-message.in
+++ b/www/webtrees21/files/pkg-message.in
@@ -7,7 +7,7 @@ webtrees for the first time:
 1. For installation on the apache web server, add the following to your
    apache site configuration, and reload the web server:
 
-	Alias /webtrees%%VERSION_SUFFIX%% %%WWWDIR%%/
+	Alias /webtrees %%WWWDIR%%/
 
 	### Add the AcceptPathInfo directive only for Apache 2.0.30
 	### or later.
@@ -22,7 +22,7 @@ webtrees for the first time:
 2. For installation on the nginx web server, add the following to your
    nginx site configuration, and reload the web server:
 
-	location /webtrees%%VERSION_SUFFIX%% {
+	location /webtrees {
 		alias %%WWWDIR%%;
 		index  index.php;
 	}
@@ -39,12 +39,12 @@ webtrees for the first time:
    and database using commands such as (substitute PASSWD for something
    of your own choosing):
 
-	mysql> create user webtrees%%VERSION_SUFFIX%%@localhost identified by PASSWD;
-	mysql> create database webtrees%%VERSION_SUFFIX%%;
-	mysql> grant all on webtrees%%VERSION_SUFFIX%%.* to webtrees%%VERSION_SUFFIX%%@localhost;
+	mysql> create user webtrees@localhost identified by PASSWD;
+	mysql> create database webtrees;
+	mysql> grant all on webtrees.* to webtrees@localhost;
 
 4. Configure webtrees by browsing to the webtrees URL:
-	http://your.server.com/webtrees%%VERSION_SUFFIX%%/
+	http://your.server.com/webtrees/
    and you should be taken to the setup wizard, which will lead you
    through setting up webtrees: asking for the database server, database
    user and database name, and then assist you in creating a webtrees
diff --git a/www/webtrees21/pkg-plist b/www/webtrees21/pkg-plist
index a3f250efc463..643402655e37 100644
--- a/www/webtrees21/pkg-plist
+++ b/www/webtrees21/pkg-plist
@@ -929,6 +929,7 @@
 %%WWWDIR%%/app/MediaFile.php
 %%WWWDIR%%/app/Menu.php
 %%WWWDIR%%/app/Mime.php
+%%WWWDIR%%/app/Module/AbstractIndividualListModule.php
 %%WWWDIR%%/app/Module/AbstractModule.php
 %%WWWDIR%%/app/Module/AhnentafelReportModule.php
 %%WWWDIR%%/app/Module/AlbumModule.php
@@ -1137,6 +1138,7 @@
 %%WWWDIR%%/app/Module/ModuleTabTrait.php
 %%WWWDIR%%/app/Module/ModuleThemeInterface.php
 %%WWWDIR%%/app/Module/ModuleThemeTrait.php
+%%WWWDIR%%/app/Module/NewZealandPrimeMinisters.php
 %%WWWDIR%%/app/Module/NoteListModule.php
 %%WWWDIR%%/app/Module/NotesTabModule.php
 %%WWWDIR%%/app/Module/OccupationReportModule.php
@@ -1390,6 +1392,7 @@
 %%WWWDIR%%/data/index.php
 %%WWWDIR%%/favicon.ico
 %%WWWDIR%%/index.php
+%%WWWDIR%%/phpstan-baseline.php-e
 %%WWWDIR%%/public/apple-touch-icon.png
 %%WWWDIR%%/public/ckeditor-4.15.1-custom/adapters/jquery.js
 %%WWWDIR%%/public/ckeditor-4.15.1-custom/build-config.js
@@ -2513,6 +2516,7 @@
 %%WWWDIR%%/vendor/bin/carbon
 %%WWWDIR%%/vendor/bin/doctrine-dbal
 %%WWWDIR%%/vendor/bin/generate_vcards
+%%WWWDIR%%/vendor/bin/var-dump-server
 %%WWWDIR%%/vendor/bin/vobject
 %%WWWDIR%%/vendor/brick/math/composer.json
 %%WWWDIR%%/vendor/brick/math/LICENSE
@@ -2766,6 +2770,7 @@
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MariaDBKeywords.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MySQL57Keywords.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MySQL80Keywords.php
+%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MySQL84Keywords.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MySQLKeywords.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/OracleKeywords.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/PostgreSQL100Keywords.php
@@ -2775,6 +2780,7 @@
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/SQLiteKeywords.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/SQLServer2012Keywords.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/SQLServerKeywords.php
+%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MariaDb1010Platform.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MariaDb1027Platform.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MariaDb1043Platform.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MariaDb1052Platform.php
@@ -2786,9 +2792,11 @@
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQL/Comparator.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQL57Platform.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQL80Platform.php
+%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQL84Platform.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQLPlatform.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/OraclePlatform.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/PostgreSQL100Platform.php
+%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/PostgreSQL120Platform.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/PostgreSQL94Platform.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/PostgreSQLPlatform.php
 %%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/SQLite/Comparator.php
@@ -3086,6 +3094,7 @@
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php
+%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ratio.php
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php
@@ -3205,6 +3214,7 @@
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt
+%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveBlanks.txt
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt
 %%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt
@@ -6889,6 +6899,81 @@
 %%WWWDIR%%/vendor/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php
 %%WWWDIR%%/vendor/league/mime-type-detection/src/MimeTypeDetector.php
 %%WWWDIR%%/vendor/league/mime-type-detection/src/OverridingExtensionToMimeTypeMap.php
+%%WWWDIR%%/vendor/maximebf/debugbar/composer.json
+%%WWWDIR%%/vendor/maximebf/debugbar/LICENSE
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/CacheCacheCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/DoctrineCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/MonologCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/Propel2Collector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/PropelCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/SlimCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/SwiftMailer/SwiftLogCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/SwiftMailer/SwiftMailCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/Twig/TimeableTwigExtensionProfiler.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/Twig/TraceableTwigEnvironment.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/Twig/TraceableTwigTemplate.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/Twig/TwigCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/TwigProfileCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/AggregatedCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/AssetProvider.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/ConfigCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/DataCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/DataCollectorInterface.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/ExceptionsCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/LocalizationCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/MemoryCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/MessagesAggregateInterface.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/MessagesCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/PDO/PDOCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/PDO/TraceablePDO.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/PDO/TraceablePDOStatement.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/PDO/TracedStatement.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/PhpInfoCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/Renderable.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/RequestDataCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/TimeDataCollector.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataFormatter/DataFormatter.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataFormatter/DataFormatterInterface.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataFormatter/DebugBarVarDumper.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataFormatter/VarDumper/DebugBarHtmlDumper.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataFormatter/VarDumper/SeekingData.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DebugBar.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DebugBarException.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/HttpDriverInterface.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/JavascriptRenderer.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/OpenHandler.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/PhpHttpDriver.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/RequestIdGenerator.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/RequestIdGeneratorInterface.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/debugbar.css
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/debugbar.js
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/openhandler.css
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/openhandler.js
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/css/font-awesome.min.css
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/fontawesome-webfont.eot
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/fontawesome-webfont.svg
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/fontawesome-webfont.ttf
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/fontawesome-webfont.woff
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/fontawesome-webfont.woff2
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/FontAwesome.otf
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/highlightjs/highlight.pack.js
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/highlightjs/styles/github.css
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/jquery/dist/jquery.min.js
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/mails/widget.css
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/mails/widget.js
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/sqlqueries/widget.css
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/sqlqueries/widget.js
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/templates/widget.css
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/templates/widget.js
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets.css
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets.js
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/StandardDebugBar.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/FileStorage.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/MemcachedStorage.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/pdo_storage_schema.sql
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/PdoStorage.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/RedisStorage.php
+%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/StorageInterface.php
 %%WWWDIR%%/vendor/middlewares/client-ip/.github/workflows/main.yaml
 %%WWWDIR%%/vendor/middlewares/client-ip/composer.json
 %%WWWDIR%%/vendor/middlewares/client-ip/LICENSE
@@ -7871,11 +7956,8 @@
 %%WWWDIR%%/vendor/nette/utils/src/Utils/Strings.php
 %%WWWDIR%%/vendor/nette/utils/src/Utils/Type.php
 %%WWWDIR%%/vendor/nette/utils/src/Utils/Validators.php
-%%WWWDIR%%/vendor/nyholm/psr7/.php-cs-fixer.dist.php
 %%WWWDIR%%/vendor/nyholm/psr7/composer.json
 %%WWWDIR%%/vendor/nyholm/psr7/LICENSE
-%%WWWDIR%%/vendor/nyholm/psr7/phpstan-baseline.neon
-%%WWWDIR%%/vendor/nyholm/psr7/psalm.baseline.xml
 %%WWWDIR%%/vendor/nyholm/psr7/src/Factory/HttplugFactory.php
 %%WWWDIR%%/vendor/nyholm/psr7/src/Factory/Psr17Factory.php
 %%WWWDIR%%/vendor/nyholm/psr7/src/MessageTrait.php
@@ -7900,6 +7982,234 @@
 %%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/NegativeResultTrait.php
 %%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/Path.php
 %%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/Pattern.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/.github/workflows/push.yml
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/.scrutinizer.yml
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/.travis.yml
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/appveyor.yml
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/composer.json
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/easy-coding-standard.neon
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/LICENSE
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/Makefile
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/phive.xml
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/phpcs.xml.dist
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/phpmd.xml.dist
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/phpstan.neon
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/psalm.xml
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Element.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/File.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Fqsen.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Location.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Project.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/ProjectFactory.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/.coveralls.yml
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/appveyor.yml
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/composer.json
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/easy-coding-standard.neon
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/LICENSE
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Description.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/AlignFormatter.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Url.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/TagWithType.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlockFactory.php
+%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/.github/workflows/push.yml
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/appveyor.yml
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/composer-require-config.json
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/composer.json
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/composer.lock
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/LICENSE
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/phive.xml
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/phpcs.xml.dist
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/phpstan.neon
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/psalm.xml
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/FqsenResolver.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Type.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/TypeResolver.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/AbstractList.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Array_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Boolean.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Callable_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Collection.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Compound.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Context.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/ContextFactory.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Float_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Integer.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Iterable_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Mixed_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Null_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Nullable.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Object_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Parent_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Resource_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Scalar.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Self_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Static_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/String_.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/This.php
+%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Void_.php
+%%WWWDIR%%/vendor/phpspec/prophecy/composer.json
+%%WWWDIR%%/vendor/phpspec/prophecy/LICENSE
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Call/Call.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Call/CallCenter.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Comparator/Factory.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ThrowablePatch.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/TypeHintReference.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Exception.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophet.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php
+%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Util/StringUtil.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/.gitattributes
+%%WWWDIR%%/vendor/phpunit/php-token-stream/.github/FUNDING.yml
+%%WWWDIR%%/vendor/phpunit/php-token-stream/.gitignore
+%%WWWDIR%%/vendor/phpunit/php-token-stream/.travis.yml
+%%WWWDIR%%/vendor/phpunit/php-token-stream/build.xml
+%%WWWDIR%%/vendor/phpunit/php-token-stream/composer.json
+%%WWWDIR%%/vendor/phpunit/php-token-stream/LICENSE
+%%WWWDIR%%/vendor/phpunit/php-token-stream/phpunit.xml
+%%WWWDIR%%/vendor/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/src/Token/Stream.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/src/Token/Util.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/src/Token.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_named_empty.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_that_declares_anonymous_class.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_that_declares_anonymous_class2.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/class_with_multiple_anonymous_classes_and_functions.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/classExtendsNamespacedClass.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/classInNamespace.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/classInScopedNamespace.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/classUsesNamespacedFunction.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/closure.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/issue19.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/issue30.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingBraces.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingNonBraceSyntax.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/php-code-coverage-issue-424.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/source.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/source2.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/source3.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/source4.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/source5.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/bootstrap.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/ClassTest.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/ClosureTest.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/FunctionTest.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/IncludeTest.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/InterfaceTest.php
+%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/NamespaceTest.php
 %%WWWDIR%%/vendor/psr/cache/composer.json
 %%WWWDIR%%/vendor/psr/cache/LICENSE.txt
 %%WWWDIR%%/vendor/psr/cache/src/CacheException.php
@@ -8111,7 +8421,6 @@
 %%WWWDIR%%/vendor/ramsey/uuid/src/UuidInterface.php
 %%WWWDIR%%/vendor/ramsey/uuid/src/Validator/GenericValidator.php
 %%WWWDIR%%/vendor/ramsey/uuid/src/Validator/ValidatorInterface.php
-%%WWWDIR%%/vendor/sabre/uri/.php-cs-fixer.dist.php
 %%WWWDIR%%/vendor/sabre/uri/composer.json
 %%WWWDIR%%/vendor/sabre/uri/lib/functions.php
 %%WWWDIR%%/vendor/sabre/uri/lib/InvalidUriException.php
@@ -8214,8 +8523,6 @@
 %%WWWDIR%%/vendor/sabre/vobject/LICENSE
 %%WWWDIR%%/vendor/sabre/vobject/resources/schema/xcal.rng
 %%WWWDIR%%/vendor/sabre/vobject/resources/schema/xcard.rng
-%%WWWDIR%%/vendor/sabre/xml/.php-cs-fixer.dist.php
-%%WWWDIR%%/vendor/sabre/xml/bin/.empty
 %%WWWDIR%%/vendor/sabre/xml/composer.json
 %%WWWDIR%%/vendor/sabre/xml/lib/ContextStackTrait.php
 %%WWWDIR%%/vendor/sabre/xml/lib/Deserializer/functions.php
@@ -8295,7 +8602,6 @@
 %%WWWDIR%%/vendor/symfony/cache/Traits/RedisClusterProxy.php
 %%WWWDIR%%/vendor/symfony/cache/Traits/RedisProxy.php
 %%WWWDIR%%/vendor/symfony/cache/Traits/RedisTrait.php
-%%WWWDIR%%/vendor/symfony/cache-contracts/.gitignore
 %%WWWDIR%%/vendor/symfony/cache-contracts/CacheInterface.php
 %%WWWDIR%%/vendor/symfony/cache-contracts/CacheTrait.php
 %%WWWDIR%%/vendor/symfony/cache-contracts/CallbackInterface.php
@@ -8412,7 +8718,6 @@
 %%WWWDIR%%/vendor/symfony/console/Tester/CommandTester.php
 %%WWWDIR%%/vendor/symfony/console/Tester/Constraint/CommandIsSuccessful.php
 %%WWWDIR%%/vendor/symfony/console/Tester/TesterTrait.php
-%%WWWDIR%%/vendor/symfony/deprecation-contracts/.gitignore
 %%WWWDIR%%/vendor/symfony/deprecation-contracts/composer.json
 %%WWWDIR%%/vendor/symfony/deprecation-contracts/function.php
 %%WWWDIR%%/vendor/symfony/deprecation-contracts/LICENSE
@@ -8429,7 +8734,6 @@
 %%WWWDIR%%/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php
 %%WWWDIR%%/vendor/symfony/event-dispatcher/LegacyEventDispatcherProxy.php
 %%WWWDIR%%/vendor/symfony/event-dispatcher/LICENSE
-%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/.gitignore
 %%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/composer.json
 %%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/Event.php
 %%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/EventDispatcherInterface.php
@@ -8626,10 +8930,6 @@
 %%WWWDIR%%/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
 %%WWWDIR%%/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php
 %%WWWDIR%%/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php
-%%WWWDIR%%/vendor/symfony/polyfill-php72/bootstrap.php
-%%WWWDIR%%/vendor/symfony/polyfill-php72/composer.json
-%%WWWDIR%%/vendor/symfony/polyfill-php72/LICENSE
-%%WWWDIR%%/vendor/symfony/polyfill-php72/Php72.php
 %%WWWDIR%%/vendor/symfony/polyfill-php73/bootstrap.php
 %%WWWDIR%%/vendor/symfony/polyfill-php73/composer.json
 %%WWWDIR%%/vendor/symfony/polyfill-php73/LICENSE
@@ -8651,7 +8951,6 @@
 %%WWWDIR%%/vendor/symfony/polyfill-php81/Php81.php
 %%WWWDIR%%/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php
 %%WWWDIR%%/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php
-%%WWWDIR%%/vendor/symfony/service-contracts/.gitignore
 %%WWWDIR%%/vendor/symfony/service-contracts/Attribute/Required.php
 %%WWWDIR%%/vendor/symfony/service-contracts/Attribute/SubscribedService.php
 %%WWWDIR%%/vendor/symfony/service-contracts/composer.json
@@ -8662,6 +8961,7 @@
 %%WWWDIR%%/vendor/symfony/service-contracts/ServiceSubscriberInterface.php
 %%WWWDIR%%/vendor/symfony/service-contracts/ServiceSubscriberTrait.php
 %%WWWDIR%%/vendor/symfony/service-contracts/Test/ServiceLocatorTest.php
+%%WWWDIR%%/vendor/symfony/service-contracts/Test/ServiceLocatorTestCase.php
 %%WWWDIR%%/vendor/symfony/string/AbstractString.php
 %%WWWDIR%%/vendor/symfony/string/AbstractUnicodeString.php
 %%WWWDIR%%/vendor/symfony/string/ByteString.php
@@ -8776,7 +9076,6 @@
 %%WWWDIR%%/vendor/symfony/translation/Util/XliffUtils.php
 %%WWWDIR%%/vendor/symfony/translation/Writer/TranslationWriter.php
 %%WWWDIR%%/vendor/symfony/translation/Writer/TranslationWriterInterface.php
-%%WWWDIR%%/vendor/symfony/translation-contracts/.gitignore
 %%WWWDIR%%/vendor/symfony/translation-contracts/composer.json
 %%WWWDIR%%/vendor/symfony/translation-contracts/LICENSE
 %%WWWDIR%%/vendor/symfony/translation-contracts/LocaleAwareInterface.php
@@ -8784,6 +9083,72 @@
 %%WWWDIR%%/vendor/symfony/translation-contracts/TranslatableInterface.php
 %%WWWDIR%%/vendor/symfony/translation-contracts/TranslatorInterface.php
 %%WWWDIR%%/vendor/symfony/translation-contracts/TranslatorTrait.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/AmqpCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ArgsStub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/Caster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ClassStub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ConstStub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/CutArrayStub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/CutStub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DateCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DoctrineCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DOMCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DsCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DsPairStub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/EnumStub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ExceptionCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/FrameStub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/GmpCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ImagineCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ImgStub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/IntlCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/LinkStub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/MemcachedCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/PdoCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/PgSqlCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ProxyManagerCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/RedisCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ReflectionCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ResourceCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/SplCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/StubCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/SymfonyCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/TraceStub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/UuidCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/XmlReaderCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Caster/XmlResourceCaster.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/AbstractCloner.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/ClonerInterface.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/Cursor.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/Data.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/DumperInterface.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/Stub.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/VarCloner.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Command/Descriptor/CliDescriptor.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Command/Descriptor/DumpDescriptorInterface.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Command/Descriptor/HtmlDescriptor.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Command/ServerDumpCommand.php
+%%WWWDIR%%/vendor/symfony/var-dumper/composer.json
+%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/AbstractDumper.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/CliDumper.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/CliContextProvider.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/ContextProviderInterface.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/RequestContextProvider.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/SourceContextProvider.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextualizedDumper.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/DataDumperInterface.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/HtmlDumper.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ServerDumper.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Exception/ThrowingCasterException.php
+%%WWWDIR%%/vendor/symfony/var-dumper/LICENSE
+%%WWWDIR%%/vendor/symfony/var-dumper/Resources/bin/var-dump-server
+%%WWWDIR%%/vendor/symfony/var-dumper/Resources/css/htmlDescriptor.css
+%%WWWDIR%%/vendor/symfony/var-dumper/Resources/functions/dump.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Resources/js/htmlDescriptor.js
+%%WWWDIR%%/vendor/symfony/var-dumper/Server/Connection.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Server/DumpServer.php
+%%WWWDIR%%/vendor/symfony/var-dumper/Test/VarDumperTestTrait.php
+%%WWWDIR%%/vendor/symfony/var-dumper/VarDumper.php
 %%WWWDIR%%/vendor/symfony/var-exporter/composer.json
 %%WWWDIR%%/vendor/symfony/var-exporter/Exception/ClassNotFoundException.php
 %%WWWDIR%%/vendor/symfony/var-exporter/Exception/ExceptionInterface.php
@@ -9370,6 +9735,12 @@
 %%WWWDIR%%/vendor/voku/portable-ascii/src/voku/helper/data/x1d6.php
 %%WWWDIR%%/vendor/voku/portable-ascii/src/voku/helper/data/x1d7.php
 %%WWWDIR%%/vendor/voku/portable-ascii/src/voku/helper/data/x1f1.php
+%%WWWDIR%%/vendor/webmozart/assert/.editorconfig
+%%WWWDIR%%/vendor/webmozart/assert/composer.json
+%%WWWDIR%%/vendor/webmozart/assert/LICENSE
+%%WWWDIR%%/vendor/webmozart/assert/psalm.xml
+%%WWWDIR%%/vendor/webmozart/assert/src/Assert.php
+%%WWWDIR%%/vendor/webmozart/assert/src/Mixin.php
 @dir %%WWWDIR%%/modules_v4
 @dir %%WWWDIR%%/vendor/io-developer/php-whois/.github/ISSUE_TEMPLATE
 @dir %%WWWDIR%%/vendor/psr/http-message/docs



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202412150905.4BF957N0033412>