From 4447c9e0fb0915146b4798918c499234bb065c76 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Wed, 27 Apr 2022 17:48:20 +0200 Subject: Migrate PEAR Horde packages to Bytestream packages Signed-off-by: Christoph Wurst --- .github/ISSUE_TEMPLATE/bug_report_form.yml | 1 - .github/workflows/appstore-build-publish.yml | 1 - .github/workflows/lint.yml | 2 - .github/workflows/package.yml | 1 - .github/workflows/static-analysis.yml | 1 - .github/workflows/test.yml | 2 - README.md | 2 +- composer.json | 35 +- composer.lock | 1694 ++++++++++++++++---------- vendor-bin/cs-fixer/composer.lock | 104 +- vendor-bin/mozart/composer.lock | 51 +- vendor-bin/phpunit/composer.lock | 172 ++- 12 files changed, 1359 insertions(+), 707 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report_form.yml b/.github/ISSUE_TEMPLATE/bug_report_form.yml index 9de7b51fc..22489a666 100644 --- a/.github/ISSUE_TEMPLATE/bug_report_form.yml +++ b/.github/ISSUE_TEMPLATE/bug_report_form.yml @@ -56,7 +56,6 @@ body: Select PHP engine version serving Nextcloud Server. _Describe in the "Additional info" section if you chose "Other"._ options: - - "PHP 7.3" - "PHP 7.4" - "PHP 8.0" - "PHP 8.1" diff --git a/.github/workflows/appstore-build-publish.yml b/.github/workflows/appstore-build-publish.yml index 0509d8178..ed1b81bb7 100644 --- a/.github/workflows/appstore-build-publish.yml +++ b/.github/workflows/appstore-build-publish.yml @@ -64,7 +64,6 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ env.PHP_VERSION }} - tools: composer:v1 coverage: none - name: Check composer.json diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b35e1a422..91c309969 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -28,7 +28,6 @@ jobs: uses: shivammathur/setup-php@master with: php-version: ${{ matrix.php-versions }} - tools: composer:v1 coverage: none - name: Lint run: composer run lint @@ -43,7 +42,6 @@ jobs: uses: shivammathur/setup-php@master with: php-version: 7.4 - tools: composer:v1 coverage: none - name: Install dependencies run: composer i diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 63cd42a06..e3ff20ef9 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -24,7 +24,6 @@ jobs: uses: shivammathur/setup-php@master with: php-version: 7.4 - tools: composer:v1 extensions: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip coverage: none - name: Install Krankerl diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 4ee74ff1d..7bb1b2747 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -21,7 +21,6 @@ jobs: uses: shivammathur/setup-php@master with: php-version: 7.4 - tools: composer:v1 coverage: none - name: Install dependencies run: composer i diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 83b9b474e..6fa67c94b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,6 @@ jobs: uses: shivammathur/setup-php@master with: php-version: ${{ matrix.php-versions }} - tools: composer:v1 extensions: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip,gmp coverage: xdebug - name: Checkout Nextcloud @@ -112,7 +111,6 @@ jobs: uses: shivammathur/setup-php@master with: php-version: ${{ matrix.php-versions }} - tools: composer:v1 extensions: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip,gmp coverage: xdebug - name: Checkout Nextcloud diff --git a/README.md b/README.md index 77eea602d..1ae920cc1 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ For new contributors, please check out [ContributingToNextcloudIntroductoryWorks ## Development setup Just clone this repo into your apps directory ([Nextcloud server](https://github.com/nextcloud/server#running-master-checkouts) installation needed). Additionally, [npm](https://www.npmjs.com/) to fetch [Node.js](https://nodejs.org/en/download/package-manager/) is needed for installing JavaScript dependencies -and [Composer](https://getcomposer.org/download/): "version 1" is needed for dependency management in PHP. +and [composer](https://getcomposer.org/download/) is needed for dependency management in PHP. Once npm and Node.js are installed, PHP and JavaScript dependencies can be installed by running: ```bash diff --git a/composer.json b/composer.json index 434ed3fde..673406446 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,5 @@ { "repositories": [ - { - "type": "pear", - "url": "https://pear.horde.org" - }, { "type": "vcs", "url": "https://github.com/kwi-dk/UrlLinker", @@ -14,12 +10,25 @@ "platform": { "php": "7.4" }, - "sort-packages": true + "sort-packages": true, + "allow-plugins": { + "bamarni/composer-bin-plugin": true + } }, "require": { "php": ">=7.4", "arthurhoaro/favicon": "^1.2", "bamarni/composer-bin-plugin": "^1.4", + "bytestream/horde-exception": "^2.1", + "bytestream/horde-imap-client": "^2.31", + "bytestream/horde-mail": "^2.7", + "bytestream/horde-mime": "^2.12", + "bytestream/horde-stream": "^1.7", + "bytestream/horde-stringprep": "^1.1", + "bytestream/horde-support": "^2.3", + "bytestream/horde-text-filter": "^2.4", + "bytestream/horde-text-flowed": "^2.1", + "bytestream/horde-util": "^2.6", "cerdic/css-tidy": "v2.0.1", "christophwurst/kitinerary": "^0.2", "christophwurst/kitinerary-bin": "^0.2", @@ -27,20 +36,8 @@ "christophwurst/kitinerary-sys": "^0.1.0", "ezyang/htmlpurifier": "4.14.0", "gravatarphp/gravatar": "^2.0", - "pear-pear.horde.org/horde_date": "^2.4.1@stable", - "pear-pear.horde.org/horde_exception": "^2.0.8@stable", - "pear-pear.horde.org/horde_imap_client": "^2.29.16@stable", - "pear-pear.horde.org/horde_mail": "^2.6.4@stable", - "pear-pear.horde.org/horde_managesieve": "^1.0", - "pear-pear.horde.org/horde_mime": "^2.11.0@stable", - "pear-pear.horde.org/horde_nls": "^2.2.1@stable", - "pear-pear.horde.org/horde_smtp": "^1.9.5@stable", - "pear-pear.horde.org/horde_stream": "^1.6.3@stable", - "pear-pear.horde.org/horde_stringprep": "^1.0", - "pear-pear.horde.org/horde_support": "^2.2.0@stable", - "pear-pear.horde.org/horde_text_filter": "^2.3.5@stable", - "pear-pear.horde.org/horde_text_flowed": "^2.0.3@stable", - "pear-pear.horde.org/horde_util": "^2.5.8@stable", + "nextcloud/horde-managesieve": "^1.0", + "nextcloud/horde-smtp": "^1.0", "psr/log": "^1", "rubix/ml": "0.4.2", "sabberworm/php-css-parser": "^8.3", diff --git a/composer.lock b/composer.lock index 6c525e9be..e37528b9d 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "41432ccd7466f7721858e4e01bc4c288", + "content-hash": "b1c307444d66ee5ad260eb0d712b61dc", "packages": [ { "name": "amphp/amp", @@ -562,1089 +562,1461 @@ "time": "2022-02-22T21:01:25+00:00" }, { - "name": "cerdic/css-tidy", - "version": "v2.0.1", + "name": "bytestream/horde-crypt-blowfish", + "version": "v1.2.0", "source": { "type": "git", - "url": "https://github.com/Cerdic/CSSTidy.git", - "reference": "9efced88f9fc31ecbd52c798b6c01283966c0e48" + "url": "https://github.com/bytestream/Crypt_Blowfish.git", + "reference": "944872aa670719f2e1476264c160960fd2f224c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Cerdic/CSSTidy/zipball/9efced88f9fc31ecbd52c798b6c01283966c0e48", - "reference": "9efced88f9fc31ecbd52c798b6c01283966c0e48", + "url": "https://api.github.com/repos/bytestream/Crypt_Blowfish/zipball/944872aa670719f2e1476264c160960fd2f224c1", + "reference": "944872aa670719f2e1476264c160960fd2f224c1", "shasum": "" }, "require": { - "php": "^7.1 || ^8" + "bytestream/horde-exception": "^2", + "bytestream/horde-support": "^2", + "php": "^7.4 || ^8.0" }, "require-dev": { - "pear/text_diff": "^1.2", - "simpletest/simpletest": "dev-master" + "phpunit/phpunit": "^9.5" }, - "bin": [ - "bin/pcsstidy" - ], "type": "library", "autoload": { - "classmap": [ - "class.csstidy_optimise.php", - "class.csstidy_print.php", - "class.csstidy.php" - ] + "psr-0": { + "Horde_Crypt_Blowfish": "lib/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "LGPL-2.1" ], "authors": [ { - "name": "Cédric MORIN", - "email": "changeme@mailinator.com" + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" } ], - "description": "CSSTidy is a CSS minifier", - "time": "2022-02-21T15:33:09+00:00" + "description": "Horde Blowfish encryption library", + "homepage": "https://www.horde.org/libraries/Horde_Crypt_Blowfish", + "support": { + "source": "https://github.com/bytestream/Crypt_Blowfish/tree/v1.2.0" + }, + "time": "2021-12-21T13:33:22+00:00" }, { - "name": "christophwurst/kitinerary", - "version": "0.2.1", + "name": "bytestream/horde-exception", + "version": "v2.1.0", "source": { "type": "git", - "url": "https://github.com/ChristophWurst/kitinerary.git", - "reference": "d2adb02b6d46b36571dc3c5127a8360ba2d5b418" + "url": "https://github.com/bytestream/Exception.git", + "reference": "c8c243d08556e7df5b37867eab1e478d76effa3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ChristophWurst/kitinerary/zipball/d2adb02b6d46b36571dc3c5127a8360ba2d5b418", - "reference": "d2adb02b6d46b36571dc3c5127a8360ba2d5b418", + "url": "https://api.github.com/repos/bytestream/Exception/zipball/c8c243d08556e7df5b37867eab1e478d76effa3e", + "reference": "c8c243d08556e7df5b37867eab1e478d76effa3e", "shasum": "" }, "require": { - "ext-json": "*" + "bytestream/horde-translation": "^2.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "pear/pear-core-minimal": "^1.10", + "phpunit/phpunit": "^9.5" }, "type": "library", "autoload": { - "psr-4": { - "ChristophWurst\\KItinerary\\": "/src" + "psr-0": { + "Horde_Exception": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "AGPL-3.0-or-later" + "LGPL-2.1" ], "authors": [ { - "name": "Christoph Wurst", - "email": "christoph@winzerhof-wurst.at" + "name": "Chuck Hagenbuch", + "email": "chuck@horde.org", + "role": "lead" + }, + { + "name": "Jan Schneider", + "email": "jan@horde.org", + "role": "lead" + }, + { + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "developer" } ], - "description": "KItinerary adapter", - "time": "2020-01-13T21:39:22+00:00" + "description": "Horde exception handler library", + "homepage": "https://www.horde.org/libraries/Horde_Exception", + "support": { + "source": "https://github.com/bytestream/Exception/tree/v2.1.0" + }, + "time": "2021-12-21T12:20:11+00:00" }, { - "name": "christophwurst/kitinerary-bin", - "version": "0.2.3", + "name": "bytestream/horde-idna", + "version": "v1.2.0", "source": { "type": "git", - "url": "https://github.com/ChristophWurst/kitinerary-bin.git", - "reference": "eaafa040b404651cb4ab75a2d7a53c71b55d2395" + "url": "https://github.com/bytestream/Idna.git", + "reference": "2493578c390afa8f3a4623855646102b2cfd0488" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ChristophWurst/kitinerary-bin/zipball/eaafa040b404651cb4ab75a2d7a53c71b55d2395", - "reference": "eaafa040b404651cb4ab75a2d7a53c71b55d2395", + "url": "https://api.github.com/repos/bytestream/Idna/zipball/2493578c390afa8f3a4623855646102b2cfd0488", + "reference": "2493578c390afa8f3a4623855646102b2cfd0488", "shasum": "" }, "require": { - "christophwurst/kitinerary": "^0.2.1", - "ext-json": "*", - "php": "^7.1", - "psr/log": "^1.1" + "bytestream/horde-exception": "^2", + "bytestream/horde-util": "^2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "suggest": { + "ext-intl": "*" }, "type": "library", "autoload": { - "psr-4": { - "ChristophWurst\\KItinerary\\Bin\\": "/src" + "psr-0": { + "Horde_Idna": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "BSD-2-Clause" ], "authors": [ { - "name": "Christoph Wurst", - "email": "christoph@winzerhof-wurst.at" + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" } ], - "description": "KItinerary binary executable", - "time": "2020-01-13T21:43:49+00:00" + "description": "Horde IDNA normalization library", + "homepage": "https://www.horde.org", + "support": { + "source": "https://github.com/bytestream/Idna/tree/v1.2.0" + }, + "time": "2021-12-21T12:51:22+00:00" }, { - "name": "christophwurst/kitinerary-flatpak", - "version": "0.2.2", + "name": "bytestream/horde-imap-client", + "version": "v2.31.1", "source": { "type": "git", - "url": "https://github.com/ChristophWurst/kitinerary-flatpak.git", - "reference": "2f0254f31a6b3d88f7a8ac5de25c580820401d37" + "url": "https://github.com/bytestream/Imap_Client.git", + "reference": "75f941c5bc2195b21e56593e382caf45d21c107e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ChristophWurst/kitinerary-flatpak/zipball/2f0254f31a6b3d88f7a8ac5de25c580820401d37", - "reference": "2f0254f31a6b3d88f7a8ac5de25c580820401d37", + "url": "https://api.github.com/repos/bytestream/Imap_Client/zipball/75f941c5bc2195b21e56593e382caf45d21c107e", + "reference": "75f941c5bc2195b21e56593e382caf45d21c107e", "shasum": "" }, "require": { - "christophwurst/kitinerary": "^0.2", - "ext-json": "*" + "bytestream/horde-exception": "^2", + "bytestream/horde-mail": "^2", + "bytestream/horde-mime": "^2.5.2", + "bytestream/horde-secret": "^2", + "bytestream/horde-socket-client": "^2", + "bytestream/horde-stream": "^1.4", + "bytestream/horde-stream-filter": "^2", + "bytestream/horde-translation": "^2.2", + "bytestream/horde-util": "^2", + "ext-hash": "*", + "ext-json": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "bytestream/horde-crypt-blowfish": "^1.2", + "bytestream/horde-stringprep": "^1.1", + "phpunit/phpunit": "^9.5" }, "type": "library", "autoload": { - "psr-4": { - "ChristophWurst\\KItinerary\\Flatpak\\": "/src" + "psr-0": { + "Horde_Imap_Client": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "AGPL-3.0-or-later" + "LGPL-2.1" ], "authors": [ { - "name": "Christoph Wurst", - "email": "christoph@winzerhof-wurst.at" + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" } ], - "description": "KItinerary Flatpak binding", - "time": "2020-01-13T21:42:51+00:00" + "description": "Horde IMAP client library", + "homepage": "https://www.horde.org/libraries/Horde_Imap_Client", + "support": { + "source": "https://github.com/bytestream/Imap_Client/tree/v2.31.1" + }, + "time": "2022-05-11T12:14:59+00:00" }, { - "name": "christophwurst/kitinerary-sys", - "version": "v0.1.0", + "name": "bytestream/horde-listheaders", + "version": "v1.3.0", "source": { "type": "git", - "url": "https://github.com/ChristophWurst/kitinerary-sys.git", - "reference": "db1c61703e94746b95543f14c5a09067faba6f92" + "url": "https://github.com/bytestream/ListHeaders.git", + "reference": "2a0193be55ad69c210b6a8849b9df05cd4e3c202" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ChristophWurst/kitinerary-sys/zipball/db1c61703e94746b95543f14c5a09067faba6f92", - "reference": "db1c61703e94746b95543f14c5a09067faba6f92", + "url": "https://api.github.com/repos/bytestream/ListHeaders/zipball/2a0193be55ad69c210b6a8849b9df05cd4e3c202", + "reference": "2a0193be55ad69c210b6a8849b9df05cd4e3c202", "shasum": "" }, "require": { - "christophwurst/kitinerary": "^0.2.1", - "ext-json": "*", - "php": "^7.1", - "psr/log": "^1.1" + "bytestream/horde-mail": "^2.7", + "bytestream/horde-translation": "^2.2", + "bytestream/horde-util": "^2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, "autoload": { - "psr-4": { - "ChristophWurst\\KItinerary\\Sys\\": "/src" + "psr-0": { + "Horde_ListHeaders": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1" ], "authors": [ { - "name": "Christoph Wurst", - "email": "christoph@winzerhof-wurst.at" + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" } ], - "description": "KItinerary binding for the system package", - "time": "2020-05-15T14:29:54+00:00" + "description": "Horde list headers parsing library", + "homepage": "https://www.horde.org/libraries/Horde_ListHeaders", + "support": { + "source": "https://github.com/bytestream/ListHeaders/tree/v1.3.0" + }, + "time": "2021-12-21T16:38:31+00:00" }, { - "name": "ezyang/htmlpurifier", - "version": "v4.14.0", + "name": "bytestream/horde-mail", + "version": "v2.7.0", "source": { "type": "git", - "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75" + "url": "https://github.com/bytestream/Mail.git", + "reference": "09c03310b063e2d9f03c863e365256a2fc459354" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75", - "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75", + "url": "https://api.github.com/repos/bytestream/Mail/zipball/09c03310b063e2d9f03c863e365256a2fc459354", + "reference": "09c03310b063e2d9f03c863e365256a2fc459354", "shasum": "" }, "require": { - "php": ">=5.2" + "bytestream/horde-exception": "^2", + "bytestream/horde-idna": "^1", + "bytestream/horde-mime": "^2.12", + "bytestream/horde-stream-filter": "^2", + "bytestream/horde-translation": "^2.2", + "bytestream/horde-util": "^2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, "autoload": { - "files": [ - "library/HTMLPurifier.composer.php" - ], "psr-0": { - "HTMLPurifier": "library/" - }, - "exclude-from-classmap": [ - "/library/HTMLPurifier/Language/" - ] + "Horde_Mail": "lib/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "BSD-2-Clause" ], "authors": [ { - "name": "Edward Z. Yang", - "email": "admin@htmlpurifier.org", - "homepage": "http://ezyang.com" + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" } ], - "description": "Standards compliant HTML filter written in PHP", - "homepage": "http://htmlpurifier.org/", - "keywords": [ - "html" - ], - "time": "2021-12-25T01:21:49+00:00" + "description": "Horde mail library", + "homepage": "https://www.horde.org/libraries/Horde_Mail", + "support": { + "source": "https://github.com/bytestream/Mail/tree/v2.7.0" + }, + "time": "2021-12-21T16:41:50+00:00" }, { - "name": "gravatarphp/gravatar", - "version": "v2.0.0", + "name": "bytestream/horde-mime", + "version": "v2.12.0", "source": { "type": "git", - "url": "https://github.com/gravatarphp/gravatar.git", - "reference": "54a5d48b4564ec9f1db8a498ad23d500ab83c063" + "url": "https://github.com/bytestream/Mime.git", + "reference": "aacbc91068c4333e6138e8ed67c62cbdb5cf08da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/gravatarphp/gravatar/zipball/54a5d48b4564ec9f1db8a498ad23d500ab83c063", - "reference": "54a5d48b4564ec9f1db8a498ad23d500ab83c063", + "url": "https://api.github.com/repos/bytestream/Mime/zipball/aacbc91068c4333e6138e8ed67c62cbdb5cf08da", + "reference": "aacbc91068c4333e6138e8ed67c62cbdb5cf08da", "shasum": "" }, "require": { - "php": "^7.1" + "bytestream/horde-exception": "^2", + "bytestream/horde-listheaders": "^1.3", + "bytestream/horde-mail": "^2.7", + "bytestream/horde-stream": "^1.3", + "bytestream/horde-stream-filter": "^2", + "bytestream/horde-support": "^2.1", + "bytestream/horde-text-flowed": "^2", + "bytestream/horde-translation": "^2.2", + "bytestream/horde-util": "^2", + "php": "^7.4 || ^8.0" }, "require-dev": { - "phpspec/phpspec": "^5.1" + "bytestream/horde-text-filter": "^2.4", + "phpunit/phpunit": "^9.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "2.x-dev" } }, "autoload": { - "psr-4": { - "Gravatar\\": "src/" + "psr-0": { + "Horde_Mime": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "LGPL-2.1" ], "authors": [ { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com" + "name": "Chuck Hagenbuch", + "email": "chuck@horde.org", + "role": "lead" + }, + { + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" } ], - "description": "Gravatar URL builder which is most commonly called as a Gravatar library", - "homepage": "http://gravatarphp.com", - "keywords": [ - "avatar", - "gravatar", - "image", - "profile" - ], - "time": "2019-01-08T21:43:01+00:00" + "description": "MIME library", + "homepage": "https://www.horde.org/libraries/Horde_Mime", + "support": { + "source": "https://github.com/bytestream/Mime/tree/v2.12.0" + }, + "time": "2021-12-21T16:42:19+00:00" }, { - "name": "league/flysystem", - "version": "2.0.8", + "name": "bytestream/horde-secret", + "version": "v2.1.0", "source": { "type": "git", - "url": "https://github.com/thephpleague/flysystem.git", - "reference": "82ad1e9a11745dba58775de2e8f47600b0a3331d" + "url": "https://github.com/bytestream/Secret.git", + "reference": "75d1575820d4422ad8c485fd3606652948d9f2b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/82ad1e9a11745dba58775de2e8f47600b0a3331d", - "reference": "82ad1e9a11745dba58775de2e8f47600b0a3331d", + "url": "https://api.github.com/repos/bytestream/Secret/zipball/75d1575820d4422ad8c485fd3606652948d9f2b6", + "reference": "75d1575820d4422ad8c485fd3606652948d9f2b6", "shasum": "" }, "require": { - "ext-json": "*", - "league/mime-type-detection": "^1.0.0", - "php": "^7.2 || ^8.0" - }, - "conflict": { - "guzzlehttp/ringphp": "<1.1.1" + "bytestream/horde-crypt-blowfish": "^1", + "bytestream/horde-exception": "^2", + "bytestream/horde-support": "^2", + "ext-hash": "*", + "php": "^7.4 || ^8.0" }, "require-dev": { - "async-aws/s3": "^1.5", - "async-aws/simple-s3": "^1.0", - "aws/aws-sdk-php": "^3.132.4", - "composer/semver": "^3.0", - "ext-fileinfo": "*", - "friendsofphp/php-cs-fixer": "^2.16", - "google/cloud-storage": "^1.23", - "phpseclib/phpseclib": "^2.0", - "phpstan/phpstan": "^0.12.26", - "phpunit/phpunit": "^8.5 || ^9.4" + "phpunit/phpunit": "^9.5" }, "type": "library", "autoload": { - "psr-4": { - "League\\Flysystem\\": "src" + "psr-0": { + "Horde_Secret": "lib/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "LGPL-2.1" ], "authors": [ { - "name": "Frank de Jonge", - "email": "info@frankdejonge.nl" - } - ], - "description": "File storage abstraction for PHP", - "keywords": [ - "WebDAV", - "aws", - "cloud", - "file", - "files", - "filesystem", - "filesystems", - "ftp", - "s3", - "sftp", - "storage" - ], - "funding": [ - { - "url": "https://offset.earth/frankdejonge", - "type": "custom" - }, - { - "url": "https://github.com/frankdejonge", - "type": "github" + "name": "Chuck Hagenbuch", + "email": "chuck@horde.org", + "role": "lead" }, { - "url": "https://tidelift.com/funding/github/packagist/league/flysystem", - "type": "tidelift" + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" } ], - "time": "2021-05-15T19:53:59+00:00" + "description": "Horde secret key encryption library", + "homepage": "https://www.horde.org/libraries/Horde_Secret", + "support": { + "source": "https://github.com/bytestream/Secret/tree/v2.1.0" + }, + "time": "2021-12-21T13:40:05+00:00" }, { - "name": "league/mime-type-detection", - "version": "1.11.0", + "name": "bytestream/horde-socket-client", + "version": "v2.2.1", "source": { "type": "git", - "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" + "url": "https://github.com/bytestream/Socket_Client.git", + "reference": "7687d26b43c65bbabdd9b6452770aaddea82946d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", - "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", + "url": "https://api.github.com/repos/bytestream/Socket_Client/zipball/7687d26b43c65bbabdd9b6452770aaddea82946d", + "reference": "7687d26b43c65bbabdd9b6452770aaddea82946d", "shasum": "" }, "require": { - "ext-fileinfo": "*", - "php": "^7.2 || ^8.0" + "bytestream/horde-exception": "^2", + "php": "^7.4 || ^8.0" }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^3.2", - "phpstan/phpstan": "^0.12.68", - "phpunit/phpunit": "^8.5.8 || ^9.3" + "suggest": { + "ext-openssl": "*" }, "type": "library", "autoload": { "psr-4": { - "League\\MimeTypeDetection\\": "src" + "Horde\\Socket\\": "lib/Horde/Socket" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "LGPL-2.1" ], "authors": [ { - "name": "Frank de Jonge", - "email": "info@frankdejonge.nl" - } - ], - "description": "Mime-type detection for Flysystem", - "funding": [ - { - "url": "https://github.com/frankdejonge", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/league/flysystem", - "type": "tidelift" + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" } ], - "time": "2022-04-17T13:12:02+00:00" + "description": "Horde network socket client library", + "homepage": "https://www.horde.org", + "support": { + "source": "https://github.com/bytestream/Socket_Client/tree/v2.2.1" + }, + "time": "2021-12-21T19:22:30+00:00" }, { - "name": "pear-pear.horde.org/Horde_Crypt_Blowfish", - "version": "1.1.3", + "name": "bytestream/horde-stream", + "version": "v1.7.0", + "source": { + "type": "git", + "url": "https://github.com/bytestream/Stream.git", + "reference": "f4fd1eed7d953771292d8f565c7f13ca4984c284" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Crypt_Blowfish-1.1.3.tgz" + "type": "zip", + "url": "https://api.github.com/repos/bytestream/Stream/zipball/f4fd1eed7d953771292d8f565c7f13ca4984c284", + "reference": "f4fd1eed7d953771292d8f565c7f13ca4984c284", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "pear-pear.horde.org/horde_support": "<3.0.0.0", - "php": "<8.0.0.0" + "bytestream/horde-exception": "^2", + "php": "^7.4 || ^8.0" }, - "replace": { - "pear-horde/horde_crypt_blowfish": "== 1.1.3.0" + "require-dev": { + "bytestream/horde-stream-wrapper": "^2.2", + "phpunit/phpunit": "^9.5" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-0": { + "Horde_Stream": "lib/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-2.1" ], - "description": "A library that provides blowfish encryption/decryption for PHP string data." + "authors": [ + { + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" + } + ], + "description": "Horde PHP streams library", + "homepage": "https://www.horde.org/libraries/Horde_Stream", + "support": { + "source": "https://github.com/bytestream/Stream/tree/v1.7.0" + }, + "time": "2021-12-21T12:45:59+00:00" }, { - "name": "pear-pear.horde.org/Horde_Date", - "version": "2.4.1", + "name": "bytestream/horde-stream-filter", + "version": "v2.1.0", + "source": { + "type": "git", + "url": "https://github.com/bytestream/Stream_Filter.git", + "reference": "8a3561cd40a6896318c8ab8e1cb7b145ef07cc0d" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Date-2.4.1.tgz" + "type": "zip", + "url": "https://api.github.com/repos/bytestream/Stream_Filter/zipball/8a3561cd40a6896318c8ab8e1cb7b145ef07cc0d", + "reference": "8a3561cd40a6896318c8ab8e1cb7b145ef07cc0d", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "pear-pear.horde.org/horde_nls": "<3.0.0.0", - "pear-pear.horde.org/horde_translation": "<3.0.0.0", - "php": "<8.0.0.0" + "php": "^7.4 || ^8.0" }, - "replace": { - "pear-horde/horde_date": "== 2.4.1.0" + "require-dev": { + "phpunit/phpunit": "^9.5" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-0": { + "Horde_Stream_Filter": "lib/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-2.1" ], - "description": "Package for creating and manipulating dates." + "authors": [ + { + "name": "Chuck Hagenbuch", + "email": "chuck@horde.org", + "role": "lead" + }, + { + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" + } + ], + "description": "Horde PHP stream filters library", + "homepage": "https://www.horde.org/libraries/Horde_Stream_Filter", + "support": { + "source": "https://github.com/bytestream/Stream_Filter/tree/v2.1.0" + }, + "time": "2021-12-20T22:48:47+00:00" }, { - "name": "pear-pear.horde.org/Horde_Exception", - "version": "2.0.8", + "name": "bytestream/horde-stream-wrapper", + "version": "v2.2.0", + "source": { + "type": "git", + "url": "https://github.com/bytestream/Stream_Wrapper.git", + "reference": "d9b8637203a3f7cdddf6a46691021a93604aae10" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Exception-2.0.8.tgz" + "type": "zip", + "url": "https://api.github.com/repos/bytestream/Stream_Wrapper/zipball/d9b8637203a3f7cdddf6a46691021a93604aae10", + "reference": "d9b8637203a3f7cdddf6a46691021a93604aae10", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_translation": "<3.0.0.0", - "php": "<8.0.0.0" + "php": "^7.4 || ^8.0" }, - "replace": { - "pear-horde/horde_exception": "== 2.0.8.0" + "require-dev": { + "phpunit/phpunit": "^9.5" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-0": { + "Horde_Stream_Wrapper": "lib/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1" + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Chuck Hagenbuch", + "email": "chuck@horde.org", + "role": "lead" + }, + { + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" + } ], - "description": "This class provides the default exception handlers for the Horde Application Framework." + "description": "Horde PHP stream wrappers library", + "homepage": "https://www.horde.org/libraries/Horde_Stream_Wrapper", + "support": { + "source": "https://github.com/bytestream/Stream_Wrapper/tree/v2.2.0" + }, + "time": "2021-12-20T23:00:18+00:00" }, { - "name": "pear-pear.horde.org/Horde_Idna", - "version": "1.1.2", + "name": "bytestream/horde-stringprep", + "version": "v1.1.0", + "source": { + "type": "git", + "url": "https://github.com/bytestream/Stringprep.git", + "reference": "9450141cdc3b853c719274a0baee03e33a2d0ce1" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Idna-1.1.2.tgz" + "type": "zip", + "url": "https://api.github.com/repos/bytestream/Stringprep/zipball/9450141cdc3b853c719274a0baee03e33a2d0ce1", + "reference": "9450141cdc3b853c719274a0baee03e33a2d0ce1", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "pear-pear.horde.org/horde_util": "<3.0.0.0", - "php": "<8.0.0.0" - }, - "replace": { - "pear-horde/horde_idna": "== 1.1.2.0" + "ext-iconv": "*", + "ext-intl": "*", + "php": "^7.4 || ^8.0" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-0": { + "Horde_Stringprep": "lib/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-2-Clause" + "LGPL-3.0" + ], + "authors": [ + { + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" + } ], - "description": "A library that wraps various backends providing IDNA (Internationalized Domain Names in Applications) support." + "description": "Horde internationalized strings preparation library", + "homepage": "https://www.horde.org", + "support": { + "source": "https://github.com/bytestream/Stringprep/tree/v1.1.0" + }, + "time": "2021-12-21T18:19:43+00:00" }, { - "name": "pear-pear.horde.org/Horde_Imap_Client", - "version": "2.30.4", + "name": "bytestream/horde-support", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/bytestream/Support.git", + "reference": "90bedc0298a40b308d98b23e0b17e59eb4e1cdde" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Imap_Client-2.30.4.tgz" + "type": "zip", + "url": "https://api.github.com/repos/bytestream/Support/zipball/90bedc0298a40b308d98b23e0b17e59eb4e1cdde", + "reference": "90bedc0298a40b308d98b23e0b17e59eb4e1cdde", + "shasum": "" }, "require": { - "ext-hash": "*", - "ext-json": "*", - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "pear-pear.horde.org/horde_mail": "<3.0.0.0", - "pear-pear.horde.org/horde_mime": "<3.0.0.0", - "pear-pear.horde.org/horde_secret": "<3.0.0.0", - "pear-pear.horde.org/horde_socket_client": "<3.0.0.0", - "pear-pear.horde.org/horde_stream": "<2.0.0.0", - "pear-pear.horde.org/horde_stream_filter": "<3.0.0.0", - "pear-pear.horde.org/horde_translation": "<3.0.0.0", - "pear-pear.horde.org/horde_util": "<3.0.0.0", - "php": "<8.0.0.0" - }, - "replace": { - "pear-horde/horde_imap_client": "== 2.30.4.0" - }, - "type": "pear-library", + "bytestream/horde-exception": "^2", + "bytestream/horde-stream-wrapper": "^2", + "bytestream/horde-util": "^2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-0": { + "Horde_Support": "lib/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1" + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Chuck Hagenbuch", + "email": "chuck@horde.org", + "role": "lead" + }, + { + "name": "Jan Schneider", + "email": "jan@horde.org", + "role": "lead" + }, + { + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "developer" + } ], - "description": "A library to access IMAP4rev1 (RFC 3501) mail servers. Also supports connections to POP3 (STD 53/RFC 1939)." + "description": "Horde Supporting library", + "homepage": "https://www.horde.org/libraries/Horde_Support", + "support": { + "source": "https://github.com/bytestream/Support/tree/v2.3.0" + }, + "time": "2021-12-21T13:26:56+00:00" }, { - "name": "pear-pear.horde.org/Horde_ListHeaders", - "version": "1.2.5", + "name": "bytestream/horde-text-filter", + "version": "v2.4.0", + "source": { + "type": "git", + "url": "https://github.com/bytestream/Text_Filter.git", + "reference": "ffd15ef856a0f31c5d49c8f8f4d5bcb820571121" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_ListHeaders-1.2.5.tgz" + "type": "zip", + "url": "https://api.github.com/repos/bytestream/Text_Filter/zipball/ffd15ef856a0f31c5d49c8f8f4d5bcb820571121", + "reference": "ffd15ef856a0f31c5d49c8f8f4d5bcb820571121", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_mail": "<3.0.0.0", - "pear-pear.horde.org/horde_translation": "<3.0.0.0", - "pear-pear.horde.org/horde_util": "<3.0.0.0", - "php": "<8.0.0.0" + "bytestream/horde-exception": "^2", + "bytestream/horde-idna": "^1", + "bytestream/horde-secret": "^2", + "bytestream/horde-util": "^2", + "php": "^7.4 || ^8.0" }, - "replace": { - "pear-horde/horde_listheaders": "== 1.2.5.0" + "require-dev": { + "bytestream/horde-text-flowed": "^2.1", + "phpunit/phpunit": "^9.5" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-0": { + "Horde_Text_Filter": "lib/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-2.1" ], - "description": "The Horde_ListHeaders library parses Mailing List Headers as defined in RFC 2369 & RFC 2919." - }, - { - "name": "pear-pear.horde.org/Horde_Mail", - "version": "2.6.5", - "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Mail-2.6.5.tgz" - }, - "require": { - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "pear-pear.horde.org/horde_idna": "<2.0.0.0", - "pear-pear.horde.org/horde_mime": "<3.0.0.0", - "pear-pear.horde.org/horde_stream_filter": "<3.0.0.0", - "pear-pear.horde.org/horde_translation": "<3.0.0.0", - "pear-pear.horde.org/horde_util": "<3.0.0.0", - "php": "<8.0.0.0" - }, - "replace": { - "pear-horde/horde_mail": "== 2.6.5.0" - }, - "type": "pear-library", - "autoload": { - "classmap": [ - "" - ] - }, - "include-path": [ - "/" - ], - "license": [ - "BSD-2-Clause" + "authors": [ + { + "name": "Jan Schneider", + "email": "jan@horde.org", + "role": "lead" + }, + { + "name": "Chuck Hagenbuch", + "email": "chuck@horde.org", + "role": "lead" + }, + { + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "developer" + } ], - "description": "Provides interfaces for sending e-mail messages and parsing e-mail addresses." + "description": "Horde text filtering and conversion library", + "homepage": "https://www.horde.org/libraries/Horde_Text_Filter", + "support": { + "source": "https://github.com/bytestream/Text_Filter/tree/v2.4.0" + }, + "time": "2021-12-21T16:08:23+00:00" }, { - "name": "pear-pear.horde.org/Horde_ManageSieve", - "version": "1.0.3", + "name": "bytestream/horde-text-flowed", + "version": "v2.1.0", + "source": { + "type": "git", + "url": "https://github.com/bytestream/Text_Flowed.git", + "reference": "97153c2e68a600662c54eb02e973eda797134de1" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_ManageSieve-1.0.3.tgz" + "type": "zip", + "url": "https://api.github.com/repos/bytestream/Text_Flowed/zipball/97153c2e68a600662c54eb02e973eda797134de1", + "reference": "97153c2e68a600662c54eb02e973eda797134de1", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "pear-pear.horde.org/horde_socket_client": "<3.0.0.0", - "pear-pear.horde.org/horde_util": "<3.0.0.0", - "php": ">=5.4.0.0" + "bytestream/horde-util": "^2", + "php": "^7.4 || ^8.0" }, - "replace": { - "pear-horde/horde_managesieve": "== 1.0.3.0" + "require-dev": { + "phpunit/phpunit": "^9.5" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-0": { + "Horde_Text_Flowed": "lib/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-2-Clause" + "LGPL-2.1" + ], + "authors": [ + { + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" + } ], - "description": "A library that implements the ManageSieve protocol (RFC 5804)." + "description": "Flowed text library", + "homepage": "https://www.horde.org/libraries/Horde_Text_Flowed", + "support": { + "source": "https://github.com/bytestream/Text_Flowed/tree/v2.1.0" + }, + "time": "2021-12-21T12:01:44+00:00" }, { - "name": "pear-pear.horde.org/Horde_Mime", - "version": "2.11.1", + "name": "bytestream/horde-translation", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/bytestream/Translation.git", + "reference": "50b32bf614164e3e44deb23f4210e709f967cbc6" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Mime-2.11.1.tgz" + "type": "zip", + "url": "https://api.github.com/repos/bytestream/Translation/zipball/50b32bf614164e3e44deb23f4210e709f967cbc6", + "reference": "50b32bf614164e3e44deb23f4210e709f967cbc6", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "pear-pear.horde.org/horde_listheaders": "<2.0.0.0", - "pear-pear.horde.org/horde_mail": "<3.0.0.0", - "pear-pear.horde.org/horde_stream": "<2.0.0.0", - "pear-pear.horde.org/horde_stream_filter": "<3.0.0.0", - "pear-pear.horde.org/horde_support": "<3.0.0.0", - "pear-pear.horde.org/horde_text_flowed": "<3.0.0.0", - "pear-pear.horde.org/horde_translation": "<3.0.0.0", - "pear-pear.horde.org/horde_util": "<3.0.0.0", - "php": "<8.0.0.0" - }, - "replace": { - "pear-horde/horde_mime": "== 2.11.1.0" - }, - "type": "pear-library", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-0": { + "Horde_Translation": "lib/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-2.1" ], - "description": "A library that provides methods for dealing with Multipurpose Internet Mail Extensions (MIME) features (RFC 2045/2046/2047)." + "authors": [ + { + "name": "Jan Schneider", + "email": "jan@horde.org", + "role": "lead" + } + ], + "description": "Horde Translation library", + "homepage": "https://www.horde.org/libraries/Horde_Translation", + "support": { + "source": "https://github.com/bytestream/Translation/tree/v2.3.0" + }, + "time": "2021-12-20T20:30:50+00:00" }, { - "name": "pear-pear.horde.org/Horde_Nls", - "version": "2.2.1", + "name": "bytestream/horde-util", + "version": "v2.6.1", + "source": { + "type": "git", + "url": "https://github.com/bytestream/Util.git", + "reference": "14720033eb787c7cf1e47b49da86aa1f66c87793" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Nls-2.2.1.tgz" + "type": "zip", + "url": "https://api.github.com/repos/bytestream/Util/zipball/14720033eb787c7cf1e47b49da86aa1f66c87793", + "reference": "14720033eb787c7cf1e47b49da86aa1f66c87793", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_translation": "<3.0.0.0", - "pear-pear.horde.org/horde_util": "<3.0.0.0", - "php": "<8.0.0.0" + "ext-dom": "*", + "php": "^7.4 || ^8.0" }, - "replace": { - "pear-horde/horde_nls": "== 2.2.1.0" + "require-dev": { + "phpunit/phpunit": "^9.5" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-0": { + "Horde": "lib/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-2.1" ], - "description": "Common methods for handling language data, timezones, and hostname->country lookups." + "authors": [ + { + "name": "Chuck Hagenbuch", + "email": "chuck@horde.org", + "role": "lead" + }, + { + "name": "Jan Schneider", + "email": "jan@horde.org", + "role": "lead" + }, + { + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "developer" + } + ], + "description": "Horde utility library", + "homepage": "https://www.horde.org/libraries/Horde_Util", + "support": { + "source": "https://github.com/bytestream/Util/tree/v2.6.1" + }, + "time": "2021-12-21T17:30:42+00:00" }, { - "name": "pear-pear.horde.org/Horde_Secret", - "version": "2.0.6", + "name": "cerdic/css-tidy", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/Cerdic/CSSTidy.git", + "reference": "9efced88f9fc31ecbd52c798b6c01283966c0e48" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Secret-2.0.6.tgz" + "type": "zip", + "url": "https://api.github.com/repos/Cerdic/CSSTidy/zipball/9efced88f9fc31ecbd52c798b6c01283966c0e48", + "reference": "9efced88f9fc31ecbd52c798b6c01283966c0e48", + "shasum": "" }, "require": { - "ext-hash": "*", - "pear-pear.horde.org/horde_crypt_blowfish": "<2.0.0.0", - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "pear-pear.horde.org/horde_support": "<3.0.0.0", - "php": "<8.0.0.0" + "php": "^7.1 || ^8" }, - "replace": { - "pear-horde/horde_secret": "== 2.0.6.0" + "require-dev": { + "pear/text_diff": "^1.2", + "simpletest/simpletest": "dev-master" }, - "type": "pear-library", + "bin": [ + "bin/pcsstidy" + ], + "type": "library", "autoload": { "classmap": [ - "" + "class.csstidy_optimise.php", + "class.csstidy_print.php", + "class.csstidy.php" ] }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1" + "LGPL-2.1-or-later" ], - "description": "An API for encrypting and decrypting small pieces of data with the use of a shared key." - }, - { - "name": "pear-pear.horde.org/Horde_Smtp", - "version": "1.9.6", - "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Smtp-1.9.6.tgz" - }, - "require": { - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "pear-pear.horde.org/horde_mail": "<3.0.0.0", - "pear-pear.horde.org/horde_socket_client": "<3.0.0.0", - "pear-pear.horde.org/horde_support": "<3.0.0.0", - "pear-pear.horde.org/horde_translation": "<3.0.0.0", - "pear-pear.horde.org/horde_util": "<3.0.0.0", - "php": "<8.0.0.0" - }, - "replace": { - "pear-horde/horde_smtp": "== 1.9.6.0" - }, - "type": "pear-library", - "autoload": { - "classmap": [ - "" - ] - }, - "include-path": [ - "/" - ], - "license": [ - "LGPL-2.1" + "authors": [ + { + "name": "Cédric MORIN", + "email": "changeme@mailinator.com" + } ], - "description": "A library for connecting to a SMTP (RFC 5321) server to send e-mail messages." + "description": "CSSTidy is a CSS minifier", + "time": "2022-02-21T15:33:09+00:00" }, { - "name": "pear-pear.horde.org/Horde_Socket_Client", - "version": "2.1.4", + "name": "christophwurst/kitinerary", + "version": "0.2.1", + "source": { + "type": "git", + "url": "https://github.com/ChristophWurst/kitinerary.git", + "reference": "d2adb02b6d46b36571dc3c5127a8360ba2d5b418" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Socket_Client-2.1.4.tgz" + "type": "zip", + "url": "https://api.github.com/repos/ChristophWurst/kitinerary/zipball/d2adb02b6d46b36571dc3c5127a8360ba2d5b418", + "reference": "d2adb02b6d46b36571dc3c5127a8360ba2d5b418", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "php": "<8.0.0.0" - }, - "replace": { - "pear-horde/horde_socket_client": "== 2.1.4.0" + "ext-json": "*" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-4": { + "ChristophWurst\\KItinerary\\": "/src" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1" + "AGPL-3.0-or-later" ], - "description": "A library that provides an abstract PHP network socket client." + "authors": [ + { + "name": "Christoph Wurst", + "email": "christoph@winzerhof-wurst.at" + } + ], + "description": "KItinerary adapter", + "time": "2020-01-13T21:39:22+00:00" }, { - "name": "pear-pear.horde.org/Horde_Stream", - "version": "1.6.3", + "name": "christophwurst/kitinerary-bin", + "version": "0.2.3", + "source": { + "type": "git", + "url": "https://github.com/ChristophWurst/kitinerary-bin.git", + "reference": "eaafa040b404651cb4ab75a2d7a53c71b55d2395" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Stream-1.6.3.tgz" + "type": "zip", + "url": "https://api.github.com/repos/ChristophWurst/kitinerary-bin/zipball/eaafa040b404651cb4ab75a2d7a53c71b55d2395", + "reference": "eaafa040b404651cb4ab75a2d7a53c71b55d2395", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "php": "<8.0.0.0" - }, - "replace": { - "pear-horde/horde_stream": "== 1.6.3.0" + "christophwurst/kitinerary": "^0.2.1", + "ext-json": "*", + "php": "^7.1", + "psr/log": "^1.1" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-4": { + "ChristophWurst\\KItinerary\\Bin\\": "/src" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1" + "LGPL-3.0-or-later" + ], + "authors": [ + { + "name": "Christoph Wurst", + "email": "christoph@winzerhof-wurst.at" + } ], - "description": "An object-oriented interface to assist in creating and storing PHP stream resources, and to provide utility methods to access and manipulate the stream contents." + "description": "KItinerary binary executable", + "time": "2020-01-13T21:43:49+00:00" }, { - "name": "pear-pear.horde.org/Horde_Stream_Filter", - "version": "2.0.4", + "name": "christophwurst/kitinerary-flatpak", + "version": "0.2.2", + "source": { + "type": "git", + "url": "https://github.com/ChristophWurst/kitinerary-flatpak.git", + "reference": "2f0254f31a6b3d88f7a8ac5de25c580820401d37" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Stream_Filter-2.0.4.tgz" + "type": "zip", + "url": "https://api.github.com/repos/ChristophWurst/kitinerary-flatpak/zipball/2f0254f31a6b3d88f7a8ac5de25c580820401d37", + "reference": "2f0254f31a6b3d88f7a8ac5de25c580820401d37", + "shasum": "" }, "require": { - "php": "<8.0.0.0" - }, - "replace": { - "pear-horde/horde_stream_filter": "== 2.0.4.0" + "christophwurst/kitinerary": "^0.2", + "ext-json": "*" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-4": { + "ChristophWurst\\KItinerary\\Flatpak\\": "/src" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1" + "AGPL-3.0-or-later" ], - "description": "A collection of various stream filters." + "authors": [ + { + "name": "Christoph Wurst", + "email": "christoph@winzerhof-wurst.at" + } + ], + "description": "KItinerary Flatpak binding", + "time": "2020-01-13T21:42:51+00:00" }, { - "name": "pear-pear.horde.org/Horde_Stream_Wrapper", - "version": "2.1.5", + "name": "christophwurst/kitinerary-sys", + "version": "v0.1.0", + "source": { + "type": "git", + "url": "https://github.com/ChristophWurst/kitinerary-sys.git", + "reference": "db1c61703e94746b95543f14c5a09067faba6f92" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Stream_Wrapper-2.1.5.tgz" + "type": "zip", + "url": "https://api.github.com/repos/ChristophWurst/kitinerary-sys/zipball/db1c61703e94746b95543f14c5a09067faba6f92", + "reference": "db1c61703e94746b95543f14c5a09067faba6f92", + "shasum": "" }, "require": { - "php": "<8.0.0.0" - }, - "replace": { - "pear-horde/horde_stream_wrapper": "== 2.1.5.0" + "christophwurst/kitinerary": "^0.2.1", + "ext-json": "*", + "php": "^7.1", + "psr/log": "^1.1" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-4": { + "ChristophWurst\\KItinerary\\Sys\\": "/src" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-2-Clause" + "LGPL-3.0-or-later" ], - "description": "A library of stream wrappers." + "authors": [ + { + "name": "Christoph Wurst", + "email": "christoph@winzerhof-wurst.at" + } + ], + "description": "KItinerary binding for the system package", + "time": "2020-05-15T14:29:54+00:00" }, { - "name": "pear-pear.horde.org/Horde_Stringprep", - "version": "1.0.4", + "name": "ezyang/htmlpurifier", + "version": "v4.14.0", + "source": { + "type": "git", + "url": "https://github.com/ezyang/htmlpurifier.git", + "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Stringprep-1.0.4.tgz" + "type": "zip", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75", + "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75", + "shasum": "" }, "require": { - "ext-iconv": "*", - "ext-intl": "*", - "php": "<8.0.0.0" - }, - "replace": { - "pear-horde/horde_stringprep": "== 1.0.4.0" + "php": ">=5.2" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" + "files": [ + "library/HTMLPurifier.composer.php" + ], + "psr-0": { + "HTMLPurifier": "library/" + }, + "exclude-from-classmap": [ + "/library/HTMLPurifier/Language/" ] }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0" + "LGPL-2.1-or-later" ], - "description": "Horde wrapper around the znerol/php-stringprep package." + "authors": [ + { + "name": "Edward Z. Yang", + "email": "admin@htmlpurifier.org", + "homepage": "http://ezyang.com" + } + ], + "description": "Standards compliant HTML filter written in PHP", + "homepage": "http://htmlpurifier.org/", + "keywords": [ + "html" + ], + "time": "2021-12-25T01:21:49+00:00" }, { - "name": "pear-pear.horde.org/Horde_Support", - "version": "2.2.1", + "name": "gravatarphp/gravatar", + "version": "v2.0.0", + "source": { + "type": "git", + "url": "https://github.com/gravatarphp/gravatar.git", + "reference": "54a5d48b4564ec9f1db8a498ad23d500ab83c063" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Support-2.2.1.tgz" + "type": "zip", + "url": "https://api.github.com/repos/gravatarphp/gravatar/zipball/54a5d48b4564ec9f1db8a498ad23d500ab83c063", + "reference": "54a5d48b4564ec9f1db8a498ad23d500ab83c063", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "pear-pear.horde.org/horde_stream_wrapper": "<3.0.0.0", - "pear-pear.horde.org/horde_util": "<3.0.0.0", - "php": "<8.0.0.0" + "php": "^7.1" }, - "replace": { - "pear-horde/horde_support": "== 2.2.1.0" + "require-dev": { + "phpspec/phpspec": "^5.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } }, - "type": "pear-library", "autoload": { - "classmap": [ - "" - ] + "psr-4": { + "Gravatar\\": "src/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-2-Clause" + "MIT" ], - "description": "Support library not tied to Horde but used by it." + "authors": [ + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" + } + ], + "description": "Gravatar URL builder which is most commonly called as a Gravatar library", + "homepage": "http://gravatarphp.com", + "keywords": [ + "avatar", + "gravatar", + "image", + "profile" + ], + "time": "2019-01-08T21:43:01+00:00" }, { - "name": "pear-pear.horde.org/Horde_Text_Filter", - "version": "2.3.7", + "name": "league/flysystem", + "version": "2.0.8", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "82ad1e9a11745dba58775de2e8f47600b0a3331d" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Text_Filter-2.3.7.tgz" + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/82ad1e9a11745dba58775de2e8f47600b0a3331d", + "reference": "82ad1e9a11745dba58775de2e8f47600b0a3331d", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_exception": "<3.0.0.0", - "pear-pear.horde.org/horde_idna": "<2.0.0.0", - "pear-pear.horde.org/horde_secret": "<3.0.0.0", - "pear-pear.horde.org/horde_util": "<3.0.0.0", - "php": "<8.0.0.0" + "ext-json": "*", + "league/mime-type-detection": "^1.0.0", + "php": "^7.2 || ^8.0" }, - "replace": { - "pear-horde/horde_text_filter": "== 2.3.7.0" + "conflict": { + "guzzlehttp/ringphp": "<1.1.1" }, - "type": "pear-library", + "require-dev": { + "async-aws/s3": "^1.5", + "async-aws/simple-s3": "^1.0", + "aws/aws-sdk-php": "^3.132.4", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "friendsofphp/php-cs-fixer": "^2.16", + "google/cloud-storage": "^1.23", + "phpseclib/phpseclib": "^2.0", + "phpstan/phpstan": "^0.12.26", + "phpunit/phpunit": "^8.5 || ^9.4" + }, + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-4": { + "League\\Flysystem\\": "src" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1" + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } ], - "description": "A library for fitering and converting text." + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "funding": [ + { + "url": "https://offset.earth/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2021-05-15T19:53:59+00:00" }, { - "name": "pear-pear.horde.org/Horde_Text_Flowed", - "version": "2.0.4", + "name": "league/mime-type-detection", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Text_Flowed-2.0.4.tgz" + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", + "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", + "shasum": "" }, "require": { - "pear-pear.horde.org/horde_util": "<3.0.0.0", - "php": "<8.0.0.0" + "ext-fileinfo": "*", + "php": "^7.2 || ^8.0" }, - "replace": { - "pear-horde/horde_text_flowed": "== 2.0.4.0" + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3" }, - "type": "pear-library", + "type": "library", "autoload": { - "classmap": [ - "" - ] + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1" + "MIT" ], - "description": "A library that provides common methods for manipulating text using the encoding described in RFC 3676 ('flowed' text)." + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2022-04-17T13:12:02+00:00" }, { - "name": "pear-pear.horde.org/Horde_Translation", - "version": "2.2.2", + "name": "nextcloud/horde-managesieve", + "version": "v1.0.0", + "source": { + "type": "git", + "url": "https://github.com/nextcloud/horde-managesieve.git", + "reference": "fd81621064a4b4bef74aadeffa0e610d844314aa" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Translation-2.2.2.tgz" + "type": "zip", + "url": "https://api.github.com/repos/nextcloud/horde-managesieve/zipball/fd81621064a4b4bef74aadeffa0e610d844314aa", + "reference": "fd81621064a4b4bef74aadeffa0e610d844314aa", + "shasum": "" }, "require": { - "php": "<8.0.0.0" + "bytestream/horde-exception": "^2", + "bytestream/horde-socket-client": "^2", + "bytestream/horde-util": "^2", + "php": "^7.4 || ^8.0" }, - "replace": { - "pear-horde/horde_translation": "== 2.2.2.0" + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } }, - "type": "pear-library", "autoload": { - "classmap": [ - "" - ] + "psr-0": { + "Horde\\": "lib/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1" + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Jan Schneider", + "email": "jan@horde.org", + "role": "lead" + } ], - "description": "Translation wrappers." + "description": "ManageSieve client library", + "homepage": "https://www.horde.org", + "support": { + "source": "https://github.com/nextcloud/horde-managesieve/tree/v1.0.0" + }, + "time": "2022-04-27T16:49:35+00:00" }, { - "name": "pear-pear.horde.org/Horde_Util", - "version": "2.5.9", + "name": "nextcloud/horde-smtp", + "version": "v1.0.0", + "source": { + "type": "git", + "url": "https://github.com/nextcloud/horde-smtp.git", + "reference": "8b6cae75c328d7aee19957123d23b69eb98c52a1" + }, "dist": { - "type": "file", - "url": "https://pear.horde.org/get/Horde_Util-2.5.9.tgz" + "type": "zip", + "url": "https://api.github.com/repos/nextcloud/horde-smtp/zipball/8b6cae75c328d7aee19957123d23b69eb98c52a1", + "reference": "8b6cae75c328d7aee19957123d23b69eb98c52a1", + "shasum": "" }, "require": { - "ext-dom": "*", - "php": "<8.0.0.0" + "bytestream/horde-exception": "^2", + "bytestream/horde-mail": "^2", + "bytestream/horde-socket-client": "^2", + "bytestream/horde-support": "^2", + "bytestream/horde-translation": "^2.2", + "bytestream/horde-util": "^2", + "php": "^7.4 || ^8.0" }, - "replace": { - "pear-horde/horde_util": "== 2.5.9.0" + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } }, - "type": "pear-library", "autoload": { - "classmap": [ - "" - ] + "psr-0": { + "Horde_Smtp": "lib/" + } }, - "include-path": [ - "/" - ], + "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-2.1" ], - "description": "A library that provides functionality useful for all kind of applications." + "authors": [ + { + "name": "Michael Slusarz", + "email": "slusarz@horde.org", + "role": "lead" + } + ], + "description": "Horde SMTP client", + "homepage": "https://www.horde.org", + "support": { + "source": "https://github.com/nextcloud/horde-smtp/tree/v1.0.0" + }, + "time": "2022-04-27T17:09:33+00:00" }, { "name": "psr/log", @@ -2720,18 +3092,6 @@ "aliases": [], "minimum-stability": "stable", "stability-flags": { - "pear-pear.horde.org/horde_date": 0, - "pear-pear.horde.org/horde_exception": 0, - "pear-pear.horde.org/horde_imap_client": 0, - "pear-pear.horde.org/horde_mail": 0, - "pear-pear.horde.org/horde_mime": 0, - "pear-pear.horde.org/horde_nls": 0, - "pear-pear.horde.org/horde_smtp": 0, - "pear-pear.horde.org/horde_stream": 0, - "pear-pear.horde.org/horde_support": 0, - "pear-pear.horde.org/horde_text_filter": 0, - "pear-pear.horde.org/horde_text_flowed": 0, - "pear-pear.horde.org/horde_util": 0, "roave/security-advisories": 20 }, "prefer-stable": false, @@ -2743,5 +3103,5 @@ "platform-overrides": { "php": "7.4" }, - "plugin-api-version": "1.1.0" + "plugin-api-version": "2.3.0" } diff --git a/vendor-bin/cs-fixer/composer.lock b/vendor-bin/cs-fixer/composer.lock index 0da6061c1..91d659bc7 100644 --- a/vendor-bin/cs-fixer/composer.lock +++ b/vendor-bin/cs-fixer/composer.lock @@ -58,6 +58,10 @@ "regex", "regular expression" ], + "support": { + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.0.0" + }, "funding": [ { "url": "https://packagist.com", @@ -134,6 +138,11 @@ "validation", "versioning" ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/3.3.2" + }, "funding": [ { "url": "https://packagist.com", @@ -195,6 +204,11 @@ "Xdebug", "performance" ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/xdebug-handler/issues", + "source": "https://github.com/composer/xdebug-handler/tree/3.0.3" + }, "funding": [ { "url": "https://packagist.com", @@ -277,6 +291,10 @@ "docblock", "parser" ], + "support": { + "issues": "https://github.com/doctrine/annotations/issues", + "source": "https://github.com/doctrine/annotations/tree/1.13.2" + }, "time": "2021-08-05T19:00:23+00:00" }, { @@ -335,6 +353,10 @@ "parser", "php" ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/1.2.3" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -428,6 +450,10 @@ } ], "description": "A tool to automatically fix PHP code style", + "support": { + "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues", + "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v3.8.0" + }, "funding": [ { "url": "https://github.com/keradus", @@ -471,6 +497,10 @@ } ], "description": "Nextcloud coding standards for the php cs fixer", + "support": { + "issues": "https://github.com/nextcloud/coding-standard/issues", + "source": "https://github.com/nextcloud/coding-standard/tree/v1.0.0" + }, "time": "2021-11-10T08:44:10+00:00" }, { @@ -519,6 +549,10 @@ "keywords": [ "diff" ], + "support": { + "issues": "https://github.com/PHP-CS-Fixer/diff/issues", + "source": "https://github.com/PHP-CS-Fixer/diff/tree/v2.0.2" + }, "time": "2020-10-14T08:32:19+00:00" }, { @@ -565,6 +599,9 @@ "psr", "psr-6" ], + "support": { + "source": "https://github.com/php-fig/cache/tree/master" + }, "time": "2016-08-06T20:24:11+00:00" }, { @@ -609,6 +646,10 @@ "container-interop", "psr" ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/1.1.2" + }, "time": "2021-11-05T16:50:12+00:00" }, { @@ -655,6 +696,10 @@ "psr", "psr-14" ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, "time": "2019-01-08T18:20:26+00:00" }, { @@ -702,6 +747,9 @@ "psr", "psr-3" ], + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.4" + }, "time": "2021-05-03T11:20:27+00:00" }, { @@ -784,6 +832,9 @@ "console", "terminal" ], + "support": { + "source": "https://github.com/symfony/console/tree/v5.4.8" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -848,6 +899,9 @@ ], "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -930,6 +984,9 @@ ], "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1006,6 +1063,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1067,6 +1127,9 @@ ], "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/filesystem/tree/v5.4.7" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1127,6 +1190,9 @@ ], "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v5.4.8" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1193,6 +1259,9 @@ "configuration", "options" ], + "support": { + "source": "https://github.com/symfony/options-resolver/tree/v5.4.3" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1272,6 +1341,9 @@ "polyfill", "portable" ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1350,6 +1422,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1431,6 +1506,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1511,6 +1589,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1587,6 +1668,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1667,6 +1751,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1743,6 +1830,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php81/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1802,6 +1892,9 @@ ], "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v5.4.8" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1882,6 +1975,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v2.5.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1941,6 +2037,9 @@ ], "description": "Provides a way to profile code", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/stopwatch/tree/v5.4.5" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -2024,6 +2123,9 @@ "utf-8", "utf8" ], + "support": { + "source": "https://github.com/symfony/string/tree/v5.4.8" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -2051,5 +2153,5 @@ "platform-overrides": { "php": "7.4" }, - "plugin-api-version": "1.1.0" + "plugin-api-version": "2.3.0" } diff --git a/vendor-bin/mozart/composer.lock b/vendor-bin/mozart/composer.lock index fa3651f24..23daa33cf 100644 --- a/vendor-bin/mozart/composer.lock +++ b/vendor-bin/mozart/composer.lock @@ -52,6 +52,10 @@ } ], "description": "Composes all dependencies as a package inside a WordPress plugin", + "support": { + "issues": "https://github.com/coenjacobs/mozart/issues", + "source": "https://github.com/coenjacobs/mozart/tree/0.7.1" + }, "funding": [ { "url": "https://github.com/coenjacobs", @@ -142,6 +146,10 @@ "sftp", "storage" ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/1.1.9" + }, "funding": [ { "url": "https://offset.earth/frankdejonge", @@ -190,6 +198,10 @@ } ], "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" + }, "funding": [ { "url": "https://github.com/frankdejonge", @@ -244,6 +256,10 @@ "container-interop", "psr" ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/1.1.2" + }, "time": "2021-11-05T16:50:12+00:00" }, { @@ -326,6 +342,9 @@ "console", "terminal" ], + "support": { + "source": "https://github.com/symfony/console/tree/v5.4.8" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -390,6 +409,9 @@ ], "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -450,6 +472,9 @@ ], "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v5.4.8" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -529,6 +554,9 @@ "polyfill", "portable" ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -607,6 +635,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -688,6 +719,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -768,6 +802,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -844,6 +881,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -924,6 +964,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1004,6 +1047,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v2.5.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1087,6 +1133,9 @@ "utf-8", "utf8" ], + "support": { + "source": "https://github.com/symfony/string/tree/v5.4.8" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -1115,5 +1164,5 @@ "platform-overrides": { "php": "7.4" }, - "plugin-api-version": "1.1.0" + "plugin-api-version": "2.3.0" } diff --git a/vendor-bin/phpunit/composer.lock b/vendor-bin/phpunit/composer.lock index 06330e2a2..d75598cbb 100644 --- a/vendor-bin/phpunit/composer.lock +++ b/vendor-bin/phpunit/composer.lock @@ -46,6 +46,10 @@ } ], "description": "Simple and fast unit and integration testing framework for Nextcloud, based on PHPUnit", + "support": { + "issues": "https://github.com/ChristophWurst/nextcloud_testing/issues", + "source": "https://github.com/ChristophWurst/nextcloud_testing/tree/v0.12.4" + }, "time": "2021-02-18T08:41:09+00:00" }, { @@ -98,6 +102,10 @@ "constructor", "instantiate" ], + "support": { + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/1.4.1" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -161,6 +169,10 @@ "object", "object graph" ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0" + }, "funding": [ { "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", @@ -219,6 +231,10 @@ "parser", "php" ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2" + }, "time": "2021-11-30T19:35:32+00:00" }, { @@ -275,6 +291,10 @@ } ], "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.3" + }, "time": "2021-07-20T11:28:43+00:00" }, { @@ -322,20 +342,24 @@ } ], "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, "time": "2022-02-21T01:04:05+00:00" }, { "name": "php-webdriver/webdriver", - "version": "1.12.0", + "version": "1.12.1", "source": { "type": "git", "url": "https://github.com/php-webdriver/php-webdriver.git", - "reference": "99d4856ed7dffcdf6a52eccd6551e83d8d557ceb" + "reference": "b27ddf458d273c7d4602106fcaf978aa0b7fe15a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-webdriver/php-webdriver/zipball/99d4856ed7dffcdf6a52eccd6551e83d8d557ceb", - "reference": "99d4856ed7dffcdf6a52eccd6551e83d8d557ceb", + "url": "https://api.github.com/repos/php-webdriver/php-webdriver/zipball/b27ddf458d273c7d4602106fcaf978aa0b7fe15a", + "reference": "b27ddf458d273c7d4602106fcaf978aa0b7fe15a", "shasum": "" }, "require": { @@ -363,12 +387,12 @@ }, "type": "library", "autoload": { - "psr-4": { - "Facebook\\WebDriver\\": "lib/" - }, "files": [ "lib/Exception/TimeoutException.php" - ] + ], + "psr-4": { + "Facebook\\WebDriver\\": "lib/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -383,7 +407,11 @@ "selenium", "webdriver" ], - "time": "2021-10-14T09:30:02+00:00" + "support": { + "issues": "https://github.com/php-webdriver/php-webdriver/issues", + "source": "https://github.com/php-webdriver/php-webdriver/tree/1.12.1" + }, + "time": "2022-05-03T12:16:34+00:00" }, { "name": "phpdocumentor/reflection-common", @@ -432,6 +460,10 @@ "reflection", "static analysis" ], + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", + "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" + }, "time": "2020-06-27T09:03:43+00:00" }, { @@ -485,6 +517,10 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" + }, "time": "2021-10-19T17:43:47+00:00" }, { @@ -531,6 +567,10 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "support": { + "issues": "https://github.com/phpDocumentor/TypeResolver/issues", + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1" + }, "time": "2022-03-15T21:29:03+00:00" }, { @@ -594,6 +634,10 @@ "spy", "stub" ], + "support": { + "issues": "https://github.com/phpspec/prophecy/issues", + "source": "https://github.com/phpspec/prophecy/tree/v1.15.0" + }, "time": "2021-12-08T12:19:24+00:00" }, { @@ -661,6 +705,10 @@ "testing", "xunit" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -717,6 +765,10 @@ "filesystem", "iterator" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -776,6 +828,10 @@ "keywords": [ "process" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -831,6 +887,10 @@ "keywords": [ "template" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -886,6 +946,10 @@ "keywords": [ "timer" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -981,6 +1045,10 @@ "testing", "xunit" ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.20" + }, "funding": [ { "url": "https://phpunit.de/sponsors.html", @@ -1037,6 +1105,10 @@ ], "description": "Library for parsing CLI options", "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1089,6 +1161,10 @@ ], "description": "Collection of value objects that represent the PHP code units", "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1140,6 +1216,10 @@ ], "description": "Looks up which function or method a line of code belongs to", "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1210,6 +1290,10 @@ "compare", "equality" ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1263,6 +1347,10 @@ ], "description": "Library for calculating the complexity of PHP code units", "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1325,6 +1413,10 @@ "unidiff", "unified diff" ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1384,6 +1476,10 @@ "environment", "hhvm" ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1457,6 +1553,10 @@ "export", "exporter" ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1517,6 +1617,10 @@ "keywords": [ "global state" ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1570,6 +1674,10 @@ ], "description": "Library for counting the lines of code in PHP source code", "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1623,6 +1731,10 @@ ], "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1674,6 +1786,10 @@ ], "description": "Allows reflection of object attributes, including inherited and non-public ones", "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1733,6 +1849,10 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1784,6 +1904,10 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "support": { + "issues": "https://github.com/sebastianbergmann/resource-operations/issues", + "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1836,6 +1960,10 @@ ], "description": "Collection of value objects that represent the types of the PHP type system", "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/3.0.0" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1885,6 +2013,10 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -1956,6 +2088,9 @@ "polyfill", "portable" ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -2036,6 +2171,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -2116,6 +2254,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -2175,6 +2316,9 @@ ], "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v5.4.8" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -2229,6 +2373,10 @@ } ], "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.1" + }, "funding": [ { "url": "https://github.com/theseer", @@ -2289,6 +2437,10 @@ "check", "validate" ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.10.0" + }, "time": "2021-03-09T10:59:23+00:00" } ], @@ -2302,5 +2454,5 @@ "platform-overrides": { "php": "7.4" }, - "plugin-api-version": "1.1.0" + "plugin-api-version": "2.3.0" } -- cgit v1.2.3