View | Details | Raw Unified | Return to bug 283149 | Differences between
and this patch

Collapse All | Expand All

(-)b/www/webtrees21/Makefile (-7 / +6 lines)
Lines 1-31 Link Here
1
PORTNAME=	webtrees
1
PORTNAME=	webtrees
2
PORTVERSION=	2.1.20
2
DISTVERSION=	2.1.22
3
CATEGORIES=	www
3
CATEGORIES=	www
4
MASTER_SITES=	https://github.com/fisharebest/${PORTNAME}/releases/download/${PORTVERSION}/
4
MASTER_SITES=	https://github.com/fisharebest/${PORTNAME}/releases/download/${PORTVERSION}/
5
PKGNAMESUFFIX=	21
5
PKGNAMESUFFIX=	21${PHP_PKGNAMESUFFIX}
6
6
7
MAINTAINER=	ports@bsdserwis.com
7
MAINTAINER=	ports@bsdserwis.com
8
COMMENT=	Online genealogy viewer (for PHP 7.4-8.2)
8
COMMENT=	Online genealogy viewer (for PHP 7.4-8.2)
9
WWW=		https://webtrees.net/
9
WWW=		https://webtrees.net/
10
10
11
LICENSE=	GPLv3+
11
LICENSE=	GPLv3+
12
LICENSE_FILE=	LICENSE.md
12
13
14
IGNORE_WITH_PHP=	83 84
13
USES=		cpe php shebangfix zip
15
USES=		cpe php shebangfix zip
14
# php pcre extension is required but it's statically linked in default php
16
# php pcre extension is required but it's statically linked in default php
15
USE_PHP=	calendar curl dom filter gd iconv pdo_mysql session xml
17
USE_PHP=	calendar curl dom filter gd iconv pdo_mysql session xml
16
18
17
SHEBANG_FILES=	webtrees/vendor/tecnickcom/tcpdf/tools/tcpdf_addfont.php
19
SHEBANG_FILES=	webtrees/vendor/tecnickcom/tcpdf/tools/tcpdf_addfont.php
18
20
19
WWWDIR=		${PREFIX}/www/webtrees${PKGNAMESUFFIX}
20
EXTRACT_AFTER_ARGS=	-d ${WRKSRC}
21
EXTRACT_AFTER_ARGS=	-d ${WRKSRC}
21
NO_ARCH=	yes
22
NO_ARCH=	yes
22
NO_BUILD=	yes
23
NO_BUILD=	yes
23
24
24
SUB_FILES=	pkg-message pkg-deinstall
25
SUB_FILES=	pkg-deinstall pkg-message
25
SUB_LIST=	VERSION_SUFFIX=${PKGNAMESUFFIX}
26
26
27
DOCSDIR=	${PREFIX}/share/doc/webtrees21
27
PORTDOCS=	CONTRIBUTING.md README.md SECURITY.md
28
PORTDOCS=	CONTRIBUTING.md LICENSE.md README.md SECURITY.md
29
28
30
OPTIONS_DEFINE=	DOCS
29
OPTIONS_DEFINE=	DOCS
31
30
(-)b/www/webtrees21/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1712772104
1
TIMESTAMP = 1733268404
2
SHA256 (webtrees-2.1.20.zip) = 0e2f9ccf601e5d4579ef90d727b1630620bc22b9ef66c4aacbaf7329b3c7b49d
2
SHA256 (webtrees-2.1.22.zip) = b5b27406013f26e08869b97ff3cb20063f4d272a8385a5c5997df4223c4b079c
3
SIZE (webtrees-2.1.20.zip) = 32799876
3
SIZE (webtrees-2.1.22.zip) = 34151286
(-)b/www/webtrees21/files/pkg-message.in (-6 / +6 lines)
Lines 7-13 webtrees for the first time: Link Here
7
1. For installation on the apache web server, add the following to your
7
1. For installation on the apache web server, add the following to your
8
   apache site configuration, and reload the web server:
8
   apache site configuration, and reload the web server:
9
9
10
	Alias /webtrees%%VERSION_SUFFIX%% %%WWWDIR%%/
10
	Alias /webtrees %%WWWDIR%%/
11
11
12
	### Add the AcceptPathInfo directive only for Apache 2.0.30
12
	### Add the AcceptPathInfo directive only for Apache 2.0.30
13
	### or later.
13
	### or later.
Lines 22-28 webtrees for the first time: Link Here
22
2. For installation on the nginx web server, add the following to your
22
2. For installation on the nginx web server, add the following to your
23
   nginx site configuration, and reload the web server:
23
   nginx site configuration, and reload the web server:
24
24
25
	location /webtrees%%VERSION_SUFFIX%% {
25
	location /webtrees {
26
		alias %%WWWDIR%%;
26
		alias %%WWWDIR%%;
27
		index  index.php;
27
		index  index.php;
28
	}
28
	}
Lines 39-50 webtrees for the first time: Link Here
39
   and database using commands such as (substitute PASSWD for something
39
   and database using commands such as (substitute PASSWD for something
40
   of your own choosing):
40
   of your own choosing):
41
41
42
	mysql> create user webtrees%%VERSION_SUFFIX%%@localhost identified by PASSWD;
42
	mysql> create user webtrees@localhost identified by PASSWD;
43
	mysql> create database webtrees%%VERSION_SUFFIX%%;
43
	mysql> create database webtrees;
44
	mysql> grant all on webtrees%%VERSION_SUFFIX%%.* to webtrees%%VERSION_SUFFIX%%@localhost;
44
	mysql> grant all on webtrees.* to webtrees@localhost;
45
45
46
4. Configure webtrees by browsing to the webtrees URL:
46
4. Configure webtrees by browsing to the webtrees URL:
47
	http://your.server.com/webtrees%%VERSION_SUFFIX%%/
47
	http://your.server.com/webtrees/
48
   and you should be taken to the setup wizard, which will lead you
48
   and you should be taken to the setup wizard, which will lead you
49
   through setting up webtrees: asking for the database server, database
49
   through setting up webtrees: asking for the database server, database
50
   user and database name, and then assist you in creating a webtrees
50
   user and database name, and then assist you in creating a webtrees
(-)b/www/webtrees21/pkg-plist (-15 / +386 lines)
Lines 929-934 Link Here
929
%%WWWDIR%%/app/MediaFile.php
929
%%WWWDIR%%/app/MediaFile.php
930
%%WWWDIR%%/app/Menu.php
930
%%WWWDIR%%/app/Menu.php
931
%%WWWDIR%%/app/Mime.php
931
%%WWWDIR%%/app/Mime.php
932
%%WWWDIR%%/app/Module/AbstractIndividualListModule.php
932
%%WWWDIR%%/app/Module/AbstractModule.php
933
%%WWWDIR%%/app/Module/AbstractModule.php
933
%%WWWDIR%%/app/Module/AhnentafelReportModule.php
934
%%WWWDIR%%/app/Module/AhnentafelReportModule.php
934
%%WWWDIR%%/app/Module/AlbumModule.php
935
%%WWWDIR%%/app/Module/AlbumModule.php
Lines 1137-1142 Link Here
1137
%%WWWDIR%%/app/Module/ModuleTabTrait.php
1138
%%WWWDIR%%/app/Module/ModuleTabTrait.php
1138
%%WWWDIR%%/app/Module/ModuleThemeInterface.php
1139
%%WWWDIR%%/app/Module/ModuleThemeInterface.php
1139
%%WWWDIR%%/app/Module/ModuleThemeTrait.php
1140
%%WWWDIR%%/app/Module/ModuleThemeTrait.php
1141
%%WWWDIR%%/app/Module/NewZealandPrimeMinisters.php
1140
%%WWWDIR%%/app/Module/NoteListModule.php
1142
%%WWWDIR%%/app/Module/NoteListModule.php
1141
%%WWWDIR%%/app/Module/NotesTabModule.php
1143
%%WWWDIR%%/app/Module/NotesTabModule.php
1142
%%WWWDIR%%/app/Module/OccupationReportModule.php
1144
%%WWWDIR%%/app/Module/OccupationReportModule.php
Lines 1390-1395 Link Here
1390
%%WWWDIR%%/data/index.php
1392
%%WWWDIR%%/data/index.php
1391
%%WWWDIR%%/favicon.ico
1393
%%WWWDIR%%/favicon.ico
1392
%%WWWDIR%%/index.php
1394
%%WWWDIR%%/index.php
1395
%%WWWDIR%%/phpstan-baseline.php-e
1393
%%WWWDIR%%/public/apple-touch-icon.png
1396
%%WWWDIR%%/public/apple-touch-icon.png
1394
%%WWWDIR%%/public/ckeditor-4.15.1-custom/adapters/jquery.js
1397
%%WWWDIR%%/public/ckeditor-4.15.1-custom/adapters/jquery.js
1395
%%WWWDIR%%/public/ckeditor-4.15.1-custom/build-config.js
1398
%%WWWDIR%%/public/ckeditor-4.15.1-custom/build-config.js
Lines 2513-2518 Link Here
2513
%%WWWDIR%%/vendor/bin/carbon
2516
%%WWWDIR%%/vendor/bin/carbon
2514
%%WWWDIR%%/vendor/bin/doctrine-dbal
2517
%%WWWDIR%%/vendor/bin/doctrine-dbal
2515
%%WWWDIR%%/vendor/bin/generate_vcards
2518
%%WWWDIR%%/vendor/bin/generate_vcards
2519
%%WWWDIR%%/vendor/bin/var-dump-server
2516
%%WWWDIR%%/vendor/bin/vobject
2520
%%WWWDIR%%/vendor/bin/vobject
2517
%%WWWDIR%%/vendor/brick/math/composer.json
2521
%%WWWDIR%%/vendor/brick/math/composer.json
2518
%%WWWDIR%%/vendor/brick/math/LICENSE
2522
%%WWWDIR%%/vendor/brick/math/LICENSE
Lines 2766-2771 Link Here
2766
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MariaDBKeywords.php
2770
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MariaDBKeywords.php
2767
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MySQL57Keywords.php
2771
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MySQL57Keywords.php
2768
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MySQL80Keywords.php
2772
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MySQL80Keywords.php
2773
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MySQL84Keywords.php
2769
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MySQLKeywords.php
2774
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/MySQLKeywords.php
2770
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/OracleKeywords.php
2775
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/OracleKeywords.php
2771
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/PostgreSQL100Keywords.php
2776
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/PostgreSQL100Keywords.php
Lines 2775-2780 Link Here
2775
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/SQLiteKeywords.php
2780
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/SQLiteKeywords.php
2776
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/SQLServer2012Keywords.php
2781
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/SQLServer2012Keywords.php
2777
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/SQLServerKeywords.php
2782
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/Keywords/SQLServerKeywords.php
2783
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MariaDb1010Platform.php
2778
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MariaDb1027Platform.php
2784
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MariaDb1027Platform.php
2779
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MariaDb1043Platform.php
2785
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MariaDb1043Platform.php
2780
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MariaDb1052Platform.php
2786
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MariaDb1052Platform.php
Lines 2786-2794 Link Here
2786
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQL/Comparator.php
2792
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQL/Comparator.php
2787
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQL57Platform.php
2793
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQL57Platform.php
2788
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQL80Platform.php
2794
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQL80Platform.php
2795
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQL84Platform.php
2789
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQLPlatform.php
2796
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/MySQLPlatform.php
2790
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/OraclePlatform.php
2797
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/OraclePlatform.php
2791
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/PostgreSQL100Platform.php
2798
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/PostgreSQL100Platform.php
2799
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/PostgreSQL120Platform.php
2792
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/PostgreSQL94Platform.php
2800
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/PostgreSQL94Platform.php
2793
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/PostgreSQLPlatform.php
2801
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/PostgreSQLPlatform.php
2794
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/SQLite/Comparator.php
2802
%%WWWDIR%%/vendor/doctrine/dbal/src/Platforms/SQLite/Comparator.php
Lines 3086-3091 Link Here
3086
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php
3094
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php
3087
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php
3095
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php
3088
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php
3096
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php
3097
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ratio.php
3089
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php
3098
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php
3090
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php
3099
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php
3091
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php
3100
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php
Lines 3205-3210 Link Here
3205
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt
3214
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt
3206
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt
3215
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt
3207
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt
3216
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt
3217
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveBlanks.txt
3208
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt
3218
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt
3209
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt
3219
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt
3210
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt
3220
%%WWWDIR%%/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt
Lines 6889-6894 Link Here
6889
%%WWWDIR%%/vendor/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php
6899
%%WWWDIR%%/vendor/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php
6890
%%WWWDIR%%/vendor/league/mime-type-detection/src/MimeTypeDetector.php
6900
%%WWWDIR%%/vendor/league/mime-type-detection/src/MimeTypeDetector.php
6891
%%WWWDIR%%/vendor/league/mime-type-detection/src/OverridingExtensionToMimeTypeMap.php
6901
%%WWWDIR%%/vendor/league/mime-type-detection/src/OverridingExtensionToMimeTypeMap.php
6902
%%WWWDIR%%/vendor/maximebf/debugbar/composer.json
6903
%%WWWDIR%%/vendor/maximebf/debugbar/LICENSE
6904
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/CacheCacheCollector.php
6905
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/DoctrineCollector.php
6906
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/MonologCollector.php
6907
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/Propel2Collector.php
6908
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/PropelCollector.php
6909
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/SlimCollector.php
6910
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/SwiftMailer/SwiftLogCollector.php
6911
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/SwiftMailer/SwiftMailCollector.php
6912
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/Twig/TimeableTwigExtensionProfiler.php
6913
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/Twig/TraceableTwigEnvironment.php
6914
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/Twig/TraceableTwigTemplate.php
6915
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/Twig/TwigCollector.php
6916
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Bridge/TwigProfileCollector.php
6917
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/AggregatedCollector.php
6918
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/AssetProvider.php
6919
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/ConfigCollector.php
6920
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/DataCollector.php
6921
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/DataCollectorInterface.php
6922
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/ExceptionsCollector.php
6923
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/LocalizationCollector.php
6924
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/MemoryCollector.php
6925
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/MessagesAggregateInterface.php
6926
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/MessagesCollector.php
6927
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/PDO/PDOCollector.php
6928
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/PDO/TraceablePDO.php
6929
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/PDO/TraceablePDOStatement.php
6930
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/PDO/TracedStatement.php
6931
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/PhpInfoCollector.php
6932
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/Renderable.php
6933
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/RequestDataCollector.php
6934
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataCollector/TimeDataCollector.php
6935
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataFormatter/DataFormatter.php
6936
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataFormatter/DataFormatterInterface.php
6937
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataFormatter/DebugBarVarDumper.php
6938
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataFormatter/VarDumper/DebugBarHtmlDumper.php
6939
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DataFormatter/VarDumper/SeekingData.php
6940
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DebugBar.php
6941
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/DebugBarException.php
6942
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/HttpDriverInterface.php
6943
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/JavascriptRenderer.php
6944
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/OpenHandler.php
6945
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/PhpHttpDriver.php
6946
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/RequestIdGenerator.php
6947
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/RequestIdGeneratorInterface.php
6948
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/debugbar.css
6949
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/debugbar.js
6950
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/openhandler.css
6951
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/openhandler.js
6952
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/css/font-awesome.min.css
6953
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/fontawesome-webfont.eot
6954
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/fontawesome-webfont.svg
6955
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/fontawesome-webfont.ttf
6956
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/fontawesome-webfont.woff
6957
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/fontawesome-webfont.woff2
6958
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/font-awesome/fonts/FontAwesome.otf
6959
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/highlightjs/highlight.pack.js
6960
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/highlightjs/styles/github.css
6961
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/jquery/dist/jquery.min.js
6962
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/mails/widget.css
6963
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/mails/widget.js
6964
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/sqlqueries/widget.css
6965
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/sqlqueries/widget.js
6966
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/templates/widget.css
6967
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets/templates/widget.js
6968
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets.css
6969
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Resources/widgets.js
6970
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/StandardDebugBar.php
6971
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/FileStorage.php
6972
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/MemcachedStorage.php
6973
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/pdo_storage_schema.sql
6974
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/PdoStorage.php
6975
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/RedisStorage.php
6976
%%WWWDIR%%/vendor/maximebf/debugbar/src/DebugBar/Storage/StorageInterface.php
6892
%%WWWDIR%%/vendor/middlewares/client-ip/.github/workflows/main.yaml
6977
%%WWWDIR%%/vendor/middlewares/client-ip/.github/workflows/main.yaml
6893
%%WWWDIR%%/vendor/middlewares/client-ip/composer.json
6978
%%WWWDIR%%/vendor/middlewares/client-ip/composer.json
6894
%%WWWDIR%%/vendor/middlewares/client-ip/LICENSE
6979
%%WWWDIR%%/vendor/middlewares/client-ip/LICENSE
Lines 7871-7881 Link Here
7871
%%WWWDIR%%/vendor/nette/utils/src/Utils/Strings.php
7956
%%WWWDIR%%/vendor/nette/utils/src/Utils/Strings.php
7872
%%WWWDIR%%/vendor/nette/utils/src/Utils/Type.php
7957
%%WWWDIR%%/vendor/nette/utils/src/Utils/Type.php
7873
%%WWWDIR%%/vendor/nette/utils/src/Utils/Validators.php
7958
%%WWWDIR%%/vendor/nette/utils/src/Utils/Validators.php
7874
%%WWWDIR%%/vendor/nyholm/psr7/.php-cs-fixer.dist.php
7875
%%WWWDIR%%/vendor/nyholm/psr7/composer.json
7959
%%WWWDIR%%/vendor/nyholm/psr7/composer.json
7876
%%WWWDIR%%/vendor/nyholm/psr7/LICENSE
7960
%%WWWDIR%%/vendor/nyholm/psr7/LICENSE
7877
%%WWWDIR%%/vendor/nyholm/psr7/phpstan-baseline.neon
7878
%%WWWDIR%%/vendor/nyholm/psr7/psalm.baseline.xml
7879
%%WWWDIR%%/vendor/nyholm/psr7/src/Factory/HttplugFactory.php
7961
%%WWWDIR%%/vendor/nyholm/psr7/src/Factory/HttplugFactory.php
7880
%%WWWDIR%%/vendor/nyholm/psr7/src/Factory/Psr17Factory.php
7962
%%WWWDIR%%/vendor/nyholm/psr7/src/Factory/Psr17Factory.php
7881
%%WWWDIR%%/vendor/nyholm/psr7/src/MessageTrait.php
7963
%%WWWDIR%%/vendor/nyholm/psr7/src/MessageTrait.php
Lines 7900-7905 Link Here
7900
%%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/NegativeResultTrait.php
7982
%%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/NegativeResultTrait.php
7901
%%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/Path.php
7983
%%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/Path.php
7902
%%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/Pattern.php
7984
%%WWWDIR%%/vendor/oscarotero/middleland/src/Matchers/Pattern.php
7985
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/.github/workflows/push.yml
7986
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/.scrutinizer.yml
7987
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/.travis.yml
7988
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/appveyor.yml
7989
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/composer.json
7990
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/easy-coding-standard.neon
7991
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/LICENSE
7992
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/Makefile
7993
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/phive.xml
7994
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/phpcs.xml.dist
7995
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/phpmd.xml.dist
7996
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/phpstan.neon
7997
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/psalm.xml
7998
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Element.php
7999
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/File.php
8000
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Fqsen.php
8001
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Location.php
8002
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/Project.php
8003
%%WWWDIR%%/vendor/phpdocumentor/reflection-common/src/ProjectFactory.php
8004
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/.coveralls.yml
8005
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/appveyor.yml
8006
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/composer.json
8007
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/easy-coding-standard.neon
8008
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/LICENSE
8009
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Description.php
8010
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php
8011
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php
8012
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php
8013
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php
8014
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php
8015
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php
8016
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php
8017
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php
8018
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php
8019
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php
8020
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php
8021
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php
8022
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php
8023
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/AlignFormatter.php
8024
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php
8025
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php
8026
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php
8027
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php
8028
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php
8029
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php
8030
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php
8031
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php
8032
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php
8033
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php
8034
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.php
8035
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Url.php
8036
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php
8037
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php
8038
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php
8039
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php
8040
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/TagWithType.php
8041
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php
8042
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php
8043
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php
8044
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php
8045
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlock.php
8046
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlockFactory.php
8047
%%WWWDIR%%/vendor/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php
8048
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/.github/workflows/push.yml
8049
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/appveyor.yml
8050
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/composer-require-config.json
8051
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/composer.json
8052
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/composer.lock
8053
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/LICENSE
8054
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/phive.xml
8055
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/phpcs.xml.dist
8056
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/phpstan.neon
8057
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/psalm.xml
8058
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/FqsenResolver.php
8059
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Type.php
8060
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/TypeResolver.php
8061
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/AbstractList.php
8062
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Array_.php
8063
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Boolean.php
8064
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Callable_.php
8065
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Collection.php
8066
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Compound.php
8067
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Context.php
8068
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/ContextFactory.php
8069
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Float_.php
8070
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Integer.php
8071
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Iterable_.php
8072
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Mixed_.php
8073
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Null_.php
8074
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Nullable.php
8075
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Object_.php
8076
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Parent_.php
8077
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Resource_.php
8078
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Scalar.php
8079
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Self_.php
8080
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Static_.php
8081
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/String_.php
8082
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/This.php
8083
%%WWWDIR%%/vendor/phpdocumentor/type-resolver/src/Types/Void_.php
8084
%%WWWDIR%%/vendor/phpspec/prophecy/composer.json
8085
%%WWWDIR%%/vendor/phpspec/prophecy/LICENSE
8086
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php
8087
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php
8088
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php
8089
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php
8090
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php
8091
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php
8092
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php
8093
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php
8094
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php
8095
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php
8096
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php
8097
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php
8098
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php
8099
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php
8100
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php
8101
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php
8102
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Argument.php
8103
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Call/Call.php
8104
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Call/CallCenter.php
8105
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php
8106
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Comparator/Factory.php
8107
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php
8108
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php
8109
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php
8110
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php
8111
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php
8112
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php
8113
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php
8114
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php
8115
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php
8116
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php
8117
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ThrowablePatch.php
8118
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php
8119
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php
8120
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php
8121
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php
8122
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php
8123
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php
8124
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php
8125
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php
8126
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php
8127
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php
8128
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/TypeHintReference.php
8129
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php
8130
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php
8131
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php
8132
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php
8133
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php
8134
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php
8135
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php
8136
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php
8137
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php
8138
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php
8139
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php
8140
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php
8141
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Exception.php
8142
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php
8143
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php
8144
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php
8145
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php
8146
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php
8147
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php
8148
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php
8149
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php
8150
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php
8151
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php
8152
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php
8153
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php
8154
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php
8155
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php
8156
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php
8157
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php
8158
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php
8159
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php
8160
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php
8161
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php
8162
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php
8163
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php
8164
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php
8165
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php
8166
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php
8167
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php
8168
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php
8169
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php
8170
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php
8171
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php
8172
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Prophet.php
8173
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php
8174
%%WWWDIR%%/vendor/phpspec/prophecy/src/Prophecy/Util/StringUtil.php
8175
%%WWWDIR%%/vendor/phpunit/php-token-stream/.gitattributes
8176
%%WWWDIR%%/vendor/phpunit/php-token-stream/.github/FUNDING.yml
8177
%%WWWDIR%%/vendor/phpunit/php-token-stream/.gitignore
8178
%%WWWDIR%%/vendor/phpunit/php-token-stream/.travis.yml
8179
%%WWWDIR%%/vendor/phpunit/php-token-stream/build.xml
8180
%%WWWDIR%%/vendor/phpunit/php-token-stream/composer.json
8181
%%WWWDIR%%/vendor/phpunit/php-token-stream/LICENSE
8182
%%WWWDIR%%/vendor/phpunit/php-token-stream/phpunit.xml
8183
%%WWWDIR%%/vendor/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php
8184
%%WWWDIR%%/vendor/phpunit/php-token-stream/src/Token/Stream.php
8185
%%WWWDIR%%/vendor/phpunit/php-token-stream/src/Token/Util.php
8186
%%WWWDIR%%/vendor/phpunit/php-token-stream/src/Token.php
8187
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_named_empty.php
8188
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_that_declares_anonymous_class.php
8189
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_that_declares_anonymous_class2.php
8190
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/class_with_multiple_anonymous_classes_and_functions.php
8191
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/classExtendsNamespacedClass.php
8192
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/classInNamespace.php
8193
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/classInScopedNamespace.php
8194
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/classUsesNamespacedFunction.php
8195
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/closure.php
8196
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/issue19.php
8197
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/issue30.php
8198
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingBraces.php
8199
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingNonBraceSyntax.php
8200
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/php-code-coverage-issue-424.php
8201
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/source.php
8202
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/source2.php
8203
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/source3.php
8204
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/source4.php
8205
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/_fixture/source5.php
8206
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/bootstrap.php
8207
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/ClassTest.php
8208
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/ClosureTest.php
8209
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/FunctionTest.php
8210
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/IncludeTest.php
8211
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/InterfaceTest.php
8212
%%WWWDIR%%/vendor/phpunit/php-token-stream/tests/Token/NamespaceTest.php
7903
%%WWWDIR%%/vendor/psr/cache/composer.json
8213
%%WWWDIR%%/vendor/psr/cache/composer.json
7904
%%WWWDIR%%/vendor/psr/cache/LICENSE.txt
8214
%%WWWDIR%%/vendor/psr/cache/LICENSE.txt
7905
%%WWWDIR%%/vendor/psr/cache/src/CacheException.php
8215
%%WWWDIR%%/vendor/psr/cache/src/CacheException.php
Lines 8111-8117 Link Here
8111
%%WWWDIR%%/vendor/ramsey/uuid/src/UuidInterface.php
8421
%%WWWDIR%%/vendor/ramsey/uuid/src/UuidInterface.php
8112
%%WWWDIR%%/vendor/ramsey/uuid/src/Validator/GenericValidator.php
8422
%%WWWDIR%%/vendor/ramsey/uuid/src/Validator/GenericValidator.php
8113
%%WWWDIR%%/vendor/ramsey/uuid/src/Validator/ValidatorInterface.php
8423
%%WWWDIR%%/vendor/ramsey/uuid/src/Validator/ValidatorInterface.php
8114
%%WWWDIR%%/vendor/sabre/uri/.php-cs-fixer.dist.php
8115
%%WWWDIR%%/vendor/sabre/uri/composer.json
8424
%%WWWDIR%%/vendor/sabre/uri/composer.json
8116
%%WWWDIR%%/vendor/sabre/uri/lib/functions.php
8425
%%WWWDIR%%/vendor/sabre/uri/lib/functions.php
8117
%%WWWDIR%%/vendor/sabre/uri/lib/InvalidUriException.php
8426
%%WWWDIR%%/vendor/sabre/uri/lib/InvalidUriException.php
Lines 8214-8221 Link Here
8214
%%WWWDIR%%/vendor/sabre/vobject/LICENSE
8523
%%WWWDIR%%/vendor/sabre/vobject/LICENSE
8215
%%WWWDIR%%/vendor/sabre/vobject/resources/schema/xcal.rng
8524
%%WWWDIR%%/vendor/sabre/vobject/resources/schema/xcal.rng
8216
%%WWWDIR%%/vendor/sabre/vobject/resources/schema/xcard.rng
8525
%%WWWDIR%%/vendor/sabre/vobject/resources/schema/xcard.rng
8217
%%WWWDIR%%/vendor/sabre/xml/.php-cs-fixer.dist.php
8218
%%WWWDIR%%/vendor/sabre/xml/bin/.empty
8219
%%WWWDIR%%/vendor/sabre/xml/composer.json
8526
%%WWWDIR%%/vendor/sabre/xml/composer.json
8220
%%WWWDIR%%/vendor/sabre/xml/lib/ContextStackTrait.php
8527
%%WWWDIR%%/vendor/sabre/xml/lib/ContextStackTrait.php
8221
%%WWWDIR%%/vendor/sabre/xml/lib/Deserializer/functions.php
8528
%%WWWDIR%%/vendor/sabre/xml/lib/Deserializer/functions.php
Lines 8295-8301 Link Here
8295
%%WWWDIR%%/vendor/symfony/cache/Traits/RedisClusterProxy.php
8602
%%WWWDIR%%/vendor/symfony/cache/Traits/RedisClusterProxy.php
8296
%%WWWDIR%%/vendor/symfony/cache/Traits/RedisProxy.php
8603
%%WWWDIR%%/vendor/symfony/cache/Traits/RedisProxy.php
8297
%%WWWDIR%%/vendor/symfony/cache/Traits/RedisTrait.php
8604
%%WWWDIR%%/vendor/symfony/cache/Traits/RedisTrait.php
8298
%%WWWDIR%%/vendor/symfony/cache-contracts/.gitignore
8299
%%WWWDIR%%/vendor/symfony/cache-contracts/CacheInterface.php
8605
%%WWWDIR%%/vendor/symfony/cache-contracts/CacheInterface.php
8300
%%WWWDIR%%/vendor/symfony/cache-contracts/CacheTrait.php
8606
%%WWWDIR%%/vendor/symfony/cache-contracts/CacheTrait.php
8301
%%WWWDIR%%/vendor/symfony/cache-contracts/CallbackInterface.php
8607
%%WWWDIR%%/vendor/symfony/cache-contracts/CallbackInterface.php
Lines 8412-8418 Link Here
8412
%%WWWDIR%%/vendor/symfony/console/Tester/CommandTester.php
8718
%%WWWDIR%%/vendor/symfony/console/Tester/CommandTester.php
8413
%%WWWDIR%%/vendor/symfony/console/Tester/Constraint/CommandIsSuccessful.php
8719
%%WWWDIR%%/vendor/symfony/console/Tester/Constraint/CommandIsSuccessful.php
8414
%%WWWDIR%%/vendor/symfony/console/Tester/TesterTrait.php
8720
%%WWWDIR%%/vendor/symfony/console/Tester/TesterTrait.php
8415
%%WWWDIR%%/vendor/symfony/deprecation-contracts/.gitignore
8416
%%WWWDIR%%/vendor/symfony/deprecation-contracts/composer.json
8721
%%WWWDIR%%/vendor/symfony/deprecation-contracts/composer.json
8417
%%WWWDIR%%/vendor/symfony/deprecation-contracts/function.php
8722
%%WWWDIR%%/vendor/symfony/deprecation-contracts/function.php
8418
%%WWWDIR%%/vendor/symfony/deprecation-contracts/LICENSE
8723
%%WWWDIR%%/vendor/symfony/deprecation-contracts/LICENSE
Lines 8429-8435 Link Here
8429
%%WWWDIR%%/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php
8734
%%WWWDIR%%/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php
8430
%%WWWDIR%%/vendor/symfony/event-dispatcher/LegacyEventDispatcherProxy.php
8735
%%WWWDIR%%/vendor/symfony/event-dispatcher/LegacyEventDispatcherProxy.php
8431
%%WWWDIR%%/vendor/symfony/event-dispatcher/LICENSE
8736
%%WWWDIR%%/vendor/symfony/event-dispatcher/LICENSE
8432
%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/.gitignore
8433
%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/composer.json
8737
%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/composer.json
8434
%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/Event.php
8738
%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/Event.php
8435
%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/EventDispatcherInterface.php
8739
%%WWWDIR%%/vendor/symfony/event-dispatcher-contracts/EventDispatcherInterface.php
Lines 8626-8635 Link Here
8626
%%WWWDIR%%/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
8930
%%WWWDIR%%/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
8627
%%WWWDIR%%/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php
8931
%%WWWDIR%%/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php
8628
%%WWWDIR%%/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php
8932
%%WWWDIR%%/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php
8629
%%WWWDIR%%/vendor/symfony/polyfill-php72/bootstrap.php
8630
%%WWWDIR%%/vendor/symfony/polyfill-php72/composer.json
8631
%%WWWDIR%%/vendor/symfony/polyfill-php72/LICENSE
8632
%%WWWDIR%%/vendor/symfony/polyfill-php72/Php72.php
8633
%%WWWDIR%%/vendor/symfony/polyfill-php73/bootstrap.php
8933
%%WWWDIR%%/vendor/symfony/polyfill-php73/bootstrap.php
8634
%%WWWDIR%%/vendor/symfony/polyfill-php73/composer.json
8934
%%WWWDIR%%/vendor/symfony/polyfill-php73/composer.json
8635
%%WWWDIR%%/vendor/symfony/polyfill-php73/LICENSE
8935
%%WWWDIR%%/vendor/symfony/polyfill-php73/LICENSE
Lines 8651-8657 Link Here
8651
%%WWWDIR%%/vendor/symfony/polyfill-php81/Php81.php
8951
%%WWWDIR%%/vendor/symfony/polyfill-php81/Php81.php
8652
%%WWWDIR%%/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php
8952
%%WWWDIR%%/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php
8653
%%WWWDIR%%/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php
8953
%%WWWDIR%%/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php
8654
%%WWWDIR%%/vendor/symfony/service-contracts/.gitignore
8655
%%WWWDIR%%/vendor/symfony/service-contracts/Attribute/Required.php
8954
%%WWWDIR%%/vendor/symfony/service-contracts/Attribute/Required.php
8656
%%WWWDIR%%/vendor/symfony/service-contracts/Attribute/SubscribedService.php
8955
%%WWWDIR%%/vendor/symfony/service-contracts/Attribute/SubscribedService.php
8657
%%WWWDIR%%/vendor/symfony/service-contracts/composer.json
8956
%%WWWDIR%%/vendor/symfony/service-contracts/composer.json
Lines 8662-8667 Link Here
8662
%%WWWDIR%%/vendor/symfony/service-contracts/ServiceSubscriberInterface.php
8961
%%WWWDIR%%/vendor/symfony/service-contracts/ServiceSubscriberInterface.php
8663
%%WWWDIR%%/vendor/symfony/service-contracts/ServiceSubscriberTrait.php
8962
%%WWWDIR%%/vendor/symfony/service-contracts/ServiceSubscriberTrait.php
8664
%%WWWDIR%%/vendor/symfony/service-contracts/Test/ServiceLocatorTest.php
8963
%%WWWDIR%%/vendor/symfony/service-contracts/Test/ServiceLocatorTest.php
8964
%%WWWDIR%%/vendor/symfony/service-contracts/Test/ServiceLocatorTestCase.php
8665
%%WWWDIR%%/vendor/symfony/string/AbstractString.php
8965
%%WWWDIR%%/vendor/symfony/string/AbstractString.php
8666
%%WWWDIR%%/vendor/symfony/string/AbstractUnicodeString.php
8966
%%WWWDIR%%/vendor/symfony/string/AbstractUnicodeString.php
8667
%%WWWDIR%%/vendor/symfony/string/ByteString.php
8967
%%WWWDIR%%/vendor/symfony/string/ByteString.php
Lines 8776-8782 Link Here
8776
%%WWWDIR%%/vendor/symfony/translation/Util/XliffUtils.php
9076
%%WWWDIR%%/vendor/symfony/translation/Util/XliffUtils.php
8777
%%WWWDIR%%/vendor/symfony/translation/Writer/TranslationWriter.php
9077
%%WWWDIR%%/vendor/symfony/translation/Writer/TranslationWriter.php
8778
%%WWWDIR%%/vendor/symfony/translation/Writer/TranslationWriterInterface.php
9078
%%WWWDIR%%/vendor/symfony/translation/Writer/TranslationWriterInterface.php
8779
%%WWWDIR%%/vendor/symfony/translation-contracts/.gitignore
8780
%%WWWDIR%%/vendor/symfony/translation-contracts/composer.json
9079
%%WWWDIR%%/vendor/symfony/translation-contracts/composer.json
8781
%%WWWDIR%%/vendor/symfony/translation-contracts/LICENSE
9080
%%WWWDIR%%/vendor/symfony/translation-contracts/LICENSE
8782
%%WWWDIR%%/vendor/symfony/translation-contracts/LocaleAwareInterface.php
9081
%%WWWDIR%%/vendor/symfony/translation-contracts/LocaleAwareInterface.php
Lines 8784-8789 Link Here
8784
%%WWWDIR%%/vendor/symfony/translation-contracts/TranslatableInterface.php
9083
%%WWWDIR%%/vendor/symfony/translation-contracts/TranslatableInterface.php
8785
%%WWWDIR%%/vendor/symfony/translation-contracts/TranslatorInterface.php
9084
%%WWWDIR%%/vendor/symfony/translation-contracts/TranslatorInterface.php
8786
%%WWWDIR%%/vendor/symfony/translation-contracts/TranslatorTrait.php
9085
%%WWWDIR%%/vendor/symfony/translation-contracts/TranslatorTrait.php
9086
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/AmqpCaster.php
9087
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ArgsStub.php
9088
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/Caster.php
9089
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ClassStub.php
9090
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ConstStub.php
9091
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/CutArrayStub.php
9092
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/CutStub.php
9093
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DateCaster.php
9094
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DoctrineCaster.php
9095
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DOMCaster.php
9096
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DsCaster.php
9097
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/DsPairStub.php
9098
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/EnumStub.php
9099
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ExceptionCaster.php
9100
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/FrameStub.php
9101
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/GmpCaster.php
9102
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ImagineCaster.php
9103
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ImgStub.php
9104
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/IntlCaster.php
9105
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/LinkStub.php
9106
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/MemcachedCaster.php
9107
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/PdoCaster.php
9108
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/PgSqlCaster.php
9109
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ProxyManagerCaster.php
9110
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/RedisCaster.php
9111
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ReflectionCaster.php
9112
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/ResourceCaster.php
9113
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/SplCaster.php
9114
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/StubCaster.php
9115
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/SymfonyCaster.php
9116
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/TraceStub.php
9117
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/UuidCaster.php
9118
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/XmlReaderCaster.php
9119
%%WWWDIR%%/vendor/symfony/var-dumper/Caster/XmlResourceCaster.php
9120
%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/AbstractCloner.php
9121
%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/ClonerInterface.php
9122
%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/Cursor.php
9123
%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/Data.php
9124
%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/DumperInterface.php
9125
%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/Stub.php
9126
%%WWWDIR%%/vendor/symfony/var-dumper/Cloner/VarCloner.php
9127
%%WWWDIR%%/vendor/symfony/var-dumper/Command/Descriptor/CliDescriptor.php
9128
%%WWWDIR%%/vendor/symfony/var-dumper/Command/Descriptor/DumpDescriptorInterface.php
9129
%%WWWDIR%%/vendor/symfony/var-dumper/Command/Descriptor/HtmlDescriptor.php
9130
%%WWWDIR%%/vendor/symfony/var-dumper/Command/ServerDumpCommand.php
9131
%%WWWDIR%%/vendor/symfony/var-dumper/composer.json
9132
%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/AbstractDumper.php
9133
%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/CliDumper.php
9134
%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/CliContextProvider.php
9135
%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/ContextProviderInterface.php
9136
%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/RequestContextProvider.php
9137
%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextProvider/SourceContextProvider.php
9138
%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ContextualizedDumper.php
9139
%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/DataDumperInterface.php
9140
%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/HtmlDumper.php
9141
%%WWWDIR%%/vendor/symfony/var-dumper/Dumper/ServerDumper.php
9142
%%WWWDIR%%/vendor/symfony/var-dumper/Exception/ThrowingCasterException.php
9143
%%WWWDIR%%/vendor/symfony/var-dumper/LICENSE
9144
%%WWWDIR%%/vendor/symfony/var-dumper/Resources/bin/var-dump-server
9145
%%WWWDIR%%/vendor/symfony/var-dumper/Resources/css/htmlDescriptor.css
9146
%%WWWDIR%%/vendor/symfony/var-dumper/Resources/functions/dump.php
9147
%%WWWDIR%%/vendor/symfony/var-dumper/Resources/js/htmlDescriptor.js
9148
%%WWWDIR%%/vendor/symfony/var-dumper/Server/Connection.php
9149
%%WWWDIR%%/vendor/symfony/var-dumper/Server/DumpServer.php
9150
%%WWWDIR%%/vendor/symfony/var-dumper/Test/VarDumperTestTrait.php
9151
%%WWWDIR%%/vendor/symfony/var-dumper/VarDumper.php
8787
%%WWWDIR%%/vendor/symfony/var-exporter/composer.json
9152
%%WWWDIR%%/vendor/symfony/var-exporter/composer.json
8788
%%WWWDIR%%/vendor/symfony/var-exporter/Exception/ClassNotFoundException.php
9153
%%WWWDIR%%/vendor/symfony/var-exporter/Exception/ClassNotFoundException.php
8789
%%WWWDIR%%/vendor/symfony/var-exporter/Exception/ExceptionInterface.php
9154
%%WWWDIR%%/vendor/symfony/var-exporter/Exception/ExceptionInterface.php
Lines 9370-9375 Link Here
9370
%%WWWDIR%%/vendor/voku/portable-ascii/src/voku/helper/data/x1d6.php
9735
%%WWWDIR%%/vendor/voku/portable-ascii/src/voku/helper/data/x1d6.php
9371
%%WWWDIR%%/vendor/voku/portable-ascii/src/voku/helper/data/x1d7.php
9736
%%WWWDIR%%/vendor/voku/portable-ascii/src/voku/helper/data/x1d7.php
9372
%%WWWDIR%%/vendor/voku/portable-ascii/src/voku/helper/data/x1f1.php
9737
%%WWWDIR%%/vendor/voku/portable-ascii/src/voku/helper/data/x1f1.php
9738
%%WWWDIR%%/vendor/webmozart/assert/.editorconfig
9739
%%WWWDIR%%/vendor/webmozart/assert/composer.json
9740
%%WWWDIR%%/vendor/webmozart/assert/LICENSE
9741
%%WWWDIR%%/vendor/webmozart/assert/psalm.xml
9742
%%WWWDIR%%/vendor/webmozart/assert/src/Assert.php
9743
%%WWWDIR%%/vendor/webmozart/assert/src/Mixin.php
9373
@dir %%WWWDIR%%/modules_v4
9744
@dir %%WWWDIR%%/modules_v4
9374
@dir %%WWWDIR%%/vendor/io-developer/php-whois/.github/ISSUE_TEMPLATE
9745
@dir %%WWWDIR%%/vendor/io-developer/php-whois/.github/ISSUE_TEMPLATE
9375
@dir %%WWWDIR%%/vendor/psr/http-message/docs
9746
@dir %%WWWDIR%%/vendor/psr/http-message/docs

Return to bug 283149