Update to 6.4.152

Sponsored by:	Netzkommune GmbH
This commit is contained in:
Jochen Neumeister 2020-07-02 08:55:01 +00:00
parent 1e4e956308
commit 3e4dfb1f2b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=541024
3 changed files with 320 additions and 351 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= groupoffice
DISTVERSIONPREFIX= com-
DISTVERSION= 6.4.142
DISTVERSION= 6.4.152
CATEGORIES= www
MASTER_SITES= SF/group-office/${DISTVERSION:R}
DISTNAME= ${PORTNAME}-${DISTVERSION}-php-71

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1590171423
SHA256 (groupoffice-6.4.142-php-71.tar.gz) = a572e51b9e6258618a55e85412bdb6475d5cacfa422b55e1c12a2a4e9d6d3f5d
SIZE (groupoffice-6.4.142-php-71.tar.gz) = 47672802
TIMESTAMP = 1593674973
SHA256 (groupoffice-6.4.152-php-71.tar.gz) = 976bd100630d5ffcb6c075c45742ea6a70fa62c5125defc05f487d9a69b83531
SIZE (groupoffice-6.4.152-php-71.tar.gz) = 47530337

View File

@ -2,6 +2,7 @@
%%WWWDIR%%/api/auth.php
%%WWWDIR%%/api/download.php
%%WWWDIR%%/api/jmap.php
%%WWWDIR%%/api/oauth.php
%%WWWDIR%%/api/page.php
%%WWWDIR%%/api/sse.php
%%WWWDIR%%/api/thumb.php
@ -267,6 +268,7 @@
%%WWWDIR%%/go/core/controller/Link.php
%%WWWDIR%%/go/core/controller/Module.php
%%WWWDIR%%/go/core/controller/Notify.php
%%WWWDIR%%/go/core/controller/OauthClient.php
%%WWWDIR%%/go/core/controller/Search.php
%%WWWDIR%%/go/core/controller/Settings.php
%%WWWDIR%%/go/core/controller/SmtpAccount.php
@ -414,6 +416,12 @@
%%WWWDIR%%/go/core/model/Link.php
%%WWWDIR%%/go/core/model/Log.php
%%WWWDIR%%/go/core/model/Module.php
%%WWWDIR%%/go/core/model/OauthAccessToken.php
%%WWWDIR%%/go/core/model/OauthAuthCode.php
%%WWWDIR%%/go/core/model/OauthClient.php
%%WWWDIR%%/go/core/model/OauthRefreshToken.php
%%WWWDIR%%/go/core/model/OauthScope.php
%%WWWDIR%%/go/core/model/OauthUser.php
%%WWWDIR%%/go/core/model/Search.php
%%WWWDIR%%/go/core/model/Settings.php
%%WWWDIR%%/go/core/model/SmtpAccount.php
@ -421,6 +429,12 @@
%%WWWDIR%%/go/core/model/User.php
%%WWWDIR%%/go/core/model/UserGroup.php
%%WWWDIR%%/go/core/model/WorkingWeek.php
%%WWWDIR%%/go/core/oauth/server/repositories/AccessTokenRepository.php
%%WWWDIR%%/go/core/oauth/server/repositories/AuthCodeRepository.php
%%WWWDIR%%/go/core/oauth/server/repositories/ClientRepository.php
%%WWWDIR%%/go/core/oauth/server/repositories/RefreshTokenRepository.php
%%WWWDIR%%/go/core/oauth/server/repositories/ScopeRepository.php
%%WWWDIR%%/go/core/oauth/server/repositories/UserRepository.php
%%WWWDIR%%/go/core/orm/CustomFieldsTrait.php
%%WWWDIR%%/go/core/orm/Entity.php
%%WWWDIR%%/go/core/orm/EntityFilesTrait.php
@ -539,13 +553,22 @@
%%WWWDIR%%/go/core/views/extjs3/filter/Condition.js
%%WWWDIR%%/go/core/views/extjs3/filter/Conditions.js
%%WWWDIR%%/go/core/views/extjs3/filter/FieldSet.js
%%WWWDIR%%/go/core/views/extjs3/filter/FilterAddButton.js
%%WWWDIR%%/go/core/views/extjs3/filter/FilterDialog.js
%%WWWDIR%%/go/core/views/extjs3/filter/FilterGrid.js
%%WWWDIR%%/go/core/views/extjs3/filter/VariableFilterDialog.js
%%WWWDIR%%/go/core/views/extjs3/filter/VariableFilterPanel.js
%%WWWDIR%%/go/core/views/extjs3/filter/types/date.js
%%WWWDIR%%/go/core/views/extjs3/filter/types/number.js
%%WWWDIR%%/go/core/views/extjs3/filter/types/select.js
%%WWWDIR%%/go/core/views/extjs3/filter/types/string.js
%%WWWDIR%%/go/core/views/extjs3/filter/types/subconditions.js
%%WWWDIR%%/go/core/views/extjs3/filter/variabletypes/date.js
%%WWWDIR%%/go/core/views/extjs3/filter/variabletypes/number.js
%%WWWDIR%%/go/core/views/extjs3/filter/variabletypes/select.js
%%WWWDIR%%/go/core/views/extjs3/filter/variabletypes/string.js
%%WWWDIR%%/go/core/views/extjs3/form/AttachmentsField.js
%%WWWDIR%%/go/core/views/extjs3/form/BatchEditDialog.js
%%WWWDIR%%/go/core/views/extjs3/form/CheckboxGroup.js
%%WWWDIR%%/go/core/views/extjs3/form/Chips.js
%%WWWDIR%%/go/core/views/extjs3/form/ComboBox.js
@ -614,6 +637,9 @@
%%WWWDIR%%/go/core/views/extjs3/modules/ModulePanel.js
%%WWWDIR%%/go/core/views/extjs3/modules/PermissionsWindow.js
%%WWWDIR%%/go/core/views/extjs3/modules/SystemSettingsModuleGrid.js
%%WWWDIR%%/go/core/views/extjs3/oauth/ClientDialog.js
%%WWWDIR%%/go/core/views/extjs3/oauth/ClientGrid.js
%%WWWDIR%%/go/core/views/extjs3/oauth/SystemSettingsPanel.js
%%WWWDIR%%/go/core/views/extjs3/panels/ScrollLoader.js
%%WWWDIR%%/go/core/views/extjs3/permissions/SharePanel.js
%%WWWDIR%%/go/core/views/extjs3/permissions/ShareWindow.js
@ -731,6 +757,7 @@
%%WWWDIR%%/go/modules/business/wopi/views/extjs3/themes/default/resources/office-online.png
%%WWWDIR%%/go/modules/business/wopi/views/extjs3/themes/default/resources/wopicollabora16x16.png
%%WWWDIR%%/go/modules/business/wopi/views/extjs3/themes/default/resources/www.collaboraoffice.com.ico
%%WWWDIR%%/go/modules/business/wopi/views/extjs3/themes/default/resources/x-office-document.svg
%%WWWDIR%%/go/modules/business/wopi/views/extjs3/themes/default/style.css
%%WWWDIR%%/go/modules/business/wopi/wopi.php
%%WWWDIR%%/go/modules/community/addressbook/Module.php
@ -1802,32 +1829,6 @@
%%WWWDIR%%/modules/carddav/CarddavModule.php
%%WWWDIR%%/modules/carddav/addressbook.php
%%WWWDIR%%/modules/carddav/install/updates.inc.php
%%WWWDIR%%/modules/chat/ChatModule.php
%%WWWDIR%%/modules/chat/controller/PrebindController.php
%%WWWDIR%%/modules/chat/language/de.php
%%WWWDIR%%/modules/chat/language/en.php
%%WWWDIR%%/modules/chat/language/es.php
%%WWWDIR%%/modules/chat/language/fr.php
%%WWWDIR%%/modules/chat/scripts.inc.php
%%WWWDIR%%/modules/chat/views/Extjs3/start.php
%%WWWDIR%%/modules/chat/views/Extjs3/themes/Default/style.css
%%WWWDIR%%/modules/chat/views/Extjs3/themes/Group-Office/style.css
%%WWWDIR%%/modules/chat/xmpp-prebind-php/.gitignore
%%WWWDIR%%/modules/chat/xmpp-prebind-php/LICENSE
%%WWWDIR%%/modules/chat/xmpp-prebind-php/README.md
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/Auth/SASL.php
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/Auth/SASL/Anonymous.php
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/Auth/SASL/Common.php
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/Auth/SASL/CramMD5.php
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/Auth/SASL/DigestMD5.php
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/Auth/SASL/Exception.php
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/Auth/SASL/External.php
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/Auth/SASL/Login.php
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/Auth/SASL/Plain.php
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/FirePHP/FirePHP.class.php
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/FirePHP/LICENSE
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/FirePHP/fb.php
%%WWWDIR%%/modules/chat/xmpp-prebind-php/lib/XmppPrebind.php
%%WWWDIR%%/modules/comments/CommentsModule.php
%%WWWDIR%%/modules/comments/install/updates.php
%%WWWDIR%%/modules/comments/language/cs.php
@ -2123,326 +2124,6 @@
%%WWWDIR%%/modules/email/views/Extjs3/LabelDialog.js
%%WWWDIR%%/modules/email/views/Extjs3/TemplateGridPanel.js
%%WWWDIR%%/modules/email/views/Extjs3/TemplateSelectionDialog.js
%%WWWDIR%%/modules/exactonline/ExactonlineModule.php
%%WWWDIR%%/modules/exactonline/README.TXT
%%WWWDIR%%/modules/exactonline/Utils.php
%%WWWDIR%%/modules/exactonline/composer.json
%%WWWDIR%%/modules/exactonline/composer.lock
%%WWWDIR%%/modules/exactonline/controller/ExactExportController.php
%%WWWDIR%%/modules/exactonline/controller/ExactOauthController.php
%%WWWDIR%%/modules/exactonline/controller/InvoiceController.php
%%WWWDIR%%/modules/exactonline/controller/ManualController.php
%%WWWDIR%%/modules/exactonline/controller/OauthController.php
%%WWWDIR%%/modules/exactonline/cron/AttachManuallyAddedInvoicenumbers.php
%%WWWDIR%%/modules/exactonline/cron/SyncExactAccount.php
%%WWWDIR%%/modules/exactonline/cron/UpdateGOIncome.php
%%WWWDIR%%/modules/exactonline/cron/test.php
%%WWWDIR%%/modules/exactonline/extension/ExactLocalStorage.php
%%WWWDIR%%/modules/exactonline/install/install.sql
%%WWWDIR%%/modules/exactonline/install/updates.inc.php
%%WWWDIR%%/modules/exactonline/language/cs.php
%%WWWDIR%%/modules/exactonline/language/de.php
%%WWWDIR%%/modules/exactonline/language/en.php
%%WWWDIR%%/modules/exactonline/language/es.php
%%WWWDIR%%/modules/exactonline/language/fr.php
%%WWWDIR%%/modules/exactonline/language/hr.php
%%WWWDIR%%/modules/exactonline/language/hu.php
%%WWWDIR%%/modules/exactonline/language/id.php
%%WWWDIR%%/modules/exactonline/language/it.php
%%WWWDIR%%/modules/exactonline/language/nl.php
%%WWWDIR%%/modules/exactonline/language/pl.php
%%WWWDIR%%/modules/exactonline/language/pt_br.php
%%WWWDIR%%/modules/exactonline/model/AddressbookAddressbookExtension.php
%%WWWDIR%%/modules/exactonline/model/AddressbookCompanyExtension.php
%%WWWDIR%%/modules/exactonline/model/AddressbookContactExtension.php
%%WWWDIR%%/modules/exactonline/model/ExactAPiConnection.php
%%WWWDIR%%/modules/exactonline/model/Project2IncomeExtension.php
%%WWWDIR%%/modules/exactonline/model/ProjectTemplateExtension.php
%%WWWDIR%%/modules/exactonline/model/Settings.php
%%WWWDIR%%/modules/exactonline/report/InvoicePdf.php
%%WWWDIR%%/modules/exactonline/scripts.txt
%%WWWDIR%%/modules/exactonline/vendor/autoload.php
%%WWWDIR%%/modules/exactonline/vendor/composer/ClassLoader.php
%%WWWDIR%%/modules/exactonline/vendor/composer/LICENSE
%%WWWDIR%%/modules/exactonline/vendor/composer/autoload_classmap.php
%%WWWDIR%%/modules/exactonline/vendor/composer/autoload_files.php
%%WWWDIR%%/modules/exactonline/vendor/composer/autoload_namespaces.php
%%WWWDIR%%/modules/exactonline/vendor/composer/autoload_psr4.php
%%WWWDIR%%/modules/exactonline/vendor/composer/autoload_real.php
%%WWWDIR%%/modules/exactonline/vendor/composer/autoload_static.php
%%WWWDIR%%/modules/exactonline/vendor/composer/installed.json
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/.php_cs
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/CHANGELOG.md
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/Dockerfile
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/LICENSE
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/README.md
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/UPGRADING.md
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/composer.json
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/phpstan.neon.dist
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Client.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/ClientInterface.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Exception/ClientException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Exception/SeekException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Exception/TransferException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/HandlerStack.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/MessageFormatter.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Middleware.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/Pool.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/RequestOptions.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/TransferStats.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/UriTemplate.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/functions.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/guzzle/src/functions_include.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/CHANGELOG.md
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/LICENSE
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/Makefile
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/README.md
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/composer.json
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/AggregateException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/CancellationException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/Coroutine.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/EachPromise.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/FulfilledPromise.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/Promise.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/PromiseInterface.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/PromisorInterface.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/RejectedPromise.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/RejectionException.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/TaskQueue.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/TaskQueueInterface.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/functions.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/promises/src/functions_include.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/CHANGELOG.md
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/LICENSE
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/README.md
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/composer.json
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/AppendStream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/BufferStream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/CachingStream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/DroppingStream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/FnStream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/InflateStream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/LazyOpenStream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/LimitStream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/MessageTrait.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/MultipartStream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/NoSeekStream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/PumpStream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/Request.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/Response.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/Rfc7230.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/ServerRequest.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/Stream.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/StreamWrapper.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/UploadedFile.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/Uri.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/UriNormalizer.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/UriResolver.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/functions.php
%%WWWDIR%%/modules/exactonline/vendor/guzzlehttp/psr7/src/functions_include.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/.gitignore
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/.styleci.yml
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/.travis.yml
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/CHANGELOG.md
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/LICENSE
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/README.md
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/composer.json
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/example/example.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/example/storage.json
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/phpunit.xml.dist
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/AbsenceRegistration.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/AbsenceRegistrationTransaction.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Account.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/AccountClassification.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/AccountInvolvedAccount.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/AccountItem.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ActiveEmployment.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Address.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ApiException.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Bank.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/BankAccount.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/BankEntry.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/BankEntryLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/BillOfMaterialMaterial.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/BillOfMaterialMaterials.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/BillOfMaterialVersion.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/BillOfMaterialVersions.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Budget.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/BulkSalesOrder.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/BulkTransactionLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/CashEntry.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/CashEntryLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Connection.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Contact.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/CostTransaction.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Costcenter.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Costunit.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Department.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/DirectDebitMandate.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Division.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/DivisionClass.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/DivisionClassName.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/DivisionClassValue.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Document.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/DocumentAttachment.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/DocumentCategory.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/DocumentType.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Employee.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Employment.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/EmploymentContract.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ExchangeRate.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/GLAccount.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/GLTransactionType.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/GeneralJournalEntry.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/GeneralJournalEntryLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/GoodsDelivery.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/GoodsDeliveryLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/GoodsReceipt.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/GoodsReceiptLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/InvoiceSalesOrder.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/InvoiceSalesOrders.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/InvoiceTerm.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Item.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ItemExtraField.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ItemGroup.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ItemWarehouse.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ItemWarehousePlanningDetails.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ItemWarehouseStorageLocation.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/JobGroup.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/JobTitle.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Journal.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Layout.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/LeaveBuildUpRegistration.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/LeaveRegistration.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/MailMessage.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/MailMessageAttachment.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Me.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Model.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Operation.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/OperationResource.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Opportunity.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/OutstandingInvoicesOverview.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/PayablesList.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/PaymentCondition.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Persistance/Downloadable.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Persistance/Storable.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/PrintedSalesInvoice.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/PrintedSalesOrder.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ProductionArea.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ProfitLossOverview.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Project.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ProjectHourBudget.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ProjectPlanning.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ProjectPlanningRecurring.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ProjectRestrictionEmployee.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ProjectRestrictionItem.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ProjectRestrictionRebilling.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ProjectWBSByProject.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/PurchaseEntry.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/PurchaseEntryLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/PurchaseInvoice.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/PurchaseInvoiceLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/PurchaseOrder.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/PurchaseOrderLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Query/Findable.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Query/Resultset.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Quotation.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/QuotationLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Receivable.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ReceivableList.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/RecentCost.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/RecentHour.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ReportingBalance.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/RevenueList.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SalesEntry.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SalesEntryLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SalesInvoice.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SalesInvoiceLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SalesItemPrice.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SalesOrder.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SalesOrderID.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SalesOrderLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SalesShippingMethods.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Schedule.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ShippingMethod.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ShopOrder.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ShopOrderMaterialPlan.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/ShopOrderRoutingStepPlan.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/StockBatchNumber.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/StockCount.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/StockCountLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/StockPosition.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/StockSerialNumber.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/StorageLocation.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Subscription.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SubscriptionLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SubscriptionLines.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SubscriptionType.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SubscriptionTypes.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Subscriptions.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SupplierItem.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/SystemDivision.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/TimeCorrection.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/TimeTransaction.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/TimedTimeTransaction.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Transaction.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/TransactionLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Transactions.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Units.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/User.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/VatCode.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Warehouse.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/WarehouseTransfer.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/WarehouseTransferLine.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Webhook/Authenticatable.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/WebhookSubscription.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/src/Picqer/Financials/Exact/Workcenter.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/tests/EntityTest.php
%%WWWDIR%%/modules/exactonline/vendor/picqer/exact-php-client/userscript.js
%%WWWDIR%%/modules/exactonline/vendor/psr/http-message/CHANGELOG.md
%%WWWDIR%%/modules/exactonline/vendor/psr/http-message/LICENSE
%%WWWDIR%%/modules/exactonline/vendor/psr/http-message/README.md
%%WWWDIR%%/modules/exactonline/vendor/psr/http-message/composer.json
%%WWWDIR%%/modules/exactonline/vendor/psr/http-message/src/MessageInterface.php
%%WWWDIR%%/modules/exactonline/vendor/psr/http-message/src/RequestInterface.php
%%WWWDIR%%/modules/exactonline/vendor/psr/http-message/src/ResponseInterface.php
%%WWWDIR%%/modules/exactonline/vendor/psr/http-message/src/ServerRequestInterface.php
%%WWWDIR%%/modules/exactonline/vendor/psr/http-message/src/StreamInterface.php
%%WWWDIR%%/modules/exactonline/vendor/psr/http-message/src/UploadedFileInterface.php
%%WWWDIR%%/modules/exactonline/vendor/psr/http-message/src/UriInterface.php
%%WWWDIR%%/modules/exactonline/vendor/ralouphie/getallheaders/LICENSE
%%WWWDIR%%/modules/exactonline/vendor/ralouphie/getallheaders/README.md
%%WWWDIR%%/modules/exactonline/vendor/ralouphie/getallheaders/composer.json
%%WWWDIR%%/modules/exactonline/vendor/ralouphie/getallheaders/src/getallheaders.php
%%WWWDIR%%/modules/exactonline/views/Extjs3/AddressBookOverrides.js
%%WWWDIR%%/modules/exactonline/views/Extjs3/PluginBilling.js
%%WWWDIR%%/modules/exactonline/views/Extjs3/PluginProjects2.js
%%WWWDIR%%/modules/exactonline/views/Extjs3/Projects2Overrides.js
%%WWWDIR%%/modules/exactonline/views/Extjs3/SettingsPanel.js
%%WWWDIR%%/modules/favorites/FavoritesModule.php
%%WWWDIR%%/modules/favorites/controller/CalendarFavoritesController.php
%%WWWDIR%%/modules/favorites/controller/FavoritesController.php
@ -4466,6 +4147,99 @@
%%WWWDIR%%/vendor/egulias/email-validator/phpunit.xml.dist
%%WWWDIR%%/vendor/egulias/email-validator/psalm.baseline.xml
%%WWWDIR%%/vendor/egulias/email-validator/psalm.xml
%%WWWDIR%%/vendor/guzzlehttp/guzzle/.php_cs
%%WWWDIR%%/vendor/guzzlehttp/guzzle/CHANGELOG.md
%%WWWDIR%%/vendor/guzzlehttp/guzzle/Dockerfile
%%WWWDIR%%/vendor/guzzlehttp/guzzle/LICENSE
%%WWWDIR%%/vendor/guzzlehttp/guzzle/README.md
%%WWWDIR%%/vendor/guzzlehttp/guzzle/UPGRADING.md
%%WWWDIR%%/vendor/guzzlehttp/guzzle/composer.json
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Client.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/ClientInterface.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Exception/ClientException.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Exception/SeekException.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Exception/TransferException.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/HandlerStack.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/MessageFormatter.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Middleware.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Pool.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/RequestOptions.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/TransferStats.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/UriTemplate.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/Utils.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/functions.php
%%WWWDIR%%/vendor/guzzlehttp/guzzle/src/functions_include.php
%%WWWDIR%%/vendor/guzzlehttp/promises/CHANGELOG.md
%%WWWDIR%%/vendor/guzzlehttp/promises/LICENSE
%%WWWDIR%%/vendor/guzzlehttp/promises/Makefile
%%WWWDIR%%/vendor/guzzlehttp/promises/README.md
%%WWWDIR%%/vendor/guzzlehttp/promises/composer.json
%%WWWDIR%%/vendor/guzzlehttp/promises/src/AggregateException.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/CancellationException.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/Coroutine.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/EachPromise.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/FulfilledPromise.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/Promise.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/PromiseInterface.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/PromisorInterface.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/RejectedPromise.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/RejectionException.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/TaskQueue.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/TaskQueueInterface.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/functions.php
%%WWWDIR%%/vendor/guzzlehttp/promises/src/functions_include.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/CHANGELOG.md
%%WWWDIR%%/vendor/guzzlehttp/psr7/LICENSE
%%WWWDIR%%/vendor/guzzlehttp/psr7/README.md
%%WWWDIR%%/vendor/guzzlehttp/psr7/composer.json
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/AppendStream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/BufferStream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/CachingStream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/DroppingStream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/FnStream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/InflateStream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/LazyOpenStream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/LimitStream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/MessageTrait.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/MultipartStream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/NoSeekStream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/PumpStream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/Request.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/Response.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/Rfc7230.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/ServerRequest.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/Stream.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/StreamWrapper.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/UploadedFile.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/Uri.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/UriNormalizer.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/UriResolver.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/functions.php
%%WWWDIR%%/vendor/guzzlehttp/psr7/src/functions_include.php
%%WWWDIR%%/vendor/html2text/html2text/.gitignore
%%WWWDIR%%/vendor/html2text/html2text/.travis.yml
%%WWWDIR%%/vendor/html2text/html2text/README.md
@ -4476,17 +4250,175 @@
%%WWWDIR%%/vendor/html2text/html2text/test/BlockquoteTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/ConstructorTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/DefinitionListTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/HeaderTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/DelTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/HtmlCharsTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/ImageTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/InsTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/LinkTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/ListTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/PreTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/PrintTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/SearchReplaceTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/SpanTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/StrToUpperTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/TableTest.php
%%WWWDIR%%/vendor/html2text/html2text/test/bootstrap.php
%%WWWDIR%%/vendor/lcobucci/jwt/.gitignore
%%WWWDIR%%/vendor/lcobucci/jwt/.scrutinizer.yml
%%WWWDIR%%/vendor/lcobucci/jwt/.travis.yml
%%WWWDIR%%/vendor/lcobucci/jwt/LICENSE
%%WWWDIR%%/vendor/lcobucci/jwt/README.md
%%WWWDIR%%/vendor/lcobucci/jwt/composer.json
%%WWWDIR%%/vendor/lcobucci/jwt/phpunit.xml.dist
%%WWWDIR%%/vendor/lcobucci/jwt/src/Builder.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Claim.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Claim/Basic.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Claim/EqualsTo.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Claim/Factory.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Claim/GreaterOrEqualsTo.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Claim/LesserOrEqualsTo.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Claim/Validatable.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Parser.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Parsing/Decoder.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Parsing/Encoder.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signature.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/BaseSigner.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa/MultibyteStringConverter.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa/Sha256.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa/Sha384.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa/Sha512.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Ecdsa/SignatureConverter.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Hmac.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Hmac/Sha256.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Hmac/Sha384.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Hmac/Sha512.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Key.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Keychain.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/OpenSSL.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Rsa.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Rsa/Sha256.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Rsa/Sha384.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Signer/Rsa/Sha512.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/Token.php
%%WWWDIR%%/vendor/lcobucci/jwt/src/ValidationData.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/EcdsaTokenTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/HmacTokenTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/Keys.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/RFC6978VectorTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/RsaTokenTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/UnsignedTokenTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/ecdsa/private.key
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/ecdsa/private2.key
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/ecdsa/public1.key
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/ecdsa/public2.key
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/ecdsa/public3.key
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/rsa/encrypted-private.key
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/rsa/encrypted-public.key
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/rsa/private.key
%%WWWDIR%%/vendor/lcobucci/jwt/test/functional/rsa/public.key
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/BuilderTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Claim/BasicTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Claim/EqualsToTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Claim/FactoryTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Claim/GreaterOrEqualsToTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Claim/LesserOrEqualsToTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/ParserTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Parsing/DecoderTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Parsing/EncoderTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/SignatureTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/BaseSignerTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/Ecdsa/MultibyteStringConverterTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/Ecdsa/Sha256Test.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/Ecdsa/Sha384Test.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/Ecdsa/Sha512Test.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/EcdsaTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/Hmac/Sha256Test.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/Hmac/Sha384Test.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/Hmac/Sha512Test.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/HmacTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/KeyTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/KeychainTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/Rsa/Sha256Test.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/Rsa/Sha384Test.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/Rsa/Sha512Test.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/Signer/RsaTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/TokenTest.php
%%WWWDIR%%/vendor/lcobucci/jwt/test/unit/ValidationDataTest.php
%%WWWDIR%%/vendor/league/event/LICENSE
%%WWWDIR%%/vendor/league/event/composer.json
%%WWWDIR%%/vendor/league/event/src/AbstractEvent.php
%%WWWDIR%%/vendor/league/event/src/AbstractListener.php
%%WWWDIR%%/vendor/league/event/src/BufferedEmitter.php
%%WWWDIR%%/vendor/league/event/src/CallbackListener.php
%%WWWDIR%%/vendor/league/event/src/Emitter.php
%%WWWDIR%%/vendor/league/event/src/EmitterAwareInterface.php
%%WWWDIR%%/vendor/league/event/src/EmitterAwareTrait.php
%%WWWDIR%%/vendor/league/event/src/EmitterInterface.php
%%WWWDIR%%/vendor/league/event/src/EmitterTrait.php
%%WWWDIR%%/vendor/league/event/src/Event.php
%%WWWDIR%%/vendor/league/event/src/EventInterface.php
%%WWWDIR%%/vendor/league/event/src/Generator.php
%%WWWDIR%%/vendor/league/event/src/GeneratorInterface.php
%%WWWDIR%%/vendor/league/event/src/GeneratorTrait.php
%%WWWDIR%%/vendor/league/event/src/ListenerAcceptor.php
%%WWWDIR%%/vendor/league/event/src/ListenerAcceptorInterface.php
%%WWWDIR%%/vendor/league/event/src/ListenerInterface.php
%%WWWDIR%%/vendor/league/event/src/ListenerProviderInterface.php
%%WWWDIR%%/vendor/league/event/src/OneTimeListener.php
%%WWWDIR%%/vendor/league/oauth2-server/.github/FUNDING.yml
%%WWWDIR%%/vendor/league/oauth2-server/CODE_OF_CONDUCT.md
%%WWWDIR%%/vendor/league/oauth2-server/LICENSE
%%WWWDIR%%/vendor/league/oauth2-server/composer.json
%%WWWDIR%%/vendor/league/oauth2-server/src/AuthorizationServer.php
%%WWWDIR%%/vendor/league/oauth2-server/src/AuthorizationValidators/AuthorizationValidatorInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/AuthorizationValidators/BearerTokenValidator.php
%%WWWDIR%%/vendor/league/oauth2-server/src/CodeChallengeVerifiers/CodeChallengeVerifierInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/CodeChallengeVerifiers/PlainVerifier.php
%%WWWDIR%%/vendor/league/oauth2-server/src/CodeChallengeVerifiers/S256Verifier.php
%%WWWDIR%%/vendor/league/oauth2-server/src/CryptKey.php
%%WWWDIR%%/vendor/league/oauth2-server/src/CryptTrait.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/AccessTokenEntityInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/AuthCodeEntityInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/ClientEntityInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/RefreshTokenEntityInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/ScopeEntityInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/TokenInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/AccessTokenTrait.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/AuthCodeTrait.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/ClientTrait.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/EntityTrait.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/RefreshTokenTrait.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/ScopeTrait.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/Traits/TokenEntityTrait.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Entities/UserEntityInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Exception/OAuthServerException.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Exception/UniqueTokenIdentifierConstraintViolationException.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/AbstractAuthorizeGrant.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/AbstractGrant.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/AuthCodeGrant.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/ClientCredentialsGrant.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/GrantTypeInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/ImplicitGrant.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/PasswordGrant.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Grant/RefreshTokenGrant.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Middleware/AuthorizationServerMiddleware.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Middleware/ResourceServerMiddleware.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/AccessTokenRepositoryInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/AuthCodeRepositoryInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/ClientRepositoryInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/RefreshTokenRepositoryInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/RepositoryInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/ScopeRepositoryInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/Repositories/UserRepositoryInterface.php
%%WWWDIR%%/vendor/league/oauth2-server/src/RequestEvent.php
%%WWWDIR%%/vendor/league/oauth2-server/src/RequestTypes/AuthorizationRequest.php
%%WWWDIR%%/vendor/league/oauth2-server/src/ResourceServer.php
%%WWWDIR%%/vendor/league/oauth2-server/src/ResponseTypes/AbstractResponseType.php
%%WWWDIR%%/vendor/league/oauth2-server/src/ResponseTypes/BearerTokenResponse.php
%%WWWDIR%%/vendor/league/oauth2-server/src/ResponseTypes/RedirectResponse.php
%%WWWDIR%%/vendor/league/oauth2-server/src/ResponseTypes/ResponseTypeInterface.php
%%WWWDIR%%/vendor/matthiasmullie/minify/CONTRIBUTING.md
%%WWWDIR%%/vendor/matthiasmullie/minify/Dockerfile
%%WWWDIR%%/vendor/matthiasmullie/minify/LICENSE
@ -5303,6 +5235,17 @@
%%WWWDIR%%/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/Identity.php
%%WWWDIR%%/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php
%%WWWDIR%%/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf
%%WWWDIR%%/vendor/psr/http-message/CHANGELOG.md
%%WWWDIR%%/vendor/psr/http-message/LICENSE
%%WWWDIR%%/vendor/psr/http-message/README.md
%%WWWDIR%%/vendor/psr/http-message/composer.json
%%WWWDIR%%/vendor/psr/http-message/src/MessageInterface.php
%%WWWDIR%%/vendor/psr/http-message/src/RequestInterface.php
%%WWWDIR%%/vendor/psr/http-message/src/ResponseInterface.php
%%WWWDIR%%/vendor/psr/http-message/src/ServerRequestInterface.php
%%WWWDIR%%/vendor/psr/http-message/src/StreamInterface.php
%%WWWDIR%%/vendor/psr/http-message/src/UploadedFileInterface.php
%%WWWDIR%%/vendor/psr/http-message/src/UriInterface.php
%%WWWDIR%%/vendor/psr/log/LICENSE
%%WWWDIR%%/vendor/psr/log/Psr/Log/AbstractLogger.php
%%WWWDIR%%/vendor/psr/log/Psr/Log/InvalidArgumentException.php
@ -5317,6 +5260,10 @@
%%WWWDIR%%/vendor/psr/log/Psr/Log/Test/TestLogger.php
%%WWWDIR%%/vendor/psr/log/README.md
%%WWWDIR%%/vendor/psr/log/composer.json
%%WWWDIR%%/vendor/ralouphie/getallheaders/LICENSE
%%WWWDIR%%/vendor/ralouphie/getallheaders/README.md
%%WWWDIR%%/vendor/ralouphie/getallheaders/composer.json
%%WWWDIR%%/vendor/ralouphie/getallheaders/src/getallheaders.php
%%WWWDIR%%/vendor/sabre/dav/.gitignore
%%WWWDIR%%/vendor/sabre/dav/.travis.yml
%%WWWDIR%%/vendor/sabre/dav/CHANGELOG.md
@ -6227,6 +6174,26 @@
%%WWWDIR%%/vendor/setasign/fpdi/src/Tfpdf/FpdfTpl.php
%%WWWDIR%%/vendor/setasign/fpdi/src/Tfpdf/Fpdi.php
%%WWWDIR%%/vendor/setasign/fpdi/src/autoload.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/LICENSE
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/composer.json
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/examples/README.md
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/examples/composer.json
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/examples/public/auth_code.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/examples/public/client_credentials.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/examples/public/implicit.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/examples/public/password.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/examples/src/Entities/UserEntity.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/examples/src/Repositories/IdentityRepository.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/examples/src/Repositories/ScopeRepository.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/src/ClaimExtractor.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/src/Entities/ClaimSetEntity.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/src/Entities/ClaimSetEntityInterface.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/src/Entities/ClaimSetInterface.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/src/Entities/ScopeInterface.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/src/Exception/InvalidArgumentException.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/src/IdTokenResponse.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/src/Repositories/ClaimSetRepositoryInterface.php
%%WWWDIR%%/vendor/steverhoades/oauth2-openid-connect-server/src/Repositories/IdentityProviderInterface.php
%%WWWDIR%%/vendor/swiftmailer/swiftmailer/.gitattributes
%%WWWDIR%%/vendor/swiftmailer/swiftmailer/.github/ISSUE_TEMPLATE.md
%%WWWDIR%%/vendor/swiftmailer/swiftmailer/.github/PULL_REQUEST_TEMPLATE.md
@ -7534,6 +7501,8 @@
%%WWWDIR%%/views/Extjs3/themes/Paper/img/logo-white.svg
%%WWWDIR%%/views/Extjs3/themes/Paper/img/notify/email.png
%%WWWDIR%%/views/Extjs3/themes/Paper/img/notify/reminder.png
%%WWWDIR%%/views/Extjs3/themes/Paper/pageFooter.php
%%WWWDIR%%/views/Extjs3/themes/Paper/pageHeader.php
%%WWWDIR%%/views/Extjs3/themes/Paper/sounds/desktop-login.mp3
%%WWWDIR%%/views/Extjs3/themes/Paper/sounds/desktop-login.ogg
%%WWWDIR%%/views/Extjs3/themes/Paper/sounds/desktop-logout.mp3