From 86c840d7f00cc1833960c6ed587465cdec4b054c Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 5 Apr 2021 14:20:26 +0800 Subject: [PATCH] nixbld: minor flarum updates, install FoF/subscribed --- nixbld-etc-nixos/flarum/composer-env.nix | 27 +- nixbld-etc-nixos/flarum/composer.json | 3 +- nixbld-etc-nixos/flarum/composer.lock | 1624 +++++++++++++++------- nixbld-etc-nixos/flarum/default.nix | 4 +- nixbld-etc-nixos/flarum/php-packages.nix | 474 ++++--- 5 files changed, 1368 insertions(+), 764 deletions(-) diff --git a/nixbld-etc-nixos/flarum/composer-env.nix b/nixbld-etc-nixos/flarum/composer-env.nix index 279b307..6c89bc8 100644 --- a/nixbld-etc-nixos/flarum/composer-env.nix +++ b/nixbld-etc-nixos/flarum/composer-env.nix @@ -1,6 +1,6 @@ # This file originates from composer2nix -{ stdenv, writeTextFile, fetchurl, php, unzip, phpPackages }: +{ stdenv, lib, writeTextFile, fetchurl, php, unzip, phpPackages }: let inherit (phpPackages) composer; @@ -28,6 +28,7 @@ let , removeComposerArtifacts ? false , postInstall ? "" , noDev ? false + , composerExtraArgs ? "" , unpackPhase ? "true" , buildPhase ? "true" , ...}@args: @@ -57,7 +58,7 @@ let else $allPackages = array(); - ${stdenv.lib.optionalString (!noDev) '' + ${lib.optionalString (!noDev) '' if(array_key_exists("packages-dev", $config)) $allPackages = array_merge($allPackages, $config["packages-dev"]); ''} @@ -108,7 +109,7 @@ let }; bundleDependencies = dependencies: - stdenv.lib.concatMapStrings (dependencyName: + lib.concatMapStrings (dependencyName: let dependency = dependencies.${dependencyName}; in @@ -174,29 +175,29 @@ let # Reconstruct the installed.json file from the lock file mkdir -p vendor/composer - ${reconstructInstalled} composer.lock > vendor/composer/installed.json + ${php}/bin/php ${reconstructInstalled} composer.lock > vendor/composer/installed.json # Copy or symlink the provided dependencies cd vendor ${bundleDependencies packages} - ${stdenv.lib.optionalString (!noDev) (bundleDependencies devPackages)} + ${lib.optionalString (!noDev) (bundleDependencies devPackages)} cd .. # Reconstruct autoload scripts # We use the optimize feature because Nix packages cannot change after they have been built # Using the dynamic loader for a Nix package is useless since there is nothing to dynamically reload. - composer dump-autoload --optimize ${stdenv.lib.optionalString noDev "--no-dev"} + composer dump-autoload --optimize ${lib.optionalString noDev "--no-dev"} ${composerExtraArgs} # Run the install step as a validation to confirm that everything works out as expected - composer install --optimize-autoloader ${stdenv.lib.optionalString noDev "--no-dev"} + composer install --optimize-autoloader ${lib.optionalString noDev "--no-dev"} ${composerExtraArgs} - ${stdenv.lib.optionalString executable '' + ${lib.optionalString executable '' # Reconstruct the bin/ folder if we deploy an executable project - ${constructBin} composer.json + ${php}/bin/php ${constructBin} composer.json ln -s $(pwd)/vendor/bin $out/bin ''} - ${stdenv.lib.optionalString (!symlinkDependencies) '' + ${lib.optionalString (!symlinkDependencies) '' # Patch the shebangs if possible if [ -d $(pwd)/vendor/bin ] then @@ -232,7 +233,7 @@ let } // extraArgs); in { - composer = stdenv.lib.makeOverridable composer; - buildZipPackage = stdenv.lib.makeOverridable buildZipPackage; - buildPackage = stdenv.lib.makeOverridable buildPackage; + composer = lib.makeOverridable composer; + buildZipPackage = lib.makeOverridable buildZipPackage; + buildPackage = lib.makeOverridable buildPackage; } diff --git a/nixbld-etc-nixos/flarum/composer.json b/nixbld-etc-nixos/flarum/composer.json index a0b170a..56be854 100644 --- a/nixbld-etc-nixos/flarum/composer.json +++ b/nixbld-etc-nixos/flarum/composer.json @@ -58,7 +58,8 @@ "flarum/subscriptions": "^0.1.0", "flarum/suspend": "^0.1.0", "flarum/tags": "^0.1.0", - "fof/upload": "^0.10.0" + "fof/upload": "^0.10.0", + "fof/subscribed": "*" }, "config": { "preferred-install": "dist", diff --git a/nixbld-etc-nixos/flarum/composer.lock b/nixbld-etc-nixos/flarum/composer.lock index ccb27d2..c8bd4c4 100644 --- a/nixbld-etc-nixos/flarum/composer.lock +++ b/nixbld-etc-nixos/flarum/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": "aafd37e80f2edbfd0bd40d1d0dd7bf13", + "content-hash": "43b684957d3dd654472e7317230922f4", "packages": [ { "name": "axy/backtrace", @@ -47,6 +47,10 @@ "exception", "trace" ], + "support": { + "issues": "https://github.com/axypro/backtrace/issues", + "source": "https://github.com/axypro/backtrace/tree/1.0.7" + }, "time": "2019-02-02T15:52:44+00:00" }, { @@ -92,6 +96,10 @@ "base64", "codec" ], + "support": { + "issues": "https://github.com/axypro/codecs-base64vlq/issues", + "source": "https://github.com/axypro/codecs-base64vlq/tree/master" + }, "time": "2015-11-23T07:08:52+00:00" }, { @@ -134,6 +142,10 @@ "error", "exception" ], + "support": { + "issues": "https://github.com/axypro/errors/issues", + "source": "https://github.com/axypro/errors/tree/1.0.5" + }, "time": "2019-02-02T18:26:18+00:00" }, { @@ -180,6 +192,10 @@ "javascript", "sourcemap" ], + "support": { + "issues": "https://github.com/axypro/sourcemap/issues", + "source": "https://github.com/axypro/sourcemap/tree/0.1.5" + }, "time": "2020-08-20T09:49:44+00:00" }, { @@ -215,6 +231,10 @@ "OFL-1.1" ], "description": "Font Awesome, the iconic SVG, font, and CSS framework.", + "support": { + "issues": "https://github.com/components/font-awesome/issues", + "source": "https://github.com/components/font-awesome/tree/5.9.0" + }, "time": "2019-06-07T02:02:10+00:00" }, { @@ -267,6 +287,10 @@ "psr-7", "psr7" ], + "support": { + "issues": "https://github.com/dflydev/dflydev-fig-cookies/issues", + "source": "https://github.com/dflydev/dflydev-fig-cookies/tree/master" + }, "time": "2016-03-28T09:10:18+00:00" }, { @@ -349,6 +373,10 @@ "redis", "xcache" ], + "support": { + "issues": "https://github.com/doctrine/cache/issues", + "source": "https://github.com/doctrine/cache/tree/1.10.x" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -367,32 +395,32 @@ }, { "name": "doctrine/dbal", - "version": "2.10.2", + "version": "2.13.0", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8" + "reference": "67d56d3203b33db29834e6b2fcdbfdc50535d796" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/aab745e7b6b2de3b47019da81e7225e14dcfdac8", - "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/67d56d3203b33db29834e6b2fcdbfdc50535d796", + "reference": "67d56d3203b33db29834e6b2fcdbfdc50535d796", "shasum": "" }, "require": { "doctrine/cache": "^1.0", + "doctrine/deprecations": "^0.5.3", "doctrine/event-manager": "^1.0", "ext-pdo": "*", - "php": "^7.2" + "php": "^7.1 || ^8" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "jetbrains/phpstorm-stubs": "^2019.1", - "nikic/php-parser": "^4.4", - "phpstan/phpstan": "^0.12", - "phpunit/phpunit": "^8.4.1", + "doctrine/coding-standard": "8.2.0", + "jetbrains/phpstorm-stubs": "2020.2", + "phpstan/phpstan": "0.12.81", + "phpunit/phpunit": "^7.5.20|^8.5|9.5.0", "symfony/console": "^2.0.5|^3.0|^4.0|^5.0", - "vimeo/psalm": "^3.11" + "vimeo/psalm": "4.6.4" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." @@ -401,12 +429,6 @@ "bin/doctrine-dbal" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.10.x-dev", - "dev-develop": "3.0.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\DBAL\\": "lib/Doctrine/DBAL" @@ -457,6 +479,10 @@ "sqlserver", "sqlsrv" ], + "support": { + "issues": "https://github.com/doctrine/dbal/issues", + "source": "https://github.com/doctrine/dbal/tree/2.13.0" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -471,7 +497,50 @@ "type": "tidelift" } ], - "time": "2020-04-20T17:19:26+00:00" + "time": "2021-03-28T18:10:53+00:00" + }, + { + "name": "doctrine/deprecations", + "version": "v0.5.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "9504165960a1f83cc1480e2be1dd0a0478561314" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314", + "reference": "9504165960a1f83cc1480e2be1dd0a0478561314", + "shasum": "" + }, + "require": { + "php": "^7.1|^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0|^7.0|^8.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0", + "psr/log": "^1.0" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/v0.5.3" + }, + "time": "2021-03-21T12:59:47+00:00" }, { "name": "doctrine/event-manager", @@ -547,6 +616,10 @@ "event system", "events" ], + "support": { + "issues": "https://github.com/doctrine/event-manager/issues", + "source": "https://github.com/doctrine/event-manager/tree/1.1.x" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -639,6 +712,10 @@ "uppercase", "words" ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/1.4.x" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -715,6 +792,10 @@ "parser", "php" ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/1.2.1" + }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -733,27 +814,27 @@ }, { "name": "egulias/email-validator", - "version": "2.1.19", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c" + "reference": "c81f18a3efb941d8c4d2e025f6183b5c6d697307" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/840d5603eb84cc81a6a0382adac3293e57c1c64c", - "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c81f18a3efb941d8c4d2e025f6183b5c6d697307", + "reference": "c81f18a3efb941d8c4d2e025f6183b5c6d697307", "shasum": "" }, "require": { - "doctrine/lexer": "^1.0.1", - "php": ">=5.5", - "symfony/polyfill-intl-idn": "^1.10" + "doctrine/lexer": "^1.2", + "php": ">=7.2", + "symfony/polyfill-intl-idn": "^1.15" }, "require-dev": { - "dominicsayers/isemail": "^3.0.7", - "phpunit/phpunit": "^4.8.36|^7.5.15", - "satooshi/php-coveralls": "^1.0.1" + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^8.5.8|^9.3.3", + "vimeo/psalm": "^4" }, "suggest": { "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" @@ -761,7 +842,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1.x-dev" + "dev-master": "3.0.x-dev" } }, "autoload": { @@ -787,7 +868,17 @@ "validation", "validator" ], - "time": "2020-08-08T21:28:19+00:00" + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/3.1.1" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2021-04-01T18:37:14+00:00" }, { "name": "erusev/parsedown", @@ -833,24 +924,28 @@ "markdown", "parser" ], + "support": { + "issues": "https://github.com/erusev/parsedown/issues", + "source": "https://github.com/erusev/parsedown/tree/1.7.x" + }, "time": "2019-12-30T22:54:17+00:00" }, { "name": "fig/http-message-util", - "version": "1.1.4", + "version": "1.1.5", "source": { "type": "git", "url": "https://github.com/php-fig/http-message-util.git", - "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422" + "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/3242caa9da7221a304b8f84eb9eaddae0a7cf422", - "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422", + "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765", + "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765", "shasum": "" }, "require": { - "php": "^5.3 || ^7.0" + "php": "^5.3 || ^7.0 || ^8.0" }, "suggest": { "psr/http-message": "The package containing the PSR-7 interfaces" @@ -873,7 +968,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Utility classes and constants for use with PSR-7 (psr/http-message)", @@ -885,29 +980,33 @@ "request", "response" ], - "time": "2020-02-05T20:36:27+00:00" + "support": { + "issues": "https://github.com/php-fig/http-message-util/issues", + "source": "https://github.com/php-fig/http-message-util/tree/1.1.5" + }, + "time": "2020-11-24T22:02:12+00:00" }, { "name": "filp/whoops", - "version": "2.7.3", + "version": "2.12.0", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d" + "reference": "d501fd2658d55491a2295ff600ae5978eaad7403" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d", - "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d", + "url": "https://api.github.com/repos/filp/whoops/zipball/d501fd2658d55491a2295ff600ae5978eaad7403", + "reference": "d501fd2658d55491a2295ff600ae5978eaad7403", "shasum": "" }, "require": { - "php": "^5.5.9 || ^7.0", + "php": "^5.5.9 || ^7.0 || ^8.0", "psr/log": "^1.0.1" }, "require-dev": { "mockery/mockery": "^0.9 || ^1.0", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" }, "suggest": { @@ -917,7 +1016,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.6-dev" + "dev-master": "2.7-dev" } }, "autoload": { @@ -946,7 +1045,17 @@ "throwable", "whoops" ], - "time": "2020-06-14T09:00:00+00:00" + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.12.0" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2021-03-30T12:00:00+00:00" }, { "name": "flarum/approval", @@ -993,6 +1102,10 @@ "keywords": [ "moderation" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/approval" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1054,6 +1167,10 @@ "keywords": [ "Authentication" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/auth-facebook" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1068,6 +1185,7 @@ "type": "tidelift" } ], + "abandoned": "fof/oauth", "time": "2020-05-01T11:08:43+00:00" }, { @@ -1115,6 +1233,10 @@ "keywords": [ "Authentication" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/auth-github" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1129,6 +1251,7 @@ "type": "tidelift" } ], + "abandoned": "fof/oauth", "time": "2020-05-01T11:08:43+00:00" }, { @@ -1176,6 +1299,10 @@ "keywords": [ "Authentication" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/auth-twitter" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1190,6 +1317,7 @@ "type": "tidelift" } ], + "abandoned": "fof/oauth", "time": "2020-05-01T11:08:44+00:00" }, { @@ -1231,6 +1359,10 @@ "keywords": [ "formatting" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/bbcode" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1359,6 +1491,11 @@ "discussion", "forum" ], + "support": { + "docs": "https://flarum.org/docs/", + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/core" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1413,6 +1550,10 @@ "keywords": [ "formatting" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/emoji" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1473,6 +1614,10 @@ "keywords": [ "moderation" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/flags" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1533,6 +1678,9 @@ "keywords": [ "locale" ], + "support": { + "source": "https://github.com/flarum/lang-english/tree/v0.1.0-beta.13" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1593,6 +1741,10 @@ "keywords": [ "discussion" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/likes" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1653,6 +1805,10 @@ "keywords": [ "moderation" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/lock" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1711,6 +1867,10 @@ "keywords": [ "formatting" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/markdown" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1771,6 +1931,10 @@ "keywords": [ "discussion" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/mentions" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1835,6 +1999,10 @@ "keywords": [ "discussion" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/pusher" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1895,6 +2063,10 @@ "keywords": [ "administration" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/statistics" + }, "funding": [ { "url": "https://github.com/flarum", @@ -1955,6 +2127,10 @@ "keywords": [ "discussion" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/sticky" + }, "funding": [ { "url": "https://github.com/flarum", @@ -2015,6 +2191,10 @@ "keywords": [ "discussion" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/subscriptions" + }, "funding": [ { "url": "https://github.com/flarum", @@ -2075,6 +2255,10 @@ "keywords": [ "moderation" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/suspend" + }, "funding": [ { "url": "https://github.com/flarum", @@ -2093,16 +2277,16 @@ }, { "name": "flarum/tags", - "version": "v0.1.0-beta.13", + "version": "v0.1.0-beta.13.2", "source": { "type": "git", "url": "https://github.com/flarum/tags.git", - "reference": "fa83f496b0004e31ef2f4fc854bfcdf6a4cfa3c3" + "reference": "f929d10426083fe959f37edd42edac70dc4b09fe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/flarum/tags/zipball/fa83f496b0004e31ef2f4fc854bfcdf6a4cfa3c3", - "reference": "fa83f496b0004e31ef2f4fc854bfcdf6a4cfa3c3", + "url": "https://api.github.com/repos/flarum/tags/zipball/f929d10426083fe959f37edd42edac70dc4b09fe", + "reference": "f929d10426083fe959f37edd42edac70dc4b09fe", "shasum": "" }, "require": { @@ -2135,6 +2319,10 @@ "keywords": [ "discussion" ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/tags" + }, "funding": [ { "url": "https://github.com/flarum", @@ -2149,20 +2337,94 @@ "type": "tidelift" } ], - "time": "2020-05-04T08:48:54+00:00" + "time": "2020-10-06T19:41:20+00:00" }, { - "name": "fof/upload", - "version": "0.10.0", + "name": "fof/subscribed", + "version": "0.2.4", "source": { "type": "git", - "url": "https://github.com/FriendsOfFlarum/upload.git", - "reference": "c21fab65ce6dc6cf696de88da1359f58d59a36ca" + "url": "https://github.com/FriendsOfFlarum/subscribed.git", + "reference": "e9e5b94e9914fa113e7b46443bad229079ef2ea3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfFlarum/upload/zipball/c21fab65ce6dc6cf696de88da1359f58d59a36ca", - "reference": "c21fab65ce6dc6cf696de88da1359f58d59a36ca", + "url": "https://api.github.com/repos/FriendsOfFlarum/subscribed/zipball/e9e5b94e9914fa113e7b46443bad229079ef2ea3", + "reference": "e9e5b94e9914fa113e7b46443bad229079ef2ea3", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "replace": { + "flagrow/subscribed": "*" + }, + "type": "flarum-extension", + "extra": { + "flarum-extension": { + "title": "FoF Subscribed", + "icon": { + "name": "fas fa-reply-all", + "backgroundColor": "#e74c3c", + "color": "#fff" + } + }, + "flagrow": { + "discuss": "https://discuss.flarum.org/d/6460" + } + }, + "autoload": { + "psr-4": { + "FoF\\Subscribed\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Daniƫl Klabbers", + "email": "daniel@klabbers.email", + "homepage": "http://luceos.com" + }, + { + "name": "Christian Lopez", + "email": "Lopez.T.Christian@gmail.com" + } + ], + "description": "Better user subscriptions for your Flarum forum", + "keywords": [ + "extension", + "flarum", + "fof", + "friendsofflarum", + "subscriptions" + ], + "support": { + "issues": "https://github.com/FriendsOfFlarum/subscribed/issues", + "source": "https://github.com/FriendsOfFlarum/subscribed/tree/0.2.4" + }, + "funding": [ + { + "url": "https://opencollective.com/fof", + "type": "open_collective" + } + ], + "time": "2020-12-10T11:59:31+00:00" + }, + { + "name": "fof/upload", + "version": "0.10.1", + "source": { + "type": "git", + "url": "https://github.com/FriendsOfFlarum/upload.git", + "reference": "0c6bdf8078850136358725e94a10b23c44bb1906" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FriendsOfFlarum/upload/zipball/0c6bdf8078850136358725e94a10b23c44bb1906", + "reference": "0c6bdf8078850136358725e94a10b23c44bb1906", "shasum": "" }, "require": { @@ -2220,13 +2482,17 @@ "flarum", "upload" ], + "support": { + "issues": "https://github.com/FriendsOfFlarum/upload/issues", + "source": "https://github.com/FriendsOfFlarum/upload" + }, "funding": [ { "url": "https://opencollective.com/fof", "type": "open_collective" } ], - "time": "2020-08-04T23:16:17+00:00" + "time": "2020-12-06T20:12:45+00:00" }, { "name": "franzl/whoops-middleware", @@ -2256,6 +2522,10 @@ } }, "notification-url": "https://packagist.org/downloads/", + "support": { + "issues": "https://github.com/franzliedke/whoops-middleware/issues", + "source": "https://github.com/franzliedke/whoops-middleware/tree/master" + }, "time": "2016-04-27T14:08:29+00:00" }, { @@ -2323,27 +2593,31 @@ "rest", "web service" ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/6.5" + }, "time": "2020-06-16T21:01:06+00:00" }, { "name": "guzzlehttp/promises", - "version": "v1.3.1", + "version": "1.4.1", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d", + "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d", "shasum": "" }, "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { @@ -2374,20 +2648,24 @@ "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/1.4.1" + }, + "time": "2021-03-07T09:25:29+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.6.1", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/35ea11d335fd638b5882ff1725228b3d35496ab1", + "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1", "shasum": "" }, "require": { @@ -2400,15 +2678,15 @@ }, "require-dev": { "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" }, "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.7-dev" } }, "autoload": { @@ -2445,7 +2723,11 @@ "uri", "url" ], - "time": "2019-07-01T23:21:34+00:00" + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.8.1" + }, + "time": "2021-03-21T16:25:00+00:00" }, { "name": "illuminate/bus", @@ -2490,6 +2772,10 @@ ], "description": "The Illuminate Bus package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -2539,6 +2825,10 @@ ], "description": "The Illuminate Cache package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -2583,6 +2873,10 @@ ], "description": "The Illuminate Config package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -2633,6 +2927,10 @@ ], "description": "The Illuminate Console package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -2678,6 +2976,10 @@ ], "description": "The Illuminate Container package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -2722,6 +3024,10 @@ ], "description": "The Illuminate Contracts package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-12T07:46:48+00:00" }, { @@ -2781,6 +3087,10 @@ "orm", "sql" ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-20T03:55:15+00:00" }, { @@ -2826,6 +3136,10 @@ ], "description": "The Illuminate Events package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -2878,6 +3192,10 @@ ], "description": "The Illuminate Filesystem package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -2922,6 +3240,10 @@ ], "description": "The Illuminate Hashing package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -2975,6 +3297,10 @@ ], "description": "The Illuminate Mail package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-22T15:28:19+00:00" }, { @@ -3019,6 +3345,10 @@ ], "description": "The Illuminate Pipeline package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-24T18:58:51+00:00" }, { @@ -3077,6 +3407,10 @@ ], "description": "The Illuminate Queue package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-22T10:35:45+00:00" }, { @@ -3127,6 +3461,10 @@ ], "description": "The Illuminate Session package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -3186,6 +3524,10 @@ ], "description": "The Illuminate Support package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-12T07:57:07+00:00" }, { @@ -3231,6 +3573,10 @@ ], "description": "The Illuminate Translation package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -3281,6 +3627,10 @@ ], "description": "The Illuminate Validation package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -3329,6 +3679,10 @@ ], "description": "The Illuminate View package.", "homepage": "https://laravel.com", + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, "time": "2019-02-11T13:48:57+00:00" }, { @@ -3399,6 +3753,10 @@ "thumbnail", "watermark" ], + "support": { + "issues": "https://github.com/Intervention/image/issues", + "source": "https://github.com/Intervention/image/tree/master" + }, "time": "2019-11-02T09:15:47+00:00" }, { @@ -3444,6 +3802,10 @@ } ], "description": "Update helper", + "support": { + "issues": "https://github.com/kylekatarnls/update-helper/issues", + "source": "https://github.com/kylekatarnls/update-helper/tree/1.2.1" + }, "funding": [ { "url": "https://github.com/kylekatarnls", @@ -3533,40 +3895,48 @@ "psr", "psr-7" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-diactoros/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-diactoros/issues", + "rss": "https://github.com/laminas/laminas-diactoros/releases.atom", + "source": "https://github.com/laminas/laminas-diactoros" + }, "time": "2020-03-23T15:28:28+00:00" }, { "name": "laminas/laminas-escaper", - "version": "2.6.1", + "version": "2.7.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-escaper.git", - "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70" + "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70", - "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70", + "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5", + "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ~8.0.0" }, "replace": { - "zendframework/zend-escaper": "self.version" + "zendframework/zend-escaper": "^2.6.1" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpunit/phpunit": "^9.3", + "psalm/plugin-phpunit": "^0.12.2", + "vimeo/psalm": "^3.16" + }, + "suggest": { + "ext-iconv": "*", + "ext-mbstring": "*" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.6.x-dev", - "dev-develop": "2.7.x-dev" - } - }, "autoload": { "psr-4": { "Laminas\\Escaper\\": "src/" @@ -3582,25 +3952,39 @@ "escaper", "laminas" ], - "time": "2019-12-31T16:43:30+00:00" + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-escaper/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-escaper/issues", + "rss": "https://github.com/laminas/laminas-escaper/releases.atom", + "source": "https://github.com/laminas/laminas-escaper" + }, + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-11-17T21:26:43+00:00" }, { "name": "laminas/laminas-httphandlerrunner", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-httphandlerrunner.git", - "reference": "e1a5dad040e0043135e8095ee27d1fbf6fb640e1" + "reference": "e8f850bd12cb82b268ff235fe74b2df906e8bfe8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-httphandlerrunner/zipball/e1a5dad040e0043135e8095ee27d1fbf6fb640e1", - "reference": "e1a5dad040e0043135e8095ee27d1fbf6fb640e1", + "url": "https://api.github.com/repos/laminas/laminas-httphandlerrunner/zipball/e8f850bd12cb82b268ff235fe74b2df906e8bfe8", + "reference": "e8f850bd12cb82b268ff235fe74b2df906e8bfe8", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^7.1", + "php": "^7.3 || ~8.0.0", "psr/http-message": "^1.0", "psr/http-message-implementation": "^1.0", "psr/http-server-handler": "^1.0" @@ -3610,15 +3994,11 @@ }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", - "laminas/laminas-diactoros": "^1.7 || ^2.1.1", - "phpunit/phpunit": "^7.0.2" + "laminas/laminas-diactoros": "^2.1.1", + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.2.x-dev", - "dev-develop": "1.3.x-dev" - }, "laminas": { "config-provider": "Laminas\\HttpHandlerRunner\\ConfigProvider" } @@ -3641,33 +4021,41 @@ "psr-15", "psr-7" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-httphandlerrunner/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-httphandlerrunner/issues", + "rss": "https://github.com/laminas/laminas-httphandlerrunner/releases.atom", + "source": "https://github.com/laminas/laminas-httphandlerrunner" + }, "funding": [ { "url": "https://funding.communitybridge.org/projects/laminas-project", "type": "community_bridge" } ], - "time": "2020-06-03T15:52:17+00:00" + "time": "2020-11-19T17:12:59+00:00" }, { "name": "laminas/laminas-stratigility", - "version": "3.2.2", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-stratigility.git", - "reference": "3f88aa174324bc9e6dd55715f401f9f25dbd722c" + "reference": "d6336b873fe8f766f84b82164f2a25e4decd6a9a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stratigility/zipball/3f88aa174324bc9e6dd55715f401f9f25dbd722c", - "reference": "3f88aa174324bc9e6dd55715f401f9f25dbd722c", + "url": "https://api.github.com/repos/laminas/laminas-stratigility/zipball/d6336b873fe8f766f84b82164f2a25e4decd6a9a", + "reference": "d6336b873fe8f766f84b82164f2a25e4decd6a9a", "shasum": "" }, "require": { "fig/http-message-util": "^1.1", "laminas/laminas-escaper": "^2.3", "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^7.1", + "php": "^7.3 || ~8.0.0", "psr/http-message": "^1.0", "psr/http-server-middleware": "^1.0" }, @@ -3681,18 +4069,14 @@ "laminas/laminas-coding-standard": "~1.0.0", "laminas/laminas-diactoros": "^1.7.1", "malukenho/docheader": "^0.1.6", - "phpunit/phpunit": "^7.0.1" + "phpspec/prophecy": "^1.12", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.3" }, "suggest": { "psr/http-message-implementation": "Please install a psr/http-message-implementation to consume Stratigility; e.g., laminas/laminas-diactoros" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.2.x-dev", - "dev-develop": "3.3.x-dev" - } - }, "autoload": { "files": [ "src/functions/double-pass-middleware.php", @@ -3721,35 +4105,47 @@ "psr-15", "psr-7" ], - "time": "2020-03-29T13:31:02+00:00" + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-stratigility/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-stratigility/issues", + "rss": "https://github.com/laminas/laminas-stratigility/releases.atom", + "source": "https://github.com/laminas/laminas-stratigility" + }, + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-10-20T10:38:04+00:00" }, { "name": "laminas/laminas-zendframework-bridge", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-zendframework-bridge.git", - "reference": "4939c81f63a8a4968c108c440275c94955753b19" + "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/4939c81f63a8a4968c108c440275c94955753b19", - "reference": "4939c81f63a8a4968c108c440275c94955753b19", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6cccbddfcfc742eb02158d6137ca5687d92cee32", + "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0 || ^8.0" + "php": "^7.3 || ^8.0" }, "require-dev": { "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3", - "squizlabs/php_codesniffer": "^3.5" + "psalm/plugin-phpunit": "^0.15.1", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.6" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev", - "dev-develop": "1.1.x-dev" - }, "laminas": { "module": "Laminas\\ZendFrameworkBridge" } @@ -3773,26 +4169,32 @@ "laminas", "zf" ], + "support": { + "forum": "https://discourse.laminas.dev/", + "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues", + "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom", + "source": "https://github.com/laminas/laminas-zendframework-bridge" + }, "funding": [ { "url": "https://funding.communitybridge.org/projects/laminas-project", "type": "community_bridge" } ], - "time": "2020-08-18T16:34:51+00:00" + "time": "2021-02-25T21:54:58+00:00" }, { "name": "league/flysystem", - "version": "1.1.2", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "63cd8c14708b9544d3f61d3c15b747fda1c95c6e" + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/63cd8c14708b9544d3f61d3c15b747fda1c95c6e", - "reference": "63cd8c14708b9544d3f61d3c15b747fda1c95c6e", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a", + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a", "shasum": "" }, "require": { @@ -3864,26 +4266,30 @@ "sftp", "storage" ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/1.x" + }, "funding": [ { "url": "https://offset.earth/frankdejonge", "type": "other" } ], - "time": "2020-08-18T10:57:55+00:00" + "time": "2020-08-23T07:39:11+00:00" }, { "name": "league/mime-type-detection", - "version": "1.4.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "fda190b62b962d96a069fcc414d781db66d65b69" + "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/fda190b62b962d96a069fcc414d781db66d65b69", - "reference": "fda190b62b962d96a069fcc414d781db66d65b69", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", + "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", "shasum": "" }, "require": { @@ -3891,8 +4297,9 @@ "php": "^7.2 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^0.12.36", - "phpunit/phpunit": "^8.5.8" + "friendsofphp/php-cs-fixer": "^2.18", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3" }, "type": "library", "autoload": { @@ -3911,6 +4318,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.7.0" + }, "funding": [ { "url": "https://github.com/frankdejonge", @@ -3921,40 +4332,48 @@ "type": "tidelift" } ], - "time": "2020-08-09T10:34:01+00:00" + "time": "2021-01-18T20:58:21+00:00" }, { "name": "league/oauth1-client", - "version": "1.7.0", + "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth1-client.git", - "reference": "fca5f160650cb74d23fc11aa570dd61f86dcf647" + "reference": "1e7e6be2dc543bf466236fb171e5b20e1b06aee6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/fca5f160650cb74d23fc11aa570dd61f86dcf647", - "reference": "fca5f160650cb74d23fc11aa570dd61f86dcf647", + "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/1e7e6be2dc543bf466236fb171e5b20e1b06aee6", + "reference": "1e7e6be2dc543bf466236fb171e5b20e1b06aee6", "shasum": "" }, "require": { - "guzzlehttp/guzzle": "^6.0", - "php": ">=5.5.0" + "ext-json": "*", + "ext-openssl": "*", + "guzzlehttp/guzzle": "^6.0|^7.0", + "php": ">=7.1||>=8.0" }, "require-dev": { - "mockery/mockery": "^0.9", - "phpunit/phpunit": "^4.0", - "squizlabs/php_codesniffer": "^2.0" + "ext-simplexml": "*", + "friendsofphp/php-cs-fixer": "^2.17", + "mockery/mockery": "^1.3.3", + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5||9.5" + }, + "suggest": { + "ext-simplexml": "For decoding XML-based responses." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "1.0-dev", + "dev-develop": "2.0-dev" } }, "autoload": { "psr-4": { - "League\\OAuth1\\": "src/" + "League\\OAuth1\\Client\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -3984,33 +4403,36 @@ "tumblr", "twitter" ], - "time": "2016-08-17T00:36:58+00:00" + "support": { + "issues": "https://github.com/thephpleague/oauth1-client/issues", + "source": "https://github.com/thephpleague/oauth1-client/tree/v1.9.0" + }, + "time": "2021-01-20T01:40:53+00:00" }, { "name": "league/oauth2-client", - "version": "2.5.0", + "version": "2.6.0", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-client.git", - "reference": "d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb" + "reference": "badb01e62383430706433191b82506b6df24ad98" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb", - "reference": "d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb", + "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/badb01e62383430706433191b82506b6df24ad98", + "reference": "badb01e62383430706433191b82506b6df24ad98", "shasum": "" }, "require": { "guzzlehttp/guzzle": "^6.0 || ^7.0", - "paragonie/random_compat": "^1|^2|^9.99", - "php": "^5.6|^7.0" + "paragonie/random_compat": "^1 || ^2 || ^9.99", + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "eloquent/liberator": "^2.0", - "eloquent/phony-phpunit": "^1.0|^3.0", - "jakub-onderka/php-parallel-lint": "^0.9.2", - "phpunit/phpunit": "^5.7|^6.0", - "squizlabs/php_codesniffer": "^2.3|^3.0" + "mockery/mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpunit/phpunit": "^5.7 || ^6.0 || ^9.3", + "squizlabs/php_codesniffer": "^2.3 || ^3.0" }, "type": "library", "extra": { @@ -4051,30 +4473,34 @@ "oauth2", "single sign on" ], - "time": "2020-07-18T17:54:32+00:00" + "support": { + "issues": "https://github.com/thephpleague/oauth2-client/issues", + "source": "https://github.com/thephpleague/oauth2-client/tree/2.6.0" + }, + "time": "2020-10-28T02:03:40+00:00" }, { "name": "league/oauth2-facebook", - "version": "2.0.2", + "version": "2.0.5", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-facebook.git", - "reference": "c482a851c93a6cb718270773635d6a0c8384b560" + "reference": "14cead7580cab8caace67f5a61ea5d2a8ff213eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-facebook/zipball/c482a851c93a6cb718270773635d6a0c8384b560", - "reference": "c482a851c93a6cb718270773635d6a0c8384b560", + "url": "https://api.github.com/repos/thephpleague/oauth2-facebook/zipball/14cead7580cab8caace67f5a61ea5d2a8ff213eb", + "reference": "14cead7580cab8caace67f5a61ea5d2a8ff213eb", "shasum": "" }, "require": { "league/oauth2-client": "^2.0", - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { "ext-json": "*", "mockery/mockery": "~1.3.0", - "phpunit/phpunit": "^5.7|^6.0", + "phpunit/phpunit": "^9.4", "squizlabs/php_codesniffer": "~3.0" }, "type": "library", @@ -4103,7 +4529,11 @@ "oauth", "oauth2" ], - "time": "2020-07-25T13:30:06+00:00" + "support": { + "issues": "https://github.com/thephpleague/oauth2-facebook/issues", + "source": "https://github.com/thephpleague/oauth2-facebook/tree/2.0.5" + }, + "time": "2021-02-01T15:33:45+00:00" }, { "name": "league/oauth2-github", @@ -4158,20 +4588,24 @@ "oauth", "oauth2" ], + "support": { + "issues": "https://github.com/thephpleague/oauth2-github/issues", + "source": "https://github.com/thephpleague/oauth2-github/tree/master" + }, "time": "2017-01-26T01:14:51+00:00" }, { "name": "matthiasmullie/minify", - "version": "1.3.63", + "version": "1.3.66", "source": { "type": "git", "url": "https://github.com/matthiasmullie/minify.git", - "reference": "9ba1b459828adc13430f4dd6c49dae4950dc4117" + "reference": "45fd3b0f1dfa2c965857c6d4a470bea52adc31a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/9ba1b459828adc13430f4dd6c49dae4950dc4117", - "reference": "9ba1b459828adc13430f4dd6c49dae4950dc4117", + "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/45fd3b0f1dfa2c965857c6d4a470bea52adc31a6", + "reference": "45fd3b0f1dfa2c965857c6d4a470bea52adc31a6", "shasum": "" }, "require": { @@ -4181,8 +4615,8 @@ }, "require-dev": { "friendsofphp/php-cs-fixer": "~2.0", - "matthiasmullie/scrapbook": "~1.0", - "phpunit/phpunit": "~4.8" + "matthiasmullie/scrapbook": "dev-master", + "phpunit/phpunit": ">=4.8" }, "suggest": { "psr/cache-implementation": "Cache implementation to use with Minify::cache" @@ -4218,7 +4652,25 @@ "minifier", "minify" ], - "time": "2020-01-21T20:21:08+00:00" + "support": { + "issues": "https://github.com/matthiasmullie/minify/issues", + "source": "https://github.com/matthiasmullie/minify/tree/1.3.66" + }, + "funding": [ + { + "url": "https://github.com/[user1", + "type": "github" + }, + { + "url": "https://github.com/matthiasmullie] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g.", + "type": "github" + }, + { + "url": "https://github.com/user2", + "type": "github" + } + ], + "time": "2021-01-06T15:18:10+00:00" }, { "name": "matthiasmullie/path-converter", @@ -4267,6 +4719,10 @@ "paths", "relative" ], + "support": { + "issues": "https://github.com/matthiasmullie/path-converter/issues", + "source": "https://github.com/matthiasmullie/path-converter/tree/1.1.3" + }, "time": "2019-02-05T23:41:09+00:00" }, { @@ -4313,6 +4769,10 @@ "psr-7", "server" ], + "support": { + "issues": "https://github.com/middlewares/base-path/issues", + "source": "https://github.com/middlewares/base-path/tree/master" + }, "time": "2018-08-04T10:41:46+00:00" }, { @@ -4360,6 +4820,10 @@ "routing", "server" ], + "support": { + "issues": "https://github.com/middlewares/base-path-router/issues", + "source": "https://github.com/middlewares/base-path-router/tree/v0.2.1" + }, "time": "2018-08-22T06:53:04+00:00" }, { @@ -4415,6 +4879,10 @@ "request", "server" ], + "support": { + "issues": "https://github.com/middlewares/request-handler/issues", + "source": "https://github.com/middlewares/request-handler/tree/master" + }, "time": "2018-10-25T22:59:24+00:00" }, { @@ -4466,20 +4934,24 @@ "psr-17", "psr-7" ], + "support": { + "issues": "https://github.com/middlewares/utils/issues", + "source": "https://github.com/middlewares/utils/tree/v2.2.0" + }, "time": "2019-03-05T22:06:37+00:00" }, { "name": "monolog/monolog", - "version": "1.25.5", + "version": "1.26.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0" + "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0", - "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/2209ddd84e7ef1256b7af205d0717fb62cfc9c33", + "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33", "shasum": "" }, "require": { @@ -4495,7 +4967,7 @@ "graylog2/gelf-php": "~1.0", "php-amqplib/php-amqplib": "~2.4", "php-console/php-console": "^3.1.3", - "php-parallel-lint/php-parallel-lint": "^1.0", + "phpstan/phpstan": "^0.12.59", "phpunit/phpunit": "~4.5", "ruflin/elastica": ">=0.90 <3.0", "sentry/sentry": "^0.13", @@ -4515,11 +4987,6 @@ "sentry/sentry": "Allow sending log messages to a Sentry server" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, "autoload": { "psr-4": { "Monolog\\": "src/Monolog" @@ -4543,6 +5010,10 @@ "logging", "psr-3" ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/1.26.0" + }, "funding": [ { "url": "https://github.com/Seldaek", @@ -4553,7 +5024,7 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:35:51+00:00" + "time": "2020-12-14T12:56:38+00:00" }, { "name": "nesbot/carbon", @@ -4614,6 +5085,10 @@ "datetime", "time" ], + "support": { + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, "time": "2019-10-14T05:51:36+00:00" }, { @@ -4657,33 +5132,37 @@ "router", "routing" ], + "support": { + "issues": "https://github.com/nikic/FastRoute/issues", + "source": "https://github.com/nikic/FastRoute/tree/master" + }, "time": "2015-06-18T19:15:47+00:00" }, { "name": "opis/closure", - "version": "3.5.6", + "version": "3.6.1", "source": { "type": "git", "url": "https://github.com/opis/closure.git", - "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9" + "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/opis/closure/zipball/e8d34df855b0a0549a300cb8cb4db472556e8aa9", - "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9", + "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5", + "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5", "shasum": "" }, "require": { - "php": "^5.4 || ^7.0" + "php": "^5.4 || ^7.0 || ^8.0" }, "require-dev": { "jeremeamia/superclosure": "^2.0", - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.5.x-dev" + "dev-master": "3.6.x-dev" } }, "autoload": { @@ -4718,7 +5197,11 @@ "serialization", "serialize" ], - "time": "2020-08-11T08:46:50+00:00" + "support": { + "issues": "https://github.com/opis/closure/issues", + "source": "https://github.com/opis/closure/tree/3.6.1" + }, + "time": "2020-11-07T02:01:34+00:00" }, { "name": "paragonie/random_compat", @@ -4763,31 +5246,31 @@ "pseudorandom", "random" ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, "time": "2018-07-02T15:55:56+00:00" }, { "name": "psr/container", - "version": "1.0.0", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf", + "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=7.2.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, "autoload": { "psr-4": { "Psr\\Container\\": "src/" @@ -4800,7 +5283,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common Container Interface (PHP FIG PSR-11)", @@ -4812,7 +5295,11 @@ "container-interop", "psr" ], - "time": "2017-02-14T16:28:37+00:00" + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/1.1.1" + }, + "time": "2021-03-05T17:36:06+00:00" }, { "name": "psr/http-factory", @@ -4864,6 +5351,9 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-factory/tree/master" + }, "time": "2019-04-30T12:38:16+00:00" }, { @@ -4914,6 +5404,9 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, "time": "2016-08-06T14:39:51+00:00" }, { @@ -4967,6 +5460,10 @@ "response", "server" ], + "support": { + "issues": "https://github.com/php-fig/http-server-handler/issues", + "source": "https://github.com/php-fig/http-server-handler/tree/master" + }, "time": "2018-10-30T16:46:14+00:00" }, { @@ -5020,6 +5517,10 @@ "request", "response" ], + "support": { + "issues": "https://github.com/php-fig/http-server-middleware/issues", + "source": "https://github.com/php-fig/http-server-middleware/tree/master" + }, "time": "2018-10-30T17:12:04+00:00" }, { @@ -5067,6 +5568,9 @@ "psr", "psr-3" ], + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.3" + }, "time": "2020-03-23T09:12:05+00:00" }, { @@ -5115,6 +5619,9 @@ "psr-16", "simple-cache" ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/master" + }, "time": "2017-10-23T01:57:42+00:00" }, { @@ -5159,6 +5666,10 @@ "rest", "trigger" ], + "support": { + "issues": "https://github.com/pusher/pusher-http-php/issues", + "source": "https://github.com/pusher/pusher-http-php/tree/master" + }, "time": "2017-06-06T16:41:17+00:00" }, { @@ -5199,6 +5710,10 @@ } ], "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, "time": "2019-03-08T08:55:37+00:00" }, { @@ -5286,6 +5801,12 @@ "identifier", "uuid" ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "rss": "https://github.com/ramsey/uuid/releases.atom", + "source": "https://github.com/ramsey/uuid", + "wiki": "https://github.com/ramsey/uuid/wiki" + }, "time": "2020-02-21T04:36:14+00:00" }, { @@ -5324,20 +5845,24 @@ "keywords": [ "regexp" ], + "support": { + "issues": "https://github.com/s9e/RegexpBuilder/issues", + "source": "https://github.com/s9e/RegexpBuilder/tree/1.4.4" + }, "time": "2020-01-08T02:46:22+00:00" }, { "name": "s9e/sweetdom", - "version": "1.0.1", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/s9e/SweetDOM.git", - "reference": "f3a58c723fbe04d92ebcef5c8c7913bb364f58cd" + "reference": "5fc62bc1f4756650924e5cd1b429afcf34542722" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/s9e/SweetDOM/zipball/f3a58c723fbe04d92ebcef5c8c7913bb364f58cd", - "reference": "f3a58c723fbe04d92ebcef5c8c7913bb364f58cd", + "url": "https://api.github.com/repos/s9e/SweetDOM/zipball/5fc62bc1f4756650924e5cd1b429afcf34542722", + "reference": "5fc62bc1f4756650924e5cd1b429afcf34542722", "shasum": "" }, "require": { @@ -5364,20 +5889,24 @@ "xsl", "xslt" ], - "time": "2020-05-25T15:01:02+00:00" + "support": { + "issues": "https://github.com/s9e/SweetDOM/issues", + "source": "https://github.com/s9e/SweetDOM/tree/2.0.0" + }, + "time": "2020-12-08T16:34:58+00:00" }, { "name": "s9e/text-formatter", - "version": "2.7.4", + "version": "2.8.6", "source": { "type": "git", "url": "https://github.com/s9e/TextFormatter.git", - "reference": "9a8e77826604e24deacbd280c2543b68b4ff2a84" + "reference": "e2d5fba85a92a62b477957943de3aecc0cc4d023" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/s9e/TextFormatter/zipball/9a8e77826604e24deacbd280c2543b68b4ff2a84", - "reference": "9a8e77826604e24deacbd280c2543b68b4ff2a84", + "url": "https://api.github.com/repos/s9e/TextFormatter/zipball/e2d5fba85a92a62b477957943de3aecc0cc4d023", + "reference": "e2d5fba85a92a62b477957943de3aecc0cc4d023", "shasum": "" }, "require": { @@ -5386,12 +5915,12 @@ "lib-pcre": ">=8.13", "php": ">=7.1", "s9e/regexp-builder": "^1.4", - "s9e/sweetdom": "^1.0" + "s9e/sweetdom": "^2.0" }, "require-dev": { + "code-lts/doctum": "*", "matthiasmullie/minify": "*", - "phpunit/phpunit": "*", - "sami/sami": "4.*" + "phpunit/phpunit": "*" }, "suggest": { "ext-curl": "Improves the performance of the MediaEmbed plugin and some JavaScript minifiers", @@ -5404,7 +5933,7 @@ }, "type": "library", "extra": { - "version": "2.7.4" + "version": "2.8.6" }, "autoload": { "psr-4": { @@ -5415,7 +5944,7 @@ "license": [ "MIT" ], - "description": "Multi-purpose text formatting and markup library. Plugins offer support for BBCodes, Markdown, emoticons, HTML, embedding media (YouTube, etc...), enhanced typography and more.", + "description": "Multi-purpose text formatting and markup library. Plugins offer support for BBCodes, Markdown, emoticons, HTML, embedding third-party media (YouTube, etc...), enhanced typography and more.", "homepage": "https://github.com/s9e/TextFormatter/", "keywords": [ "bbcode", @@ -5434,27 +5963,36 @@ "parser", "shortcodes" ], - "time": "2020-08-20T04:29:09+00:00" + "support": { + "issues": "https://github.com/s9e/TextFormatter/issues", + "source": "https://github.com/s9e/TextFormatter/tree/2.8.6" + }, + "time": "2021-03-29T09:41:39+00:00" }, { "name": "softcreatr/php-mime-detector", - "version": "3.0.0", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/SoftCreatR/php-mime-detector.git", - "reference": "682651747adf0196fec007c2afaedc6dd44a941f" + "reference": "61b5fc1454e248a28a545465fc02d695044ba8c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/SoftCreatR/php-mime-detector/zipball/682651747adf0196fec007c2afaedc6dd44a941f", - "reference": "682651747adf0196fec007c2afaedc6dd44a941f", + "url": "https://api.github.com/repos/SoftCreatR/php-mime-detector/zipball/61b5fc1454e248a28a545465fc02d695044ba8c3", + "reference": "61b5fc1454e248a28a545465fc02d695044ba8c3", "shasum": "" }, "require": { - "php": ">=7.1.0" + "php": ">=7.2.0" + }, + "conflict": { + "phpunit/phpunit": "<8.0 || >= 10.0" }, "require-dev": { - "phpunit/phpunit": "~7.0" + "phpunit/phpunit": ">=7.0", + "roave/security-advisories": "dev-master", + "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "autoload": { @@ -5464,12 +6002,12 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0" + "ISC" ], "authors": [ { "name": "Sascha Greuel", - "email": "sascha@softcreatr.de" + "email": "hello@1-2.dev" }, { "name": "Sebastian Zimmer", @@ -5477,42 +6015,53 @@ } ], "description": "Mime Detector Decoder", - "homepage": "https://www.softcreatr.com", + "homepage": "https://1-2.dev", "keywords": [ "Magic Number", "file type", - "mime" + "mime", + "mime type" ], - "time": "2018-10-29T19:18:29+00:00" + "support": { + "email": "hello@1-2.dev", + "issues": "https://github.com/SoftCreatR/php-mime-detector/issues", + "source": "https://github.com/SoftCreatR/php-mime-detector" + }, + "funding": [ + { + "url": "https://github.com/softcreatr", + "type": "github" + } + ], + "time": "2020-12-02T15:18:38+00:00" }, { "name": "swiftmailer/swiftmailer", - "version": "v6.2.3", + "version": "v6.2.7", "source": { "type": "git", "url": "https://github.com/swiftmailer/swiftmailer.git", - "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9" + "reference": "15f7faf8508e04471f666633addacf54c0ab5933" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9", - "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933", + "reference": "15f7faf8508e04471f666633addacf54c0ab5933", "shasum": "" }, "require": { - "egulias/email-validator": "~2.0", + "egulias/email-validator": "^2.0|^3.1", "php": ">=7.0.0", "symfony/polyfill-iconv": "^1.0", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0" }, "require-dev": { - "mockery/mockery": "~0.9.1", - "symfony/phpunit-bridge": "^3.4.19|^4.1.8" + "mockery/mockery": "^1.0", + "symfony/phpunit-bridge": "^4.4|^5.0" }, "suggest": { - "ext-intl": "Needed to support internationalized email addresses", - "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed" + "ext-intl": "Needed to support internationalized email addresses" }, "type": "library", "extra": { @@ -5545,20 +6094,34 @@ "mail", "mailer" ], - "time": "2019-11-12T09:31:26+00:00" + "support": { + "issues": "https://github.com/swiftmailer/swiftmailer/issues", + "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7" + }, + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer", + "type": "tidelift" + } + ], + "time": "2021-03-09T12:30:35+00:00" }, { "name": "symfony/config", - "version": "v3.4.43", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "9e2aa97f0d51f114983666f5aa362426d53e004a" + "reference": "bc6b3fd3930d4b53a60b42fe2ed6fc466b75f03f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/9e2aa97f0d51f114983666f5aa362426d53e004a", - "reference": "9e2aa97f0d51f114983666f5aa362426d53e004a", + "url": "https://api.github.com/repos/symfony/config/zipball/bc6b3fd3930d4b53a60b42fe2ed6fc466b75f03f", + "reference": "bc6b3fd3930d4b53a60b42fe2ed6fc466b75f03f", "shasum": "" }, "require": { @@ -5580,11 +6143,6 @@ "symfony/yaml": "To use the yaml reference dumper" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Config\\": "" @@ -5609,6 +6167,9 @@ ], "description": "Symfony Config Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/config/tree/v3.4.47" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5623,20 +6184,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T09:37:51+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/console", - "version": "v4.4.11", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02" + "reference": "1ba4560dbbb9fcf5ae28b61f71f49c678086cf23" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/55d07021da933dd0d633ffdab6f45d5b230c7e02", - "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02", + "url": "https://api.github.com/repos/symfony/console/zipball/1ba4560dbbb9fcf5ae28b61f71f49c678086cf23", + "reference": "1ba4560dbbb9fcf5ae28b61f71f49c678086cf23", "shasum": "" }, "require": { @@ -5671,11 +6232,6 @@ "symfony/process": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Console\\": "" @@ -5698,8 +6254,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Console Component", + "description": "Eases the creation of beautiful and testable command line interfaces", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/console/tree/v4.4.21" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5714,31 +6273,26 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:18:39+00:00" + "time": "2021-03-26T09:23:24+00:00" }, { "name": "symfony/css-selector", - "version": "v5.1.3", + "version": "v5.2.4", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9" + "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9", - "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f", + "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f", "shasum": "" }, "require": { "php": ">=7.2.5" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.1-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\CssSelector\\": "" @@ -5765,8 +6319,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony CssSelector Component", + "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v5.2.4" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5781,20 +6338,20 @@ "type": "tidelift" } ], - "time": "2020-05-20T17:43:50+00:00" + "time": "2021-01-27T10:01:46+00:00" }, { "name": "symfony/debug", - "version": "v4.4.11", + "version": "v4.4.20", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "47aa9064d75db36389692dd4d39895a0820f00f2" + "reference": "157bbec4fd773bae53c5483c50951a5530a2cc16" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/47aa9064d75db36389692dd4d39895a0820f00f2", - "reference": "47aa9064d75db36389692dd4d39895a0820f00f2", + "url": "https://api.github.com/repos/symfony/debug/zipball/157bbec4fd773bae53c5483c50951a5530a2cc16", + "reference": "157bbec4fd773bae53c5483c50951a5530a2cc16", "shasum": "" }, "require": { @@ -5809,11 +6366,6 @@ "symfony/http-kernel": "^3.4|^4.0|^5.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Debug\\": "" @@ -5836,8 +6388,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Debug Component", + "description": "Provides tools to ease debugging PHP code", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/debug/tree/v4.4.20" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5852,20 +6407,87 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2021-01-28T16:54:48+00:00" }, { - "name": "symfony/event-dispatcher", - "version": "v4.4.11", + "name": "symfony/deprecation-contracts", + "version": "v2.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8" + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6140fc7047dafc5abbe84ba16a34a86c0b0229b8", - "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665", + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/master" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-09-07T11:33:47+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v4.4.20", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c352647244bd376bf7d31efbd5401f13f50dad0c", + "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c", "shasum": "" }, "require": { @@ -5883,6 +6505,7 @@ "psr/log": "~1.0", "symfony/config": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/error-handler": "~3.4|~4.4", "symfony/expression-language": "^3.4|^4.0|^5.0", "symfony/http-foundation": "^3.4|^4.0|^5.0", "symfony/service-contracts": "^1.1|^2", @@ -5893,11 +6516,6 @@ "symfony/http-kernel": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\EventDispatcher\\": "" @@ -5920,8 +6538,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony EventDispatcher Component", + "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/v4.4.20" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5936,7 +6557,7 @@ "type": "tidelift" } ], - "time": "2020-06-18T17:59:13+00:00" + "time": "2021-01-27T09:09:26+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -5998,6 +6619,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6016,16 +6640,16 @@ }, { "name": "symfony/filesystem", - "version": "v4.4.11", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "b27f491309db5757816db672b256ea2e03677d30" + "reference": "940826c465be2690c9fae91b2793481e5cbd6834" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30", - "reference": "b27f491309db5757816db672b256ea2e03677d30", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/940826c465be2690c9fae91b2793481e5cbd6834", + "reference": "940826c465be2690c9fae91b2793481e5cbd6834", "shasum": "" }, "require": { @@ -6033,11 +6657,6 @@ "symfony/polyfill-ctype": "~1.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Filesystem\\": "" @@ -6060,8 +6679,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Filesystem Component", + "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/filesystem/tree/v4.4.21" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6076,31 +6698,26 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:50:54+00:00" + "time": "2021-03-28T09:59:32+00:00" }, { "name": "symfony/finder", - "version": "v4.4.11", + "version": "v4.4.20", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "2727aa35fddfada1dd37599948528e9b152eb742" + "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/2727aa35fddfada1dd37599948528e9b152eb742", - "reference": "2727aa35fddfada1dd37599948528e9b152eb742", + "url": "https://api.github.com/repos/symfony/finder/zipball/2543795ab1570df588b9bbd31e1a2bd7037b94f6", + "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6", "shasum": "" }, "require": { "php": ">=7.1.3" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Finder\\": "" @@ -6123,8 +6740,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Finder Component", + "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v4.4.20" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6139,37 +6759,33 @@ "type": "tidelift" } ], - "time": "2020-07-05T09:39:30+00:00" + "time": "2021-02-12T10:48:09+00:00" }, { "name": "symfony/http-foundation", - "version": "v4.4.11", + "version": "v4.4.20", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "3675676b6a47f3e71d3ab10bcf53fb9239eb77e6" + "reference": "02d968647fe61b2f419a8dc70c468a9d30a48d3a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3675676b6a47f3e71d3ab10bcf53fb9239eb77e6", - "reference": "3675676b6a47f3e71d3ab10bcf53fb9239eb77e6", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/02d968647fe61b2f419a8dc70c468a9d30a48d3a", + "reference": "02d968647fe61b2f419a8dc70c468a9d30a48d3a", "shasum": "" }, "require": { "php": ">=7.1.3", "symfony/mime": "^4.3|^5.0", - "symfony/polyfill-mbstring": "~1.1" + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php80": "^1.15" }, "require-dev": { "predis/predis": "~1.0", "symfony/expression-language": "^3.4|^4.0|^5.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\HttpFoundation\\": "" @@ -6192,8 +6808,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony HttpFoundation Component", + "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v4.4.20" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6208,41 +6827,44 @@ "type": "tidelift" } ], - "time": "2020-07-23T09:48:09+00:00" + "time": "2021-02-25T17:11:33+00:00" }, { "name": "symfony/mime", - "version": "v5.1.3", + "version": "v5.2.6", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "149fb0ad35aae3c7637b496b38478797fa6a7ea6" + "reference": "1b2092244374cbe48ae733673f2ca0818b37197b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/149fb0ad35aae3c7637b496b38478797fa6a7ea6", - "reference": "149fb0ad35aae3c7637b496b38478797fa6a7ea6", + "url": "https://api.github.com/repos/symfony/mime/zipball/1b2092244374cbe48ae733673f2ca0818b37197b", + "reference": "1b2092244374cbe48ae733673f2ca0818b37197b", "shasum": "" }, "require": { "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0", "symfony/polyfill-php80": "^1.15" }, "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", "symfony/mailer": "<4.4" }, "require-dev": { - "egulias/email-validator": "^2.1.10", - "symfony/dependency-injection": "^4.4|^5.0" + "egulias/email-validator": "^2.1.10|^3.1", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/property-access": "^4.4|^5.1", + "symfony/property-info": "^4.4|^5.1", + "symfony/serializer": "^5.2" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.1-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Mime\\": "" @@ -6265,12 +6887,15 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "A library to manipulate MIME messages", + "description": "Allows manipulating MIME messages", "homepage": "https://symfony.com", "keywords": [ "mime", "mime-type" ], + "support": { + "source": "https://github.com/symfony/mime/tree/v5.2.6" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6285,24 +6910,24 @@ "type": "tidelift" } ], - "time": "2020-07-23T10:04:31+00:00" + "time": "2021-03-12T13:18:39+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.18.1", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "1c302646f6efc070cd46856e600e5e0684d6b454" + "reference": "c6c942b1ac76c82448322025e084cadc56048b4e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454", - "reference": "1c302646f6efc070cd46856e600e5e0684d6b454", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e", + "reference": "c6c942b1ac76c82448322025e084cadc56048b4e", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { "ext-ctype": "For best performance" @@ -6310,7 +6935,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6347,6 +6972,9 @@ "polyfill", "portable" ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6361,24 +6989,24 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.18.1", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36" + "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36", - "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/06fb361659649bcfd6a208a0f1fcaf4e827ad342", + "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { "ext-iconv": "For best performance" @@ -6386,7 +7014,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6424,6 +7052,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6438,26 +7069,25 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2021-01-22T09:19:47+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.18.1", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251" + "reference": "2d63434d922daf7da8dd863e7907e67ee3031483" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251", - "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483", + "reference": "2d63434d922daf7da8dd863e7907e67ee3031483", "shasum": "" }, "require": { - "php": ">=5.3.3", + "php": ">=7.1", "symfony/polyfill-intl-normalizer": "^1.10", - "symfony/polyfill-php70": "^1.10", "symfony/polyfill-php72": "^1.10" }, "suggest": { @@ -6466,7 +7096,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6509,6 +7139,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6523,24 +7156,24 @@ "type": "tidelift" } ], - "time": "2020-08-04T06:02:08+00:00" + "time": "2021-01-22T09:19:47+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.18.1", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e" + "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e", - "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248", + "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { "ext-intl": "For best performance" @@ -6548,7 +7181,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6590,6 +7223,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6604,24 +7240,24 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2021-01-22T09:19:47+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.18.1", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a" + "reference": "5232de97ee3b75b0360528dae24e73db49566ab1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a", - "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1", + "reference": "5232de97ee3b75b0360528dae24e73db49566ab1", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { "ext-mbstring": "For best performance" @@ -6629,7 +7265,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6667,6 +7303,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6681,106 +7320,29 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" - }, - { - "name": "symfony/polyfill-php70", - "version": "v1.18.1", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php70.git", - "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3", - "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3", - "shasum": "" - }, - "require": { - "paragonie/random_compat": "~1.0|~2.0|~9.99", - "php": ">=5.3.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.18-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php70\\": "" - }, - "files": [ - "bootstrap.php" - ], - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2021-01-22T09:19:47+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.18.1", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "639447d008615574653fb3bc60d1986d7172eaae" + "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae", - "reference": "639447d008615574653fb3bc60d1986d7172eaae", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", + "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6817,6 +7379,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6831,29 +7396,29 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.18.1", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca" + "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca", - "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2", + "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6893,6 +7458,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6907,29 +7475,29 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.18.1", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981" + "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981", - "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91", + "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91", "shasum": "" }, "require": { - "php": ">=7.0.8" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.18-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -6973,6 +7541,9 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -6987,31 +7558,26 @@ "type": "tidelift" } ], - "time": "2020-07-14T12:35:20+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/process", - "version": "v4.4.11", + "version": "v4.4.20", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479" + "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479", - "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479", + "url": "https://api.github.com/repos/symfony/process/zipball/7e950b6366d4da90292c2e7fa820b3c1842b965a", + "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a", "shasum": "" }, "require": { "php": ">=7.1.3" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Process\\": "" @@ -7034,8 +7600,11 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Process Component", + "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v4.4.20" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7050,20 +7619,20 @@ "type": "tidelift" } ], - "time": "2020-07-23T08:31:43+00:00" + "time": "2021-01-27T09:09:26+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.1.3", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442" + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442", - "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1", + "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1", "shasum": "" }, "require": { @@ -7076,7 +7645,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" }, "thanks": { "name": "symfony/contracts", @@ -7112,6 +7681,9 @@ "interoperability", "standards" ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/master" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7126,20 +7698,20 @@ "type": "tidelift" } ], - "time": "2020-07-06T13:23:11+00:00" + "time": "2020-09-07T11:33:47+00:00" }, { "name": "symfony/translation", - "version": "v3.4.43", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "600b84224bf482441cd4d0026eba78755d2e2b34" + "reference": "be83ee6c065cb32becdb306ba61160d598b1ce88" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/600b84224bf482441cd4d0026eba78755d2e2b34", - "reference": "600b84224bf482441cd4d0026eba78755d2e2b34", + "url": "https://api.github.com/repos/symfony/translation/zipball/be83ee6c065cb32becdb306ba61160d598b1ce88", + "reference": "be83ee6c065cb32becdb306ba61160d598b1ce88", "shasum": "" }, "require": { @@ -7167,11 +7739,6 @@ "symfony/yaml": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Translation\\": "" @@ -7196,6 +7763,9 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v3.4.47" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7210,20 +7780,20 @@ "type": "tidelift" } ], - "time": "2020-07-16T09:41:49+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/yaml", - "version": "v3.4.43", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "e7fa05917ae931332a42d65b577ece4d497aad81" + "reference": "88289caa3c166321883f67fe5130188ebbb47094" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/e7fa05917ae931332a42d65b577ece4d497aad81", - "reference": "e7fa05917ae931332a42d65b577ece4d497aad81", + "url": "https://api.github.com/repos/symfony/yaml/zipball/88289caa3c166321883f67fe5130188ebbb47094", + "reference": "88289caa3c166321883f67fe5130188ebbb47094", "shasum": "" }, "require": { @@ -7240,11 +7810,6 @@ "symfony/console": "For validating YAML files using the lint command" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Yaml\\": "" @@ -7269,6 +7834,9 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v3.4.47" + }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -7283,7 +7851,7 @@ "type": "tidelift" } ], - "time": "2020-07-23T09:37:51+00:00" + "time": "2020-10-24T10:57:07+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -7332,6 +7900,10 @@ ], "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3" + }, "time": "2020-07-13T06:12:54+00:00" }, { @@ -7382,28 +7954,34 @@ "jsonapi", "standard" ], + "support": { + "issues": "https://github.com/tobscure/json-api/issues", + "source": "https://github.com/tobscure/json-api/tree/master" + }, "time": "2016-03-31T09:25:28+00:00" }, { "name": "wikimedia/less.php", - "version": "v3.0.0", + "version": "v3.1.0", "source": { "type": "git", "url": "https://github.com/wikimedia/less.php.git", - "reference": "5e2a4fba9304915c4cbf98cc9cb665a5c365c351" + "reference": "a486d78b9bd16b72f237fc6093aa56d69ce8bd13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wikimedia/less.php/zipball/5e2a4fba9304915c4cbf98cc9cb665a5c365c351", - "reference": "5e2a4fba9304915c4cbf98cc9cb665a5c365c351", + "url": "https://api.github.com/repos/wikimedia/less.php/zipball/a486d78b9bd16b72f237fc6093aa56d69ce8bd13", + "reference": "a486d78b9bd16b72f237fc6093aa56d69ce8bd13", "shasum": "" }, "require": { "php": ">=7.2.9" }, "require-dev": { - "jakub-onderka/php-parallel-lint": "1.0.0", + "mediawiki/mediawiki-codesniffer": "34.0.0", "mediawiki/minus-x": "1.0.0", + "php-parallel-lint/php-console-highlighter": "0.5.0", + "php-parallel-lint/php-parallel-lint": "1.2.0", "phpunit/phpunit": "^8.5" }, "bin": [ @@ -7445,7 +8023,11 @@ "php", "stylesheet" ], - "time": "2020-03-11T23:01:29+00:00" + "support": { + "issues": "https://github.com/wikimedia/less.php/issues", + "source": "https://github.com/wikimedia/less.php/tree/v3.1.0" + }, + "time": "2020-12-11T19:33:31+00:00" } ], "packages-dev": [], @@ -7456,5 +8038,5 @@ "prefer-lowest": false, "platform": [], "platform-dev": [], - "plugin-api-version": "1.1.0" + "plugin-api-version": "2.0.0" } diff --git a/nixbld-etc-nixos/flarum/default.nix b/nixbld-etc-nixos/flarum/default.nix index 54f279d..0df6cda 100644 --- a/nixbld-etc-nixos/flarum/default.nix +++ b/nixbld-etc-nixos/flarum/default.nix @@ -4,10 +4,10 @@ let composerEnv = import ./composer-env.nix { - inherit (pkgs) stdenv writeTextFile fetchurl php unzip phpPackages; + inherit (pkgs) stdenv lib writeTextFile fetchurl php unzip phpPackages; }; in import ./php-packages.nix { inherit composerEnv noDev; inherit (pkgs) fetchurl fetchgit fetchhg fetchsvn; -} \ No newline at end of file +} diff --git a/nixbld-etc-nixos/flarum/php-packages.nix b/nixbld-etc-nixos/flarum/php-packages.nix index 69715a3..1945662 100644 --- a/nixbld-etc-nixos/flarum/php-packages.nix +++ b/nixbld-etc-nixos/flarum/php-packages.nix @@ -7,7 +7,7 @@ let src = composerEnv.buildZipPackage { name = "axy-backtrace-c6c7d0f3497a07ae934f9e8511cbc2286db311c5"; src = fetchurl { - url = https://api.github.com/repos/axypro/backtrace/zipball/c6c7d0f3497a07ae934f9e8511cbc2286db311c5; + url = "https://api.github.com/repos/axypro/backtrace/zipball/c6c7d0f3497a07ae934f9e8511cbc2286db311c5"; sha256 = "0m6apdlimay8jc2migzl53v7c28b9xw15ify7hy3xr15wawf503n"; }; }; @@ -17,7 +17,7 @@ let src = composerEnv.buildZipPackage { name = "axy-codecs-base64vlq-53a1957f2cb773c6533ac615b3f1ac59e40e13cc"; src = fetchurl { - url = https://api.github.com/repos/axypro/codecs-base64vlq/zipball/53a1957f2cb773c6533ac615b3f1ac59e40e13cc; + url = "https://api.github.com/repos/axypro/codecs-base64vlq/zipball/53a1957f2cb773c6533ac615b3f1ac59e40e13cc"; sha256 = "1wzgh1cfkz7wz9jzi56mkgr57x9yxcrmw8qhl5bbsmf5fjbypq98"; }; }; @@ -27,7 +27,7 @@ let src = composerEnv.buildZipPackage { name = "axy-errors-2c64374ae2b9ca51304c09b6b6acc275557fc34f"; src = fetchurl { - url = https://api.github.com/repos/axypro/errors/zipball/2c64374ae2b9ca51304c09b6b6acc275557fc34f; + url = "https://api.github.com/repos/axypro/errors/zipball/2c64374ae2b9ca51304c09b6b6acc275557fc34f"; sha256 = "01nhzh53f88p0pzjd96wfgk61y604h9051giwh74qxrw2fmc7a7r"; }; }; @@ -37,7 +37,7 @@ let src = composerEnv.buildZipPackage { name = "axy-sourcemap-95a52df5a08c3a011031dae2e79390134e28467c"; src = fetchurl { - url = https://api.github.com/repos/axypro/sourcemap/zipball/95a52df5a08c3a011031dae2e79390134e28467c; + url = "https://api.github.com/repos/axypro/sourcemap/zipball/95a52df5a08c3a011031dae2e79390134e28467c"; sha256 = "05v1c6nkmzfffqy33x56alsxcpkjg5n4x83cpk0mpk8hzk6rprpz"; }; }; @@ -47,7 +47,7 @@ let src = composerEnv.buildZipPackage { name = "components-font-awesome-1be57c473b964c8130f2dbd9edc4f64db5394114"; src = fetchurl { - url = https://api.github.com/repos/components/font-awesome/zipball/1be57c473b964c8130f2dbd9edc4f64db5394114; + url = "https://api.github.com/repos/components/font-awesome/zipball/1be57c473b964c8130f2dbd9edc4f64db5394114"; sha256 = "04881xx5xwz7qr0g3d1vw16yyn0qv9rkycb2kn4shkkl7l94vxh2"; }; }; @@ -57,7 +57,7 @@ let src = composerEnv.buildZipPackage { name = "dflydev-fig-cookies-883233c159d00d39e940bd12cfe42c0d23420c1c"; src = fetchurl { - url = https://api.github.com/repos/dflydev/dflydev-fig-cookies/zipball/883233c159d00d39e940bd12cfe42c0d23420c1c; + url = "https://api.github.com/repos/dflydev/dflydev-fig-cookies/zipball/883233c159d00d39e940bd12cfe42c0d23420c1c"; sha256 = "14ajs56lqk6ljdag46y1fhy6fc87nr735rgysvw6955r99npnxds"; }; }; @@ -67,7 +67,7 @@ let src = composerEnv.buildZipPackage { name = "doctrine-cache-13e3381b25847283a91948d04640543941309727"; src = fetchurl { - url = https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727; + url = "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727"; sha256 = "088fxbpjssp8x95qr3ip2iynxrimimrby03xlsvp2254vcyx94c5"; }; }; @@ -75,10 +75,20 @@ let "doctrine/dbal" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "doctrine-dbal-aab745e7b6b2de3b47019da81e7225e14dcfdac8"; + name = "doctrine-dbal-67d56d3203b33db29834e6b2fcdbfdc50535d796"; src = fetchurl { - url = https://api.github.com/repos/doctrine/dbal/zipball/aab745e7b6b2de3b47019da81e7225e14dcfdac8; - sha256 = "04c6r4p1b0iknjk95hpc4fsyxg8s2x1skfmnx2g11z64jvldzs62"; + url = "https://api.github.com/repos/doctrine/dbal/zipball/67d56d3203b33db29834e6b2fcdbfdc50535d796"; + sha256 = "0641vvwxvv9bqbrnissm0fv1wdhzrplcfivffwhzbbgjj73vn43r"; + }; + }; + }; + "doctrine/deprecations" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "doctrine-deprecations-9504165960a1f83cc1480e2be1dd0a0478561314"; + src = fetchurl { + url = "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314"; + sha256 = "04kpbzk5iw86imspkg7dgs54xx877k9b5q0dfg2h119mlfkvxil6"; }; }; }; @@ -87,7 +97,7 @@ let src = composerEnv.buildZipPackage { name = "doctrine-event-manager-41370af6a30faa9dc0368c4a6814d596e81aba7f"; src = fetchurl { - url = https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f; + url = "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f"; sha256 = "0pn2aiwl4fvv6fcwar9alng2yrqy8bzc58n4bkp6y2jnpw5gp4m8"; }; }; @@ -97,7 +107,7 @@ let src = composerEnv.buildZipPackage { name = "doctrine-inflector-4650c8b30c753a76bf44fb2ed00117d6f367490c"; src = fetchurl { - url = https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c; + url = "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c"; sha256 = "13jnzwpzz63i6zipmhb22lv35l5gq6wmji0532c94331wcq5bvv9"; }; }; @@ -107,7 +117,7 @@ let src = composerEnv.buildZipPackage { name = "doctrine-lexer-e864bbf5904cb8f5bb334f99209b48018522f042"; src = fetchurl { - url = https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042; + url = "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042"; sha256 = "11lg9fcy0crb8inklajhx3kyffdbx7xzdj8kwl21xsgq9nm9iwvv"; }; }; @@ -115,10 +125,10 @@ let "egulias/email-validator" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "egulias-email-validator-840d5603eb84cc81a6a0382adac3293e57c1c64c"; + name = "egulias-email-validator-c81f18a3efb941d8c4d2e025f6183b5c6d697307"; src = fetchurl { - url = https://api.github.com/repos/egulias/EmailValidator/zipball/840d5603eb84cc81a6a0382adac3293e57c1c64c; - sha256 = "02gwz6lw5cx3ja7pvgyqx37qs4ks7ki5lwii1j8a6d7x90s4y2jy"; + url = "https://api.github.com/repos/egulias/EmailValidator/zipball/c81f18a3efb941d8c4d2e025f6183b5c6d697307"; + sha256 = "0s544zvcc6cs89rndpqwvz5705ykfr3qxmx6s96bmz56xjz9gncw"; }; }; }; @@ -127,7 +137,7 @@ let src = composerEnv.buildZipPackage { name = "erusev-parsedown-cb17b6477dfff935958ba01325f2e8a2bfa6dab3"; src = fetchurl { - url = https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3; + url = "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3"; sha256 = "1iil9v8g03m5vpxxg3a5qb2sxd1cs5c4p5i0k00cqjnjsxfrazxd"; }; }; @@ -135,20 +145,20 @@ let "fig/http-message-util" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "fig-http-message-util-3242caa9da7221a304b8f84eb9eaddae0a7cf422"; + name = "fig-http-message-util-9d94dc0154230ac39e5bf89398b324a86f63f765"; src = fetchurl { - url = https://api.github.com/repos/php-fig/http-message-util/zipball/3242caa9da7221a304b8f84eb9eaddae0a7cf422; - sha256 = "1cjbbsb8z4g340aqg8wrrc4vd9b7dksclqb7sh0xlmigjihn4shk"; + url = "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765"; + sha256 = "1cbhchmvh8alqdaf31rmwldyrpi5cgmzgair1gnjv6nxn99m3pqf"; }; }; }; "filp/whoops" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "filp-whoops-5d5fe9bb3d656b514d455645b3addc5f7ba7714d"; + name = "filp-whoops-d501fd2658d55491a2295ff600ae5978eaad7403"; src = fetchurl { - url = https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d; - sha256 = "09v5pzdjw92fi1xd4fa3h08mc55pg93za4nzd02n62x7vqp06mm8"; + url = "https://api.github.com/repos/filp/whoops/zipball/d501fd2658d55491a2295ff600ae5978eaad7403"; + sha256 = "1mpgkl7yzw9j4pxkw404fvykapr42347lyz7jgrl1ks61pk6s9v5"; }; }; }; @@ -157,7 +167,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-approval-a93aa0c490ea4e73ac9999b580734febcd9b97a5"; src = fetchurl { - url = https://api.github.com/repos/flarum/approval/zipball/a93aa0c490ea4e73ac9999b580734febcd9b97a5; + url = "https://api.github.com/repos/flarum/approval/zipball/a93aa0c490ea4e73ac9999b580734febcd9b97a5"; sha256 = "08dmk828haksw1vrnlanl6008hrk5f7x34bch416l43mvkc4dfwq"; }; }; @@ -167,7 +177,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-auth-facebook-434acf36b882b9deb0f6f1f1c1d03ad33d3e0936"; src = fetchurl { - url = https://api.github.com/repos/flarum/auth-facebook/zipball/434acf36b882b9deb0f6f1f1c1d03ad33d3e0936; + url = "https://api.github.com/repos/flarum/auth-facebook/zipball/434acf36b882b9deb0f6f1f1c1d03ad33d3e0936"; sha256 = "1m6l0mhvllm6170anil7al5yjjgnrvdgb3iippc4gli5gj7cm4v9"; }; }; @@ -177,7 +187,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-auth-github-d01b8349c49cf9807bdf9da86ff1d5f1a8d7c853"; src = fetchurl { - url = https://api.github.com/repos/flarum/auth-github/zipball/d01b8349c49cf9807bdf9da86ff1d5f1a8d7c853; + url = "https://api.github.com/repos/flarum/auth-github/zipball/d01b8349c49cf9807bdf9da86ff1d5f1a8d7c853"; sha256 = "0l91bjlkmpliqm45c9adfibnhk5dc8sx3v3r1k6ipi7v8rfa7d4v"; }; }; @@ -187,7 +197,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-auth-twitter-f96265c36ccb49e0d16734907ffd6acb6108ce75"; src = fetchurl { - url = https://api.github.com/repos/flarum/auth-twitter/zipball/f96265c36ccb49e0d16734907ffd6acb6108ce75; + url = "https://api.github.com/repos/flarum/auth-twitter/zipball/f96265c36ccb49e0d16734907ffd6acb6108ce75"; sha256 = "0mchmwvdvd7pgpn22cvgskamghhb1sispn3r6yawdzbvs6fsb44j"; }; }; @@ -197,7 +207,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-bbcode-165c47059e1f44cae56cc5462366c92ca96dcc33"; src = fetchurl { - url = https://api.github.com/repos/flarum/bbcode/zipball/165c47059e1f44cae56cc5462366c92ca96dcc33; + url = "https://api.github.com/repos/flarum/bbcode/zipball/165c47059e1f44cae56cc5462366c92ca96dcc33"; sha256 = "1l0xrjdmjywdazdffn62y9aabxg7sa67b14lhmf0mhkfg6l4lyp9"; }; }; @@ -207,7 +217,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-core-fd371c1203439810af8f6814cdff402faebf4126"; src = fetchurl { - url = https://api.github.com/repos/flarum/core/zipball/fd371c1203439810af8f6814cdff402faebf4126; + url = "https://api.github.com/repos/flarum/core/zipball/fd371c1203439810af8f6814cdff402faebf4126"; sha256 = "07rbnfj2n23p92jxxl2c879cqf5yq8pa0a14q6vyisarz2hl38d1"; }; }; @@ -217,7 +227,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-emoji-0155803b0503727c9962d3994f59e7f3d34dd629"; src = fetchurl { - url = https://api.github.com/repos/flarum/emoji/zipball/0155803b0503727c9962d3994f59e7f3d34dd629; + url = "https://api.github.com/repos/flarum/emoji/zipball/0155803b0503727c9962d3994f59e7f3d34dd629"; sha256 = "0pff0m354lrgdnmmgqmplxvw9y5s375r8bhkxykjhn4w5m7az43f"; }; }; @@ -227,7 +237,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-flags-dfa0b09545937b95010f63a122cdc16f9f23696c"; src = fetchurl { - url = https://api.github.com/repos/flarum/flags/zipball/dfa0b09545937b95010f63a122cdc16f9f23696c; + url = "https://api.github.com/repos/flarum/flags/zipball/dfa0b09545937b95010f63a122cdc16f9f23696c"; sha256 = "0xvhiqrm3q5d5bqx7s4dqhj0gqjy1ir7idxyisqw9sf49df94y0r"; }; }; @@ -237,7 +247,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-lang-english-9056fca21d357d24700aa11b98ff277f23542675"; src = fetchurl { - url = https://api.github.com/repos/flarum/lang-english/zipball/9056fca21d357d24700aa11b98ff277f23542675; + url = "https://api.github.com/repos/flarum/lang-english/zipball/9056fca21d357d24700aa11b98ff277f23542675"; sha256 = "1dhkikjc8yw64bmzx4drjx0yf1gnq46hlp609kx1m8qknvfmlnyc"; }; }; @@ -247,7 +257,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-likes-18681e5d671fdc06a9e6b8c2bef2b1cd8ecafa66"; src = fetchurl { - url = https://api.github.com/repos/flarum/likes/zipball/18681e5d671fdc06a9e6b8c2bef2b1cd8ecafa66; + url = "https://api.github.com/repos/flarum/likes/zipball/18681e5d671fdc06a9e6b8c2bef2b1cd8ecafa66"; sha256 = "109mj7gm4jy3dqj20cdah2zfymy9qnk5lp0wmh2817x88z87z6sh"; }; }; @@ -257,7 +267,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-lock-9c44e335b6e9e9d38a72c278ff6e55c904ae0864"; src = fetchurl { - url = https://api.github.com/repos/flarum/lock/zipball/9c44e335b6e9e9d38a72c278ff6e55c904ae0864; + url = "https://api.github.com/repos/flarum/lock/zipball/9c44e335b6e9e9d38a72c278ff6e55c904ae0864"; sha256 = "1b0zg7wlfk66zi9wjxijv3fyqbhj9zpa2pnvwjm4sp0i51s57761"; }; }; @@ -267,7 +277,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-markdown-0fabad5137c535f561fb6464daf61b68dc6120d7"; src = fetchurl { - url = https://api.github.com/repos/flarum/markdown/zipball/0fabad5137c535f561fb6464daf61b68dc6120d7; + url = "https://api.github.com/repos/flarum/markdown/zipball/0fabad5137c535f561fb6464daf61b68dc6120d7"; sha256 = "0y3fiwsxsgn8vms447an4nc7pmwvs5bzfkn2yg6i18l6nj01zq0y"; }; }; @@ -277,7 +287,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-mentions-63e203b608bd86b6d0fbd9db189227a2d54bf12f"; src = fetchurl { - url = https://api.github.com/repos/flarum/mentions/zipball/63e203b608bd86b6d0fbd9db189227a2d54bf12f; + url = "https://api.github.com/repos/flarum/mentions/zipball/63e203b608bd86b6d0fbd9db189227a2d54bf12f"; sha256 = "1scdzgs2b2wh48imq578nwpanb9hqyzkrv0nhvrmi92ga7n8dbdb"; }; }; @@ -287,7 +297,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-pusher-0f4955004c16b9ce230307b6539b0e389d9804cd"; src = fetchurl { - url = https://api.github.com/repos/flarum/pusher/zipball/0f4955004c16b9ce230307b6539b0e389d9804cd; + url = "https://api.github.com/repos/flarum/pusher/zipball/0f4955004c16b9ce230307b6539b0e389d9804cd"; sha256 = "1a43bq4ij5j2irs12kpkafx1pdydm1h7kai8zg66w9j9jyrrxqf6"; }; }; @@ -297,7 +307,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-statistics-24f396e81e76d2ad0176d5818bea8110b1564820"; src = fetchurl { - url = https://api.github.com/repos/flarum/statistics/zipball/24f396e81e76d2ad0176d5818bea8110b1564820; + url = "https://api.github.com/repos/flarum/statistics/zipball/24f396e81e76d2ad0176d5818bea8110b1564820"; sha256 = "14ybvqx34f11qnyzvbmfnyjv9an9jf8wjv2i2zrqbm02d1ja62mh"; }; }; @@ -307,7 +317,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-sticky-683c3742833d74243e75a30417a4d61ecdb87551"; src = fetchurl { - url = https://api.github.com/repos/flarum/sticky/zipball/683c3742833d74243e75a30417a4d61ecdb87551; + url = "https://api.github.com/repos/flarum/sticky/zipball/683c3742833d74243e75a30417a4d61ecdb87551"; sha256 = "1z46zjkn89y9jrijliyijn4xycr60kpcqyk7yabm08apflghss0n"; }; }; @@ -317,7 +327,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-subscriptions-bf017e06d7e312e37ef5309b26bc2ec55263731c"; src = fetchurl { - url = https://api.github.com/repos/flarum/subscriptions/zipball/bf017e06d7e312e37ef5309b26bc2ec55263731c; + url = "https://api.github.com/repos/flarum/subscriptions/zipball/bf017e06d7e312e37ef5309b26bc2ec55263731c"; sha256 = "1mwqwqh453f2c69m23hkz23zd98k2mxqsd957ifry2yl62wv7lk0"; }; }; @@ -327,7 +337,7 @@ let src = composerEnv.buildZipPackage { name = "flarum-suspend-095f9bada0ef251f48c38a608f523bfea6eba67e"; src = fetchurl { - url = https://api.github.com/repos/flarum/suspend/zipball/095f9bada0ef251f48c38a608f523bfea6eba67e; + url = "https://api.github.com/repos/flarum/suspend/zipball/095f9bada0ef251f48c38a608f523bfea6eba67e"; sha256 = "1ji0cg7mdiqpcbk8lxc6g8wlq2hcxzfirl6dwxhmhw0hmcqwrh0i"; }; }; @@ -335,20 +345,30 @@ let "flarum/tags" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "flarum-tags-fa83f496b0004e31ef2f4fc854bfcdf6a4cfa3c3"; + name = "flarum-tags-f929d10426083fe959f37edd42edac70dc4b09fe"; src = fetchurl { - url = https://api.github.com/repos/flarum/tags/zipball/fa83f496b0004e31ef2f4fc854bfcdf6a4cfa3c3; - sha256 = "0vb47ysdfi2mlyfd3v4bqcqb6ylhv9zj8y92i3y8zkj9y65mzjcy"; + url = "https://api.github.com/repos/flarum/tags/zipball/f929d10426083fe959f37edd42edac70dc4b09fe"; + sha256 = "0hsa3yjcv09j30qwwrpbgbmwjbc6gvggms1bbgxj9mbk5412ps5v"; + }; + }; + }; + "fof/subscribed" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "fof-subscribed-e9e5b94e9914fa113e7b46443bad229079ef2ea3"; + src = fetchurl { + url = "https://api.github.com/repos/FriendsOfFlarum/subscribed/zipball/e9e5b94e9914fa113e7b46443bad229079ef2ea3"; + sha256 = "0xlvx3c5vyidvyklh37g0hrfpc2v641647lmrp049cyfngk7zhrm"; }; }; }; "fof/upload" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "fof-upload-c21fab65ce6dc6cf696de88da1359f58d59a36ca"; + name = "fof-upload-0c6bdf8078850136358725e94a10b23c44bb1906"; src = fetchurl { - url = https://api.github.com/repos/FriendsOfFlarum/upload/zipball/c21fab65ce6dc6cf696de88da1359f58d59a36ca; - sha256 = "1maha49pq2cdpn4h168qw8yvl98lsj85j33ymq395yfd4zg77ziw"; + url = "https://api.github.com/repos/FriendsOfFlarum/upload/zipball/0c6bdf8078850136358725e94a10b23c44bb1906"; + sha256 = "0szqcc47aic00w6yyppjfx0dlm8fb0m4xfbsv42hv63lbh7fjba6"; }; }; }; @@ -357,7 +377,7 @@ let src = composerEnv.buildZipPackage { name = "franzl-whoops-middleware-625a80d90b22c38d8a9372187e76ae5f844e4412"; src = fetchurl { - url = https://api.github.com/repos/franzliedke/whoops-middleware/zipball/625a80d90b22c38d8a9372187e76ae5f844e4412; + url = "https://api.github.com/repos/franzliedke/whoops-middleware/zipball/625a80d90b22c38d8a9372187e76ae5f844e4412"; sha256 = "1gmrgh1nvr62xsq3gsxashfrqw69a2qihmk9vnrdzcf198ckwnyi"; }; }; @@ -367,7 +387,7 @@ let src = composerEnv.buildZipPackage { name = "guzzlehttp-guzzle-9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"; src = fetchurl { - url = https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e; + url = "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"; sha256 = "1dlrdpil0173cmx73ghy8iis2j0lk00dzv3n166d0riky21n8djb"; }; }; @@ -375,20 +395,20 @@ let "guzzlehttp/promises" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "guzzlehttp-promises-a59da6cf61d80060647ff4d3eb2c03a2bc694646"; + name = "guzzlehttp-promises-8e7d04f1f6450fef59366c399cfad4b9383aa30d"; src = fetchurl { - url = https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646; - sha256 = "1kpl91fzalcgkcs16lpakvzcnbkry3id4ynx6xhq477p4fipdciz"; + url = "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d"; + sha256 = "158wd8nmvvl386c24lkr4jkwdhqpdj0dxdbjwh8iv6a2rgccjr2q"; }; }; }; "guzzlehttp/psr7" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "guzzlehttp-psr7-239400de7a173fe9901b9ac7c06497751f00727a"; + name = "guzzlehttp-psr7-35ea11d335fd638b5882ff1725228b3d35496ab1"; src = fetchurl { - url = https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a; - sha256 = "0mfq93x7ayix6l3v5jkk40a9hnmrxaqr9vk1r26q39d1s6292ma7"; + url = "https://api.github.com/repos/guzzle/psr7/zipball/35ea11d335fd638b5882ff1725228b3d35496ab1"; + sha256 = "1nsd7sla2jpx9kzg0lzk4kvc66d30bnkf2yfzdp7gghb67wvajfa"; }; }; }; @@ -397,7 +417,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-bus-5cad4bff635071ff07c317aad200a8c2169f264f"; src = fetchurl { - url = https://api.github.com/repos/illuminate/bus/zipball/5cad4bff635071ff07c317aad200a8c2169f264f; + url = "https://api.github.com/repos/illuminate/bus/zipball/5cad4bff635071ff07c317aad200a8c2169f264f"; sha256 = "04w0hizxkfy98rrh1r7saqw4xkab12ld621hxhnrp53q83418y4a"; }; }; @@ -407,7 +427,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-cache-7998b137cc723dd5e68846ada33f8c0143f5b10f"; src = fetchurl { - url = https://api.github.com/repos/illuminate/cache/zipball/7998b137cc723dd5e68846ada33f8c0143f5b10f; + url = "https://api.github.com/repos/illuminate/cache/zipball/7998b137cc723dd5e68846ada33f8c0143f5b10f"; sha256 = "1ka41kw2f4jbm53iap0qkpa7wi8i59h3hrw9nnvray6n1igd8py0"; }; }; @@ -417,7 +437,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-config-540e11b9ae058c9a94051d9ca6c02e40258c71fd"; src = fetchurl { - url = https://api.github.com/repos/illuminate/config/zipball/540e11b9ae058c9a94051d9ca6c02e40258c71fd; + url = "https://api.github.com/repos/illuminate/config/zipball/540e11b9ae058c9a94051d9ca6c02e40258c71fd"; sha256 = "0jl1hmlxcd953wp9ny1izjp6i2xyggj00hihkcarprplq767kcn6"; }; }; @@ -427,7 +447,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-console-0d97b6ead0cbb09140b1e8317f5a9d9f69ff9ec6"; src = fetchurl { - url = https://api.github.com/repos/illuminate/console/zipball/0d97b6ead0cbb09140b1e8317f5a9d9f69ff9ec6; + url = "https://api.github.com/repos/illuminate/console/zipball/0d97b6ead0cbb09140b1e8317f5a9d9f69ff9ec6"; sha256 = "0w42d1awawdapd21bg3icrxcrx9aw3kc0pcq0qz26i1020nn0021"; }; }; @@ -437,7 +457,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-container-8c3a75e464d59509ae88db152cab61a3f115b9ec"; src = fetchurl { - url = https://api.github.com/repos/illuminate/container/zipball/8c3a75e464d59509ae88db152cab61a3f115b9ec; + url = "https://api.github.com/repos/illuminate/container/zipball/8c3a75e464d59509ae88db152cab61a3f115b9ec"; sha256 = "1z570fxx2lfy84g1p2dz22lx44m0h7fw7vqnlfcvi3fczw579f7i"; }; }; @@ -447,7 +467,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-contracts-b63324d349a8ae2156fbc2697c1ccc85879b3803"; src = fetchurl { - url = https://api.github.com/repos/illuminate/contracts/zipball/b63324d349a8ae2156fbc2697c1ccc85879b3803; + url = "https://api.github.com/repos/illuminate/contracts/zipball/b63324d349a8ae2156fbc2697c1ccc85879b3803"; sha256 = "0g34fmhpjdw5cdx1r3dww4mym4izl3ywxy3rkxblxwb1j7328262"; }; }; @@ -457,7 +477,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-database-c0702cb8c665cab8d080a81de5a44ac672b26d62"; src = fetchurl { - url = https://api.github.com/repos/illuminate/database/zipball/c0702cb8c665cab8d080a81de5a44ac672b26d62; + url = "https://api.github.com/repos/illuminate/database/zipball/c0702cb8c665cab8d080a81de5a44ac672b26d62"; sha256 = "01lga1wghfbmax29hn0zw82zqilf7cgl2xl1sbyg0idi7ss6cq26"; }; }; @@ -467,7 +487,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-events-e48888062a9962f30c431524357b9a815b093609"; src = fetchurl { - url = https://api.github.com/repos/illuminate/events/zipball/e48888062a9962f30c431524357b9a815b093609; + url = "https://api.github.com/repos/illuminate/events/zipball/e48888062a9962f30c431524357b9a815b093609"; sha256 = "19b4p7b001wf6lskrjlnhm7yjp4viidlda9s5kh8rdqybvn2h9l5"; }; }; @@ -477,7 +497,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-filesystem-ff853e678a93996b1d0a3ddc6fc56c10bae0de30"; src = fetchurl { - url = https://api.github.com/repos/illuminate/filesystem/zipball/ff853e678a93996b1d0a3ddc6fc56c10bae0de30; + url = "https://api.github.com/repos/illuminate/filesystem/zipball/ff853e678a93996b1d0a3ddc6fc56c10bae0de30"; sha256 = "05pipw206aalma04rrky6ncglg4mnzxx1szd5wxafij2cw1pf92q"; }; }; @@ -487,7 +507,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-hashing-c56e2e6cedadeddb677702820bec3c08097b9e44"; src = fetchurl { - url = https://api.github.com/repos/illuminate/hashing/zipball/c56e2e6cedadeddb677702820bec3c08097b9e44; + url = "https://api.github.com/repos/illuminate/hashing/zipball/c56e2e6cedadeddb677702820bec3c08097b9e44"; sha256 = "014y6czr4g6pcj6lp36rhlz2dvq4yx9bsbnykwha6gximq1lk6sd"; }; }; @@ -497,7 +517,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-mail-91ac88078b481f4b8bde7403f8bcb406be70769e"; src = fetchurl { - url = https://api.github.com/repos/illuminate/mail/zipball/91ac88078b481f4b8bde7403f8bcb406be70769e; + url = "https://api.github.com/repos/illuminate/mail/zipball/91ac88078b481f4b8bde7403f8bcb406be70769e"; sha256 = "11m1xc5ll4972658gydjyf6502fd8cpcd075g7qyqr2drvmf5kjh"; }; }; @@ -507,7 +527,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-pipeline-63a6e66bfab88c9a7dd4bbb077634fac3df4aa2a"; src = fetchurl { - url = https://api.github.com/repos/illuminate/pipeline/zipball/63a6e66bfab88c9a7dd4bbb077634fac3df4aa2a; + url = "https://api.github.com/repos/illuminate/pipeline/zipball/63a6e66bfab88c9a7dd4bbb077634fac3df4aa2a"; sha256 = "1qv0iwpyi3lv6l0hgik4azicmbrr1n8sayv7s16kfg1r7wg0h6ly"; }; }; @@ -517,7 +537,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-queue-44babb781fd61c665afc865be981dd7a3b494796"; src = fetchurl { - url = https://api.github.com/repos/illuminate/queue/zipball/44babb781fd61c665afc865be981dd7a3b494796; + url = "https://api.github.com/repos/illuminate/queue/zipball/44babb781fd61c665afc865be981dd7a3b494796"; sha256 = "0lmmrgrlrzm31nsqcxq840y1r8gb9md1g1k5ign9pz3lhjwp602w"; }; }; @@ -527,7 +547,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-session-0d1233ea455b9ad50112212022ca3bcff874fa86"; src = fetchurl { - url = https://api.github.com/repos/illuminate/session/zipball/0d1233ea455b9ad50112212022ca3bcff874fa86; + url = "https://api.github.com/repos/illuminate/session/zipball/0d1233ea455b9ad50112212022ca3bcff874fa86"; sha256 = "1fg7019kiwlqgzlg4l88455294ligdlq9bjdy0nq5sl5vqjcb1ji"; }; }; @@ -537,7 +557,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-support-3e2810145f37eb89fa11759781ee88ee1c1a5262"; src = fetchurl { - url = https://api.github.com/repos/illuminate/support/zipball/3e2810145f37eb89fa11759781ee88ee1c1a5262; + url = "https://api.github.com/repos/illuminate/support/zipball/3e2810145f37eb89fa11759781ee88ee1c1a5262"; sha256 = "1agi566ybjqq6nm703wmkm1gbdnscr67aljfyqgs72fgrb4pgazd"; }; }; @@ -547,7 +567,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-translation-4875559c0f32892c4070ca1185127c71fe18b8cb"; src = fetchurl { - url = https://api.github.com/repos/illuminate/translation/zipball/4875559c0f32892c4070ca1185127c71fe18b8cb; + url = "https://api.github.com/repos/illuminate/translation/zipball/4875559c0f32892c4070ca1185127c71fe18b8cb"; sha256 = "1vhmfyn0xml78fcpiz0mkkj88hccvjp6baqrz7dg2rjarjc6b8zp"; }; }; @@ -557,7 +577,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-validation-ee897c6708685294ebaa1db8407f30a1fe62f7f3"; src = fetchurl { - url = https://api.github.com/repos/illuminate/validation/zipball/ee897c6708685294ebaa1db8407f30a1fe62f7f3; + url = "https://api.github.com/repos/illuminate/validation/zipball/ee897c6708685294ebaa1db8407f30a1fe62f7f3"; sha256 = "17bwkv09cbn6nz6dzv3hhv5rwnhcxgkpc4h15ynnp1qch9w5g9jd"; }; }; @@ -567,7 +587,7 @@ let src = composerEnv.buildZipPackage { name = "illuminate-view-e19e4e16ad309503d27845383fc533a889581739"; src = fetchurl { - url = https://api.github.com/repos/illuminate/view/zipball/e19e4e16ad309503d27845383fc533a889581739; + url = "https://api.github.com/repos/illuminate/view/zipball/e19e4e16ad309503d27845383fc533a889581739"; sha256 = "0j6wrr4w6hik3r872hmlnwpvfwp07jn1mzv326gjag0ylx8kyrwx"; }; }; @@ -577,7 +597,7 @@ let src = composerEnv.buildZipPackage { name = "intervention-image-abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"; src = fetchurl { - url = https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e; + url = "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"; sha256 = "1msfpr9bip69bmhg23ka2f43phgb6dq5z604j5psjh3xd86r6c5d"; }; }; @@ -587,7 +607,7 @@ let src = composerEnv.buildZipPackage { name = "kylekatarnls-update-helper-429be50660ed8a196e0798e5939760f168ec8ce9"; src = fetchurl { - url = https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9; + url = "https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9"; sha256 = "02lzagbgykk5bqqa203vkyh6xxblvsg6d8sfgsrzp0g228my4qpz"; }; }; @@ -597,7 +617,7 @@ let src = composerEnv.buildZipPackage { name = "laminas-laminas-diactoros-6991c1af7c8d2c8efee81b22ba97024781824aaa"; src = fetchurl { - url = https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa; + url = "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa"; sha256 = "0rby0zv1sf8yh3qr2245r6mnjvzwfiydbskghazcrjld97nhgb6y"; }; }; @@ -605,90 +625,90 @@ let "laminas/laminas-escaper" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "laminas-laminas-escaper-25f2a053eadfa92ddacb609dcbbc39362610da70"; + name = "laminas-laminas-escaper-5e04bc5ae5990b17159d79d331055e2c645e5cc5"; src = fetchurl { - url = https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70; - sha256 = "1ryp3is9rmnnb02mzr68nh5vymw3j3ycbzggc0a82r1m3d5g5ckg"; + url = "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5"; + sha256 = "0ccabdsgy9y7rki36frbx713nwkv52wn2r0p0pxv79krxfvs6zsd"; }; }; }; "laminas/laminas-httphandlerrunner" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "laminas-laminas-httphandlerrunner-e1a5dad040e0043135e8095ee27d1fbf6fb640e1"; + name = "laminas-laminas-httphandlerrunner-e8f850bd12cb82b268ff235fe74b2df906e8bfe8"; src = fetchurl { - url = https://api.github.com/repos/laminas/laminas-httphandlerrunner/zipball/e1a5dad040e0043135e8095ee27d1fbf6fb640e1; - sha256 = "0qn0ip0ahsw4y1w442yky4i5fhnddmmznbcpjyaq53jicxzgdpk1"; + url = "https://api.github.com/repos/laminas/laminas-httphandlerrunner/zipball/e8f850bd12cb82b268ff235fe74b2df906e8bfe8"; + sha256 = "1pjmfw9ppj3v402ghawa9rn5mi8y5zgxmjgy8br8ayaijckdb1py"; }; }; }; "laminas/laminas-stratigility" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "laminas-laminas-stratigility-3f88aa174324bc9e6dd55715f401f9f25dbd722c"; + name = "laminas-laminas-stratigility-d6336b873fe8f766f84b82164f2a25e4decd6a9a"; src = fetchurl { - url = https://api.github.com/repos/laminas/laminas-stratigility/zipball/3f88aa174324bc9e6dd55715f401f9f25dbd722c; - sha256 = "1lvhh2w1wyyjmxll136ia9g1kmvpjqkglrs6hdcvwjwb3abjay91"; + url = "https://api.github.com/repos/laminas/laminas-stratigility/zipball/d6336b873fe8f766f84b82164f2a25e4decd6a9a"; + sha256 = "0zdnd411hh0s5spialpw5vhas5xhwiz1fs20bj03fxi5a52zxzhl"; }; }; }; "laminas/laminas-zendframework-bridge" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "laminas-laminas-zendframework-bridge-4939c81f63a8a4968c108c440275c94955753b19"; + name = "laminas-laminas-zendframework-bridge-6cccbddfcfc742eb02158d6137ca5687d92cee32"; src = fetchurl { - url = https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/4939c81f63a8a4968c108c440275c94955753b19; - sha256 = "0ig89amx88a27bkzynwx8p40b2i20nysginy6pglq2niqjf6wih9"; + url = "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6cccbddfcfc742eb02158d6137ca5687d92cee32"; + sha256 = "10i9dk9idj2drcknglw9vzgvnk1mpnayq08yx8899q3k33bsj7vd"; }; }; }; "league/flysystem" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "league-flysystem-63cd8c14708b9544d3f61d3c15b747fda1c95c6e"; + name = "league-flysystem-9be3b16c877d477357c015cec057548cf9b2a14a"; src = fetchurl { - url = https://api.github.com/repos/thephpleague/flysystem/zipball/63cd8c14708b9544d3f61d3c15b747fda1c95c6e; - sha256 = "11px6xc87x5b7pm5fmfdnrs7qaadbvg9lbhcszgizdqwnny1c8hz"; + url = "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a"; + sha256 = "0mhlr6l75j58xwbadq30x58s67434195zlpdax6ix4nkr7fc907j"; }; }; }; "league/mime-type-detection" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "league-mime-type-detection-fda190b62b962d96a069fcc414d781db66d65b69"; + name = "league-mime-type-detection-3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"; src = fetchurl { - url = https://api.github.com/repos/thephpleague/mime-type-detection/zipball/fda190b62b962d96a069fcc414d781db66d65b69; - sha256 = "15vxpkks81cxpwjxaw5kv5gwxx897jbmf6c4jdinw46rf6qpw1b0"; + url = "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"; + sha256 = "0pmq486v2nf6672y2z53cyb3mfrxcc8n7z2ilpzz9zkkf2yb990j"; }; }; }; "league/oauth1-client" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "league-oauth1-client-fca5f160650cb74d23fc11aa570dd61f86dcf647"; + name = "league-oauth1-client-1e7e6be2dc543bf466236fb171e5b20e1b06aee6"; src = fetchurl { - url = https://api.github.com/repos/thephpleague/oauth1-client/zipball/fca5f160650cb74d23fc11aa570dd61f86dcf647; - sha256 = "19i4dhzlbda70qn1ma580b98zk7fy19w9h0w4xzjz19rx915ja4x"; + url = "https://api.github.com/repos/thephpleague/oauth1-client/zipball/1e7e6be2dc543bf466236fb171e5b20e1b06aee6"; + sha256 = "1vmzvghl4c4k9vxza50k0w28hxm88vcrcdspqp7f3vmfg5c1zav2"; }; }; }; "league/oauth2-client" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "league-oauth2-client-d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb"; + name = "league-oauth2-client-badb01e62383430706433191b82506b6df24ad98"; src = fetchurl { - url = https://api.github.com/repos/thephpleague/oauth2-client/zipball/d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb; - sha256 = "088m3gh4q0x1qa8z22001wp5xw5jxnnfk5scfn33d1d9ran221vq"; + url = "https://api.github.com/repos/thephpleague/oauth2-client/zipball/badb01e62383430706433191b82506b6df24ad98"; + sha256 = "1j2bmvy39k8wafisxdc0xn58gga5w9jpwp5hqjy51sk1s2ssws8i"; }; }; }; "league/oauth2-facebook" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "league-oauth2-facebook-c482a851c93a6cb718270773635d6a0c8384b560"; + name = "league-oauth2-facebook-14cead7580cab8caace67f5a61ea5d2a8ff213eb"; src = fetchurl { - url = https://api.github.com/repos/thephpleague/oauth2-facebook/zipball/c482a851c93a6cb718270773635d6a0c8384b560; - sha256 = "1izlavdvjh4qhb6bjv8giy99ik7vcfnx53iyash618qcdjv7aqni"; + url = "https://api.github.com/repos/thephpleague/oauth2-facebook/zipball/14cead7580cab8caace67f5a61ea5d2a8ff213eb"; + sha256 = "152k1qdgwx6n6011yil4skjwqaay9vzanjjm7jhlannbcgc6ydc0"; }; }; }; @@ -697,7 +717,7 @@ let src = composerEnv.buildZipPackage { name = "league-oauth2-github-e63d64f3ec167c09232d189c6b0c397458a99357"; src = fetchurl { - url = https://api.github.com/repos/thephpleague/oauth2-github/zipball/e63d64f3ec167c09232d189c6b0c397458a99357; + url = "https://api.github.com/repos/thephpleague/oauth2-github/zipball/e63d64f3ec167c09232d189c6b0c397458a99357"; sha256 = "1ashd92r61442jdgl5aba8dikj70y2niydi8by21fxqbwd59ajvx"; }; }; @@ -705,10 +725,10 @@ let "matthiasmullie/minify" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "matthiasmullie-minify-9ba1b459828adc13430f4dd6c49dae4950dc4117"; + name = "matthiasmullie-minify-45fd3b0f1dfa2c965857c6d4a470bea52adc31a6"; src = fetchurl { - url = https://api.github.com/repos/matthiasmullie/minify/zipball/9ba1b459828adc13430f4dd6c49dae4950dc4117; - sha256 = "1jmd09q2kkbkc263zqgqsmnjmycv1xp70xpqhxxbq61crl2ajqs7"; + url = "https://api.github.com/repos/matthiasmullie/minify/zipball/45fd3b0f1dfa2c965857c6d4a470bea52adc31a6"; + sha256 = "1cci1rrkgzbqnpl3aayirr2azis5nl6z4q9c7zxjbhq99dwlr1wv"; }; }; }; @@ -717,7 +737,7 @@ let src = composerEnv.buildZipPackage { name = "matthiasmullie-path-converter-e7d13b2c7e2f2268e1424aaed02085518afa02d9"; src = fetchurl { - url = https://api.github.com/repos/matthiasmullie/path-converter/zipball/e7d13b2c7e2f2268e1424aaed02085518afa02d9; + url = "https://api.github.com/repos/matthiasmullie/path-converter/zipball/e7d13b2c7e2f2268e1424aaed02085518afa02d9"; sha256 = "0b42v65bwds4h9y8dgqxafvkxpwjqa7y236sfknd0jbhjdr1hj3r"; }; }; @@ -727,7 +747,7 @@ let src = composerEnv.buildZipPackage { name = "middlewares-base-path-18277023b9a4acdc85479071a10f702582c3a909"; src = fetchurl { - url = https://api.github.com/repos/middlewares/base-path/zipball/18277023b9a4acdc85479071a10f702582c3a909; + url = "https://api.github.com/repos/middlewares/base-path/zipball/18277023b9a4acdc85479071a10f702582c3a909"; sha256 = "17m7k1bdbmpavanh0bajrkjhmwf1vwc8lhf6p29rw6aygl1s58b4"; }; }; @@ -737,7 +757,7 @@ let src = composerEnv.buildZipPackage { name = "middlewares-base-path-router-1706ec57dbeb7083c7ea17561041f8dc2de3b37c"; src = fetchurl { - url = https://api.github.com/repos/middlewares/base-path-router/zipball/1706ec57dbeb7083c7ea17561041f8dc2de3b37c; + url = "https://api.github.com/repos/middlewares/base-path-router/zipball/1706ec57dbeb7083c7ea17561041f8dc2de3b37c"; sha256 = "1aa8lc0pjap74sx8ri3zhm65yq24v61pcki18mgbzy5837g3kq68"; }; }; @@ -747,7 +767,7 @@ let src = composerEnv.buildZipPackage { name = "middlewares-request-handler-adcc7dd36361661bd62057a21c052643ede6c726"; src = fetchurl { - url = https://api.github.com/repos/middlewares/request-handler/zipball/adcc7dd36361661bd62057a21c052643ede6c726; + url = "https://api.github.com/repos/middlewares/request-handler/zipball/adcc7dd36361661bd62057a21c052643ede6c726"; sha256 = "0jngyfv08sbc1w3yjljpm9j9mpvgkm6i5vm3mz1gc0gzm6v180p7"; }; }; @@ -757,7 +777,7 @@ let src = composerEnv.buildZipPackage { name = "middlewares-utils-7dc49454b4fbf249226023c7b77658b6068abfbc"; src = fetchurl { - url = https://api.github.com/repos/middlewares/utils/zipball/7dc49454b4fbf249226023c7b77658b6068abfbc; + url = "https://api.github.com/repos/middlewares/utils/zipball/7dc49454b4fbf249226023c7b77658b6068abfbc"; sha256 = "1rvbcm2s9xi8gwr12glrip8kpvjdd5x0vq9vzrvmamac861dv43f"; }; }; @@ -765,10 +785,10 @@ let "monolog/monolog" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "monolog-monolog-1817faadd1846cd08be9a49e905dc68823bc38c0"; + name = "monolog-monolog-2209ddd84e7ef1256b7af205d0717fb62cfc9c33"; src = fetchurl { - url = https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0; - sha256 = "1l277wfllaaf54v61h4by6637h43i6h0va15r7m82fp6rffydgb9"; + url = "https://api.github.com/repos/Seldaek/monolog/zipball/2209ddd84e7ef1256b7af205d0717fb62cfc9c33"; + sha256 = "1brvym898mjk6yk95b9lzz35ikj1p17gq7zhr0fj1r1sday8rj4c"; }; }; }; @@ -777,7 +797,7 @@ let src = composerEnv.buildZipPackage { name = "nesbot-carbon-4be0c005164249208ce1b5ca633cd57bdd42ff33"; src = fetchurl { - url = https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33; + url = "https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33"; sha256 = "15vddmcxpzfaglb0w7y49kahppnl7df0smhwpxgy5v05c5c0093a"; }; }; @@ -787,7 +807,7 @@ let src = composerEnv.buildZipPackage { name = "nikic-fast-route-31fa86924556b80735f98b294a7ffdfb26789f22"; src = fetchurl { - url = https://api.github.com/repos/nikic/FastRoute/zipball/31fa86924556b80735f98b294a7ffdfb26789f22; + url = "https://api.github.com/repos/nikic/FastRoute/zipball/31fa86924556b80735f98b294a7ffdfb26789f22"; sha256 = "0wd29sbh0b9irn2y1qy511w5lc0qcz3r0npas02wmbxbxyv52m5k"; }; }; @@ -795,10 +815,10 @@ let "opis/closure" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "opis-closure-e8d34df855b0a0549a300cb8cb4db472556e8aa9"; + name = "opis-closure-943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"; src = fetchurl { - url = https://api.github.com/repos/opis/closure/zipball/e8d34df855b0a0549a300cb8cb4db472556e8aa9; - sha256 = "1g5fpd3gjqs0yxin6nd4z2w10gcq6isngk5x3zng6z1dw8ccqma0"; + url = "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"; + sha256 = "0y47ldgzzv22c5dnsdzqmbrsicq6acjyba0119d3dc6wa3n7zqi6"; }; }; }; @@ -807,7 +827,7 @@ let src = composerEnv.buildZipPackage { name = "paragonie-random_compat-84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"; src = fetchurl { - url = https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95; + url = "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"; sha256 = "03nsccdvcb79l64b7lsmx0n8ldf5z3v8niqr7bpp6wg401qp9p09"; }; }; @@ -815,10 +835,10 @@ let "psr/container" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "psr-container-b7ce3b176482dbbc1245ebf52b181af44c2cf55f"; + name = "psr-container-8622567409010282b7aeebe4bb841fe98b58dcaf"; src = fetchurl { - url = https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f; - sha256 = "0rkz64vgwb0gfi09klvgay4qnw993l1dc03vyip7d7m2zxi6cy4j"; + url = "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf"; + sha256 = "0qfvyfp3mli776kb9zda5cpc8cazj3prk0bg0gm254kwxyfkfrwn"; }; }; }; @@ -827,7 +847,7 @@ let src = composerEnv.buildZipPackage { name = "psr-http-factory-12ac7fcd07e5b077433f5f2bee95b3a771bf61be"; src = fetchurl { - url = https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be; + url = "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be"; sha256 = "0inbnqpc5bfhbbda9dwazsrw9xscfnc8rdx82q1qm3r446mc1vds"; }; }; @@ -837,7 +857,7 @@ let src = composerEnv.buildZipPackage { name = "psr-http-message-f6561bf28d520154e4b0ec72be95418abe6d9363"; src = fetchurl { - url = https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363; + url = "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363"; sha256 = "195dd67hva9bmr52iadr4kyp2gw2f5l51lplfiay2pv6l9y4cf45"; }; }; @@ -847,7 +867,7 @@ let src = composerEnv.buildZipPackage { name = "psr-http-server-handler-aff2f80e33b7f026ec96bb42f63242dc50ffcae7"; src = fetchurl { - url = https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7; + url = "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7"; sha256 = "0sfz1j9lxirsld0zm0bqqmxf52krjn982w3fq9n27q7mpjd33y4x"; }; }; @@ -857,7 +877,7 @@ let src = composerEnv.buildZipPackage { name = "psr-http-server-middleware-2296f45510945530b9dceb8bcedb5cb84d40c5f5"; src = fetchurl { - url = https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5; + url = "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5"; sha256 = "1r92xj2hybnxcnamxqklk5kivkgy0bi34hhsh00dnwn9wmf3s0gj"; }; }; @@ -867,7 +887,7 @@ let src = composerEnv.buildZipPackage { name = "psr-log-0f73288fd15629204f9d42b7055f72dacbe811fc"; src = fetchurl { - url = https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc; + url = "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc"; sha256 = "1npi9ggl4qll4sdxz1xgp8779ia73gwlpjxbb1f1cpl1wn4s42r4"; }; }; @@ -877,7 +897,7 @@ let src = composerEnv.buildZipPackage { name = "psr-simple-cache-408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"; src = fetchurl { - url = https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b; + url = "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"; sha256 = "1djgzclkamjxi9jy4m9ggfzgq1vqxaga2ip7l3cj88p7rwkzjxgw"; }; }; @@ -887,7 +907,7 @@ let src = composerEnv.buildZipPackage { name = "pusher-pusher-php-server-2cf2ba85e7ce3250468a1c42ab7c948a7d43839d"; src = fetchurl { - url = https://api.github.com/repos/pusher/pusher-http-php/zipball/2cf2ba85e7ce3250468a1c42ab7c948a7d43839d; + url = "https://api.github.com/repos/pusher/pusher-http-php/zipball/2cf2ba85e7ce3250468a1c42ab7c948a7d43839d"; sha256 = "16bk4yfmbzqd8z61vk6chk67kkva8s5dgn33xhyvqjk1i3w9frik"; }; }; @@ -897,7 +917,7 @@ let src = composerEnv.buildZipPackage { name = "ralouphie-getallheaders-120b605dfeb996808c31b6477290a714d356e822"; src = fetchurl { - url = https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822; + url = "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822"; sha256 = "1bv7ndkkankrqlr2b4kw7qp3fl0dxi6bp26bnim6dnlhavd6a0gg"; }; }; @@ -907,7 +927,7 @@ let src = composerEnv.buildZipPackage { name = "ramsey-uuid-7e1633a6964b48589b142d60542f9ed31bd37a92"; src = fetchurl { - url = https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92; + url = "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92"; sha256 = "0s6z2c8jvwjmxzy2kqmxqpz0val9i5r757mdwf2yc7qrwm6bwd15"; }; }; @@ -917,7 +937,7 @@ let src = composerEnv.buildZipPackage { name = "s9e-regexp-builder-605b33841a766abd40ba3d07c15d0f62b5e7f033"; src = fetchurl { - url = https://api.github.com/repos/s9e/RegexpBuilder/zipball/605b33841a766abd40ba3d07c15d0f62b5e7f033; + url = "https://api.github.com/repos/s9e/RegexpBuilder/zipball/605b33841a766abd40ba3d07c15d0f62b5e7f033"; sha256 = "1xzy85xqknrpsl9sn661rszb311civv3zh4xncf3bg2jwmc086wp"; }; }; @@ -925,90 +945,100 @@ let "s9e/sweetdom" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "s9e-sweetdom-f3a58c723fbe04d92ebcef5c8c7913bb364f58cd"; + name = "s9e-sweetdom-5fc62bc1f4756650924e5cd1b429afcf34542722"; src = fetchurl { - url = https://api.github.com/repos/s9e/SweetDOM/zipball/f3a58c723fbe04d92ebcef5c8c7913bb364f58cd; - sha256 = "1rmp5cg3j57a6wc99wgcrh81v7jmrn8crxswg53451cpiiw9fwkd"; + url = "https://api.github.com/repos/s9e/SweetDOM/zipball/5fc62bc1f4756650924e5cd1b429afcf34542722"; + sha256 = "0xdsq8l2vmq0mv7ckln9xibsf4kdf31l8cg1dr59f4bnbxr9r4gg"; }; }; }; "s9e/text-formatter" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "s9e-text-formatter-9a8e77826604e24deacbd280c2543b68b4ff2a84"; + name = "s9e-text-formatter-e2d5fba85a92a62b477957943de3aecc0cc4d023"; src = fetchurl { - url = https://api.github.com/repos/s9e/TextFormatter/zipball/9a8e77826604e24deacbd280c2543b68b4ff2a84; - sha256 = "1g0349rfwx6yq3h1lz604fiwlaik961wan1ybhshcj52y25p0xj1"; + url = "https://api.github.com/repos/s9e/TextFormatter/zipball/e2d5fba85a92a62b477957943de3aecc0cc4d023"; + sha256 = "0a8dsc5zz141f081frdvlrzjnnn0ngiaw4bi60b0l374vdvc2qfp"; }; }; }; "softcreatr/php-mime-detector" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "softcreatr-php-mime-detector-682651747adf0196fec007c2afaedc6dd44a941f"; + name = "softcreatr-php-mime-detector-61b5fc1454e248a28a545465fc02d695044ba8c3"; src = fetchurl { - url = https://api.github.com/repos/SoftCreatR/php-mime-detector/zipball/682651747adf0196fec007c2afaedc6dd44a941f; - sha256 = "0w06spmf4saw7yrgpqby9q1x87mnhx1fqgfl8y7zrglqnx2s3n9f"; + url = "https://api.github.com/repos/SoftCreatR/php-mime-detector/zipball/61b5fc1454e248a28a545465fc02d695044ba8c3"; + sha256 = "13k8yxwjinb39b8imjx7xhslg877m46203f279bwkywh7bmax9wh"; }; }; }; "swiftmailer/swiftmailer" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "swiftmailer-swiftmailer-149cfdf118b169f7840bbe3ef0d4bc795d1780c9"; + name = "swiftmailer-swiftmailer-15f7faf8508e04471f666633addacf54c0ab5933"; src = fetchurl { - url = https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9; - sha256 = "0kscflkky6h7p7ambsf19rywnlnqslc503958cyriq5lg91nj9ri"; + url = "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933"; + sha256 = "1xiisdaxlmkzi16szh7lm3ay9vr9pdz0q2ah7vqaqrm2b4mwd90g"; }; }; }; "symfony/config" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-config-9e2aa97f0d51f114983666f5aa362426d53e004a"; + name = "symfony-config-bc6b3fd3930d4b53a60b42fe2ed6fc466b75f03f"; src = fetchurl { - url = https://api.github.com/repos/symfony/config/zipball/9e2aa97f0d51f114983666f5aa362426d53e004a; - sha256 = "0gpva1fdla9idjj7xsn56kmsmccj2mr2w84lmvif35vamvgzmsgn"; + url = "https://api.github.com/repos/symfony/config/zipball/bc6b3fd3930d4b53a60b42fe2ed6fc466b75f03f"; + sha256 = "0fsnkg0kah5js4lwmd3jp39z2q1jklqqch9p96xhvscm93vjy4g7"; }; }; }; "symfony/console" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-console-55d07021da933dd0d633ffdab6f45d5b230c7e02"; + name = "symfony-console-1ba4560dbbb9fcf5ae28b61f71f49c678086cf23"; src = fetchurl { - url = https://api.github.com/repos/symfony/console/zipball/55d07021da933dd0d633ffdab6f45d5b230c7e02; - sha256 = "15n095z603majh0brhwm307lzy43p0alp059q1qfgg4g0rb3dnzv"; + url = "https://api.github.com/repos/symfony/console/zipball/1ba4560dbbb9fcf5ae28b61f71f49c678086cf23"; + sha256 = "1zsmv0p0xxdp44301yd3n1w9j79g631bvvfp04zniqk4h5q6kvg9"; }; }; }; "symfony/css-selector" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-css-selector-e544e24472d4c97b2d11ade7caacd446727c6bf9"; + name = "symfony-css-selector-f65f217b3314504a1ec99c2d6ef69016bb13490f"; src = fetchurl { - url = https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9; - sha256 = "1a1022qd93jw6drrsc1p7rhjv694n0qk0zg9mz6mfwihrnyrjf8n"; + url = "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f"; + sha256 = "0b97pdkkfkphmzwlb447arv1ly05f8hfjn6lp3m9ii55i48j839n"; }; }; }; "symfony/debug" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-debug-47aa9064d75db36389692dd4d39895a0820f00f2"; + name = "symfony-debug-157bbec4fd773bae53c5483c50951a5530a2cc16"; src = fetchurl { - url = https://api.github.com/repos/symfony/debug/zipball/47aa9064d75db36389692dd4d39895a0820f00f2; - sha256 = "017r9ngn1g65gg2i2rv8dfk6n7y5s7fd6kic3bwwhn6pf2kyjfbg"; + url = "https://api.github.com/repos/symfony/debug/zipball/157bbec4fd773bae53c5483c50951a5530a2cc16"; + sha256 = "0v7l7081fw2wr96xv472nhi1d0xzw6lnl8hnjgi9g3gnksfagwq8"; + }; + }; + }; + "symfony/deprecation-contracts" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-deprecation-contracts-5fa56b4074d1ae755beb55617ddafe6f5d78f665"; + src = fetchurl { + url = "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665"; + sha256 = "0ny59x0aaipqaj956wx7ak5f6d5rn90766swp5m18019v9cppg10"; }; }; }; "symfony/event-dispatcher" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-event-dispatcher-6140fc7047dafc5abbe84ba16a34a86c0b0229b8"; + name = "symfony-event-dispatcher-c352647244bd376bf7d31efbd5401f13f50dad0c"; src = fetchurl { - url = https://api.github.com/repos/symfony/event-dispatcher/zipball/6140fc7047dafc5abbe84ba16a34a86c0b0229b8; - sha256 = "1cfhyi73bjjdmyvazxxyd6kl93145m528l739sn3akpm0qixr55q"; + url = "https://api.github.com/repos/symfony/event-dispatcher/zipball/c352647244bd376bf7d31efbd5401f13f50dad0c"; + sha256 = "1cxgn0y83i4qqx757kq96jadwwbc68h11snhvy175xvy8nvsmxkd"; }; }; }; @@ -1017,7 +1047,7 @@ let src = composerEnv.buildZipPackage { name = "symfony-event-dispatcher-contracts-84e23fdcd2517bf37aecbd16967e83f0caee25a7"; src = fetchurl { - url = https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7; + url = "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7"; sha256 = "1pcfrlc0rg8vdnp23y3y1p5qzng5nxf5i2c36g9x9f480xrnc1fw"; }; }; @@ -1025,170 +1055,160 @@ let "symfony/filesystem" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-filesystem-b27f491309db5757816db672b256ea2e03677d30"; + name = "symfony-filesystem-940826c465be2690c9fae91b2793481e5cbd6834"; src = fetchurl { - url = https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30; - sha256 = "0gabsvz7pqycph6bhj51a5kspf3pynzhky2wz556fjydlw7aiq6m"; + url = "https://api.github.com/repos/symfony/filesystem/zipball/940826c465be2690c9fae91b2793481e5cbd6834"; + sha256 = "1qlj3dqski4ibk6ya02fgydbffwzvkl7qgy0fyhvnqcydg3gp4n8"; }; }; }; "symfony/finder" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-finder-2727aa35fddfada1dd37599948528e9b152eb742"; + name = "symfony-finder-2543795ab1570df588b9bbd31e1a2bd7037b94f6"; src = fetchurl { - url = https://api.github.com/repos/symfony/finder/zipball/2727aa35fddfada1dd37599948528e9b152eb742; - sha256 = "1fq500kmxghw15lfpzhia9mqdxzq3c8pcrbw9ndbf5g0mi69hdg1"; + url = "https://api.github.com/repos/symfony/finder/zipball/2543795ab1570df588b9bbd31e1a2bd7037b94f6"; + sha256 = "0scclnfc9aphjsric1xaj51vbqqz56kiz6l8l6ldqv6cvyg8zlyi"; }; }; }; "symfony/http-foundation" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-http-foundation-3675676b6a47f3e71d3ab10bcf53fb9239eb77e6"; + name = "symfony-http-foundation-02d968647fe61b2f419a8dc70c468a9d30a48d3a"; src = fetchurl { - url = https://api.github.com/repos/symfony/http-foundation/zipball/3675676b6a47f3e71d3ab10bcf53fb9239eb77e6; - sha256 = "1k9l60dp4cdlg1figihsx7hj0asa45ghjq3d1js0dzn3b1w4g6l0"; + url = "https://api.github.com/repos/symfony/http-foundation/zipball/02d968647fe61b2f419a8dc70c468a9d30a48d3a"; + sha256 = "1bq4why2v8p7wy8801bdml43xh7kb5fli16cv74bvqpwlp4cdv9f"; }; }; }; "symfony/mime" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-mime-149fb0ad35aae3c7637b496b38478797fa6a7ea6"; + name = "symfony-mime-1b2092244374cbe48ae733673f2ca0818b37197b"; src = fetchurl { - url = https://api.github.com/repos/symfony/mime/zipball/149fb0ad35aae3c7637b496b38478797fa6a7ea6; - sha256 = "1whqc28npd35zby0awig6y6dczzw3l1vy2cdi6bipkybvxncsij5"; + url = "https://api.github.com/repos/symfony/mime/zipball/1b2092244374cbe48ae733673f2ca0818b37197b"; + sha256 = "0d2vhmd25d7yvh9xzl2vazx2bfsb8qyvd2kgvl9cry1va4vrpkj3"; }; }; }; "symfony/polyfill-ctype" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-polyfill-ctype-1c302646f6efc070cd46856e600e5e0684d6b454"; + name = "symfony-polyfill-ctype-c6c942b1ac76c82448322025e084cadc56048b4e"; src = fetchurl { - url = https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454; - sha256 = "17piwz6vhdch0kc7wd3h04sgrvpmw7dqfkrcj2dppid5j8v29lnv"; + url = "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e"; + sha256 = "0jpk859wx74vm03q5s9z25f4ak2138p2x5q3b587wvy8rq2m4pbd"; }; }; }; "symfony/polyfill-iconv" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-polyfill-iconv-6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"; + name = "symfony-polyfill-iconv-06fb361659649bcfd6a208a0f1fcaf4e827ad342"; src = fetchurl { - url = https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36; - sha256 = "0lhdmym9mlfgjhsrgmxfvpjrpsq1n2wh5jyrgqkwjv0jib4qhccr"; + url = "https://api.github.com/repos/symfony/polyfill-iconv/zipball/06fb361659649bcfd6a208a0f1fcaf4e827ad342"; + sha256 = "0glb56w5q4v2j629rkndp2c7v4mcs6xdl14nwaaxy85lr5w4ixnq"; }; }; }; "symfony/polyfill-intl-idn" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-polyfill-intl-idn-5dcab1bc7146cf8c1beaa4502a3d9be344334251"; + name = "symfony-polyfill-intl-idn-2d63434d922daf7da8dd863e7907e67ee3031483"; src = fetchurl { - url = https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251; - sha256 = "015saw0cl3108lqqax58p9q608193hh89dav4ril54na1yz6r3lz"; + url = "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483"; + sha256 = "0sk592qrdb6dvk6v8msjva8p672qmhmnzkw1lw53gks0xrc20xjy"; }; }; }; "symfony/polyfill-intl-normalizer" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-polyfill-intl-normalizer-37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"; + name = "symfony-polyfill-intl-normalizer-43a0283138253ed1d48d352ab6d0bdb3f809f248"; src = fetchurl { - url = https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e; - sha256 = "0dy6snii84dyific6xn6a3mz9shhp7wj4fyqjizg89jwvc3f7qdj"; + url = "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248"; + sha256 = "04irkl6aks8zyfy17ni164060liihfyraqm1fmpjbs5hq0b14sc9"; }; }; }; "symfony/polyfill-mbstring" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-polyfill-mbstring-a6977d63bf9a0ad4c65cd352709e230876f9904a"; + name = "symfony-polyfill-mbstring-5232de97ee3b75b0360528dae24e73db49566ab1"; src = fetchurl { - url = https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a; - sha256 = "1i6fhjag28q3ynp7jfixm8rx1j1p9z88yvmcxzfkzjm1gl8v7w54"; - }; - }; - }; - "symfony/polyfill-php70" = { - targetDir = ""; - src = composerEnv.buildZipPackage { - name = "symfony-polyfill-php70-0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"; - src = fetchurl { - url = https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3; - sha256 = "1mrsfx3pxs1wqz5bz24i1rxlsbv7bx8q5fndk7z53kb59jsg1837"; + url = "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1"; + sha256 = "1mm670fxj2x72a9mbkyzs3yifpp6glravq2ss438bags1xf6psz8"; }; }; }; "symfony/polyfill-php72" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-polyfill-php72-639447d008615574653fb3bc60d1986d7172eaae"; + name = "symfony-polyfill-php72-cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"; src = fetchurl { - url = https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae; - sha256 = "1kqxamfcf5k8i3fh3950syg91rsk4bhjm83w5qjbia6xfm03awxz"; + url = "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"; + sha256 = "12dmz2n1b9pqqd758ja0c8h8h5dxdai5ik74iwvaxc5xn86a026b"; }; }; }; "symfony/polyfill-php73" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-polyfill-php73-fffa1a52a023e782cdcc221d781fe1ec8f87fcca"; + name = "symfony-polyfill-php73-a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"; src = fetchurl { - url = https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca; - sha256 = "07sv5hjmadp879rq2q50d9rbwi2ki6rkap98yn0h7hq82q2yh1f0"; + url = "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"; + sha256 = "10rq2x2q9hsdzskrz0aml5qcji27ypxam324044fi24nl60fyzg0"; }; }; }; "symfony/polyfill-php80" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-polyfill-php80-d87d5766cbf48d72388a9f6b85f280c8ad51f981"; + name = "symfony-polyfill-php80-dc3063ba22c2a1fd2f45ed856374d79114998f91"; src = fetchurl { - url = https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981; - sha256 = "1cxwqycsj776iqlib7np33l94ch3hal6a7dghq1b3xmm1j1450z7"; + url = "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91"; + sha256 = "1mhfjibk7mqyzlqpz6jjpxpd93fnfw0nik140x3mq1d2blg5cbvd"; }; }; }; "symfony/process" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-process-65e70bab62f3da7089a8d4591fb23fbacacb3479"; + name = "symfony-process-7e950b6366d4da90292c2e7fa820b3c1842b965a"; src = fetchurl { - url = https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479; - sha256 = "1w8p5xmj5z2gzgy4vf1hnsn1yp5x7sdxph72y66vs7mpqwcx3100"; + url = "https://api.github.com/repos/symfony/process/zipball/7e950b6366d4da90292c2e7fa820b3c1842b965a"; + sha256 = "07ykgz5bjd45izf5n6jm2n27wcaa7aih2wlsiln1ffj9vqd6l1s4"; }; }; }; "symfony/service-contracts" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-service-contracts-58c7475e5457c5492c26cc740cc0ad7464be9442"; + name = "symfony-service-contracts-d15da7ba4957ffb8f1747218be9e1a121fd298a1"; src = fetchurl { - url = https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442; - sha256 = "14rd5zcq3mk9l95m45y95lkydd72ak9cy5h3byviqpfzif1l3hq8"; + url = "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1"; + sha256 = "168iq1lp2r5qb5h8j0s17da09iaj2h5hrrdc9rw2p73hq8rvm1w2"; }; }; }; "symfony/translation" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-translation-600b84224bf482441cd4d0026eba78755d2e2b34"; + name = "symfony-translation-be83ee6c065cb32becdb306ba61160d598b1ce88"; src = fetchurl { - url = https://api.github.com/repos/symfony/translation/zipball/600b84224bf482441cd4d0026eba78755d2e2b34; - sha256 = "1djcnw02nnsw5mpja0nhkpvnmrsh0ibryx5347xfp1x2mc90l7k7"; + url = "https://api.github.com/repos/symfony/translation/zipball/be83ee6c065cb32becdb306ba61160d598b1ce88"; + sha256 = "0hsslyhmqr87wh7xykk2jl5c3pcnh096v56k0h3ygvqzj6xax8ma"; }; }; }; "symfony/yaml" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "symfony-yaml-e7fa05917ae931332a42d65b577ece4d497aad81"; + name = "symfony-yaml-88289caa3c166321883f67fe5130188ebbb47094"; src = fetchurl { - url = https://api.github.com/repos/symfony/yaml/zipball/e7fa05917ae931332a42d65b577ece4d497aad81; - sha256 = "0bnr3qk8jidwws8ph72jnld2pknyp4yqdmgf6pxanymv6jh6zfhv"; + url = "https://api.github.com/repos/symfony/yaml/zipball/88289caa3c166321883f67fe5130188ebbb47094"; + sha256 = "10rca4jav05ixcnphdf66qfj6v5w4y56mh3jq0i9xzxwfsi41qms"; }; }; }; @@ -1197,7 +1217,7 @@ let src = composerEnv.buildZipPackage { name = "tijsverkoyen-css-to-inline-styles-b43b05cf43c1b6d849478965062b6ef73e223bb5"; src = fetchurl { - url = https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5; + url = "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5"; sha256 = "0lc6jviz8faqxxs453dbqvfdmm6l2iczxla22v2r6xhakl58pf3w"; }; }; @@ -1207,7 +1227,7 @@ let src = composerEnv.buildZipPackage { name = "tobscure-json-api-663d1c1299d4363758e8e440e5849134f218f45c"; src = fetchurl { - url = https://api.github.com/repos/tobscure/json-api/zipball/663d1c1299d4363758e8e440e5849134f218f45c; + url = "https://api.github.com/repos/tobscure/json-api/zipball/663d1c1299d4363758e8e440e5849134f218f45c"; sha256 = "13nwva4d1d9mhdpw6psy2z6l6vb00jqiiyvc08bh1h4psnl4ap7x"; }; }; @@ -1215,10 +1235,10 @@ let "wikimedia/less.php" = { targetDir = ""; src = composerEnv.buildZipPackage { - name = "wikimedia-less.php-5e2a4fba9304915c4cbf98cc9cb665a5c365c351"; + name = "wikimedia-less.php-a486d78b9bd16b72f237fc6093aa56d69ce8bd13"; src = fetchurl { - url = https://api.github.com/repos/wikimedia/less.php/zipball/5e2a4fba9304915c4cbf98cc9cb665a5c365c351; - sha256 = "1w2b74s104jbzp6vr20a4mg3q0y5n77g4ilm4p3v325570giwhs7"; + url = "https://api.github.com/repos/wikimedia/less.php/zipball/a486d78b9bd16b72f237fc6093aa56d69ce8bd13"; + sha256 = "0r3dyf1zv72kyr3bd75z4hr0xy9hhkrn5s155fxlfrndafrpkfn6"; }; }; }; @@ -1232,7 +1252,7 @@ composerEnv.buildPackage { executable = false; symlinkDependencies = false; meta = { - homepage = https://flarum.org/; + homepage = "https://flarum.org/"; license = "MIT"; }; -} \ No newline at end of file +}