From 24e1201ab1c12dce85a9eeffaa52891757bc714e Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 20 Aug 2020 23:14:52 +0200 Subject: [PATCH] flarum: init --- nixbld-etc-nixos/configuration.nix | 7 +- nixbld-etc-nixos/flarum-update.nix | 29 + nixbld-etc-nixos/flarum.nix | 61 + nixbld-etc-nixos/flarum/composer-env.nix | 238 + nixbld-etc-nixos/flarum/composer.json | 69 + nixbld-etc-nixos/flarum/composer.lock | 7460 ++++++++++++++++++++++ nixbld-etc-nixos/flarum/default.nix | 13 + nixbld-etc-nixos/flarum/php-packages.nix | 1238 ++++ 8 files changed, 9112 insertions(+), 3 deletions(-) create mode 100644 nixbld-etc-nixos/flarum-update.nix create mode 100644 nixbld-etc-nixos/flarum.nix create mode 100644 nixbld-etc-nixos/flarum/composer-env.nix create mode 100644 nixbld-etc-nixos/flarum/composer.json create mode 100644 nixbld-etc-nixos/flarum/composer.lock create mode 100644 nixbld-etc-nixos/flarum/default.nix create mode 100644 nixbld-etc-nixos/flarum/php-packages.nix diff --git a/nixbld-etc-nixos/configuration.nix b/nixbld-etc-nixos/configuration.nix index a7180bb..afac603 100644 --- a/nixbld-etc-nixos/configuration.nix +++ b/nixbld-etc-nixos/configuration.nix @@ -20,6 +20,7 @@ in [ ./hardware-configuration.nix ./backup-module.nix + ./flarum.nix (builtins.fetchTarball { url = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/archive/v2.3.0/nixos-mailserver-v2.3.0.tar.gz"; sha256 = "0lpz08qviccvpfws2nm83n7m2r8add2wvfg9bljx9yxx8107r919"; @@ -574,14 +575,14 @@ in "forum.m-labs.hk" = { forceSSL = true; useACMEHost = "nixbld.m-labs.hk"; - root = "/var/www/flarum/public"; + root = "${config.services.flarum.installPath}/public"; locations."~ \.php$".extraConfig = '' fastcgi_pass unix:${config.services.phpfpm.pools.flarum.socket}; fastcgi_index index.php; ''; extraConfig = '' index index.php; - include /var/www/flarum/.nginx.conf; + include ${config.services.flarum.installPath}/.nginx.conf; ''; }; "call.m-labs.hk" = { @@ -634,7 +635,7 @@ in package = pkgs.mariadb; }; services.phpfpm.pools.flarum = { - user = "nobody"; + user = config.services.flarum.user; settings = { "listen.owner" = "nginx"; "listen.group" = "nginx"; diff --git a/nixbld-etc-nixos/flarum-update.nix b/nixbld-etc-nixos/flarum-update.nix new file mode 100644 index 0000000..0dff87b --- /dev/null +++ b/nixbld-etc-nixos/flarum-update.nix @@ -0,0 +1,29 @@ +# Run with: nix-shell flarum-update.nix + +{ pkgs ? import {} +}: + +with pkgs; +let + composer2nix = import (fetchFromGitHub { + owner = "svanderburg"; + repo = "composer2nix"; + rev = "v0.0.4"; + sha256 = "0q0x3in43ss1p0drhc5lp5bnp2jqni1i7zxm7lmjl5aad9nkn3gf"; + }) { inherit pkgs; }; +in +stdenv.mkDerivation { + name = "flarum-update"; + buildInputs = [ phpPackages.composer composer2nix ]; + shellHook = '' + OUT=$(pwd)/flarum + + cd $(mktemp -d) + composer create-project flarum/flarum . --stability=beta + composer require fof/upload + + composer2nix + cp -v *.nix composer.{json,lock} $OUT/ + exit + ''; +} diff --git a/nixbld-etc-nixos/flarum.nix b/nixbld-etc-nixos/flarum.nix new file mode 100644 index 0000000..de7d9cf --- /dev/null +++ b/nixbld-etc-nixos/flarum.nix @@ -0,0 +1,61 @@ +{ config, pkgs, ... }: +let + flarumPackage = with pkgs; stdenv.mkDerivation { + name = "flarum-package"; + src = fetchFromGitHub { + owner = "flarum"; + repo = "flarum"; + rev = "v0.1.0-beta.13"; + sha256 = "0mj6w7nibdqmi7lx2r5d9yiif6lb584l93551i115a9ly3s4yinn"; + }; + buildPhase = + '' + cp ${./flarum}/* . + ''; + installPhase = + '' + cp -ar . $out + ''; + }; + flarum = import "${flarumPackage}" { + inherit pkgs; + noDev = true; + }; + cfg = config.services.flarum; +in +{ + options.services.flarum = with pkgs.lib; { + user = mkOption { + type = types.str; + default = "nobody"; + }; + group = mkOption { + type = types.str; + default = "nogroup"; + }; + installPath = mkOption { + type = types.str; + default = "/var/www/flarum"; + }; + }; + + config.systemd.services.flarum-install = { + description = "Flarum installation"; + before = [ "nginx.service" "phpfm-flarum.service" ]; + wantedBy = [ "multi-user.target" ]; + serviceConfig = { + Type = "oneshot"; + }; + path = [ pkgs.rsync ]; + script = with cfg; '' + mkdir -p ${installPath} + rsync --links --recursive ${flarum}/ ${installPath} + for d in ${installPath} ${installPath}/public/assets \ + ${installPath}/storage ${installPath}/storage/* + do + chown ${user}:${group} $d + chmod 0775 $d + done + ''; + }; +} diff --git a/nixbld-etc-nixos/flarum/composer-env.nix b/nixbld-etc-nixos/flarum/composer-env.nix new file mode 100644 index 0000000..279b307 --- /dev/null +++ b/nixbld-etc-nixos/flarum/composer-env.nix @@ -0,0 +1,238 @@ +# This file originates from composer2nix + +{ stdenv, writeTextFile, fetchurl, php, unzip, phpPackages }: + +let + inherit (phpPackages) composer; + buildZipPackage = { name, src }: + stdenv.mkDerivation { + inherit name src; + buildInputs = [ unzip ]; + buildCommand = '' + unzip $src + baseDir=$(find . -type d -mindepth 1 -maxdepth 1) + cd $baseDir + mkdir -p $out + mv * $out + ''; + }; + + buildPackage = + { name + , src + , packages ? {} + , devPackages ? {} + , buildInputs ? [] + , symlinkDependencies ? false + , executable ? false + , removeComposerArtifacts ? false + , postInstall ? "" + , noDev ? false + , unpackPhase ? "true" + , buildPhase ? "true" + , ...}@args: + + let + reconstructInstalled = writeTextFile { + name = "reconstructinstalled.php"; + executable = true; + text = '' + #! ${php}/bin/php + + ''; + }; + + constructBin = writeTextFile { + name = "constructbin.php"; + executable = true; + text = '' + #! ${php}/bin/php + + ''; + }; + + bundleDependencies = dependencies: + stdenv.lib.concatMapStrings (dependencyName: + let + dependency = dependencies.${dependencyName}; + in + '' + ${if dependency.targetDir == "" then '' + vendorDir="$(dirname ${dependencyName})" + mkdir -p "$vendorDir" + ${if symlinkDependencies then + ''ln -s "${dependency.src}" "$vendorDir/$(basename "${dependencyName}")"'' + else + ''cp -av "${dependency.src}" "$vendorDir/$(basename "${dependencyName}")"'' + } + '' else '' + namespaceDir="${dependencyName}/$(dirname "${dependency.targetDir}")" + mkdir -p "$namespaceDir" + ${if symlinkDependencies then + ''ln -s "${dependency.src}" "$namespaceDir/$(basename "${dependency.targetDir}")"'' + else + ''cp -av "${dependency.src}" "$namespaceDir/$(basename "${dependency.targetDir}")"'' + } + ''} + '') (builtins.attrNames dependencies); + + extraArgs = removeAttrs args [ "name" "packages" "devPackages" "buildInputs" ]; + in + stdenv.mkDerivation ({ + name = "composer-${name}"; + buildInputs = [ php composer ] ++ buildInputs; + + inherit unpackPhase buildPhase; + + installPhase = '' + ${if executable then '' + mkdir -p $out/share/php + cp -av $src $out/share/php/$name + chmod -R u+w $out/share/php/$name + cd $out/share/php/$name + '' else '' + cp -av $src $out + chmod -R u+w $out + cd $out + ''} + + # Remove unwanted files + rm -f *.nix + + export HOME=$TMPDIR + + # Remove the provided vendor folder if it exists + rm -Rf vendor + + # If there is no composer.lock file, compose a dummy file. + # Otherwise, composer attempts to download the package.json file from + # the registry which we do not want. + if [ ! -f composer.lock ] + then + cat > composer.lock < vendor/composer/installed.json + + # Copy or symlink the provided dependencies + cd vendor + ${bundleDependencies packages} + ${stdenv.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"} + + # 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"} + + ${stdenv.lib.optionalString executable '' + # Reconstruct the bin/ folder if we deploy an executable project + ${constructBin} composer.json + ln -s $(pwd)/vendor/bin $out/bin + ''} + + ${stdenv.lib.optionalString (!symlinkDependencies) '' + # Patch the shebangs if possible + if [ -d $(pwd)/vendor/bin ] + then + # Look for all executables in bin/ + for i in $(pwd)/vendor/bin/* + do + # Look for their location + realFile=$(readlink -f "$i") + + # Restore write permissions + chmod u+wx "$(dirname "$realFile")" + chmod u+w "$realFile" + + # Patch shebang + sed -e "s|#!/usr/bin/php|#!${php}/bin/php|" \ + -e "s|#!/usr/bin/env php|#!${php}/bin/php|" \ + "$realFile" > tmp + mv tmp "$realFile" + chmod u+x "$realFile" + done + fi + ''} + + if [ "$removeComposerArtifacts" = "1" ] + then + # Remove composer stuff + rm -f composer.json composer.lock + fi + + # Execute post install hook + runHook postInstall + ''; + } // extraArgs); +in +{ + composer = stdenv.lib.makeOverridable composer; + buildZipPackage = stdenv.lib.makeOverridable buildZipPackage; + buildPackage = stdenv.lib.makeOverridable buildPackage; +} diff --git a/nixbld-etc-nixos/flarum/composer.json b/nixbld-etc-nixos/flarum/composer.json new file mode 100644 index 0000000..a0b170a --- /dev/null +++ b/nixbld-etc-nixos/flarum/composer.json @@ -0,0 +1,69 @@ +{ + "name": "flarum/flarum", + "description": "Delightfully simple forum software.", + "type": "project", + "keywords": [ + "forum", + "discussion" + ], + "homepage": "https://flarum.org/", + "license": "MIT", + "authors": [ + { + "name": "Franz Liedke", + "email": "franz@develophp.org" + }, + { + "name": "Daniel Klabbers", + "email": "daniel@klabbers.email", + "homepage": "https://luceos.com" + }, + { + "name": "David Sevilla Martin", + "email": "me+flarum@datitisev.me", + "homepage": "https://datitisev.me" + }, + { + "name": "Clark Winkelmann", + "email": "clark.winkelmann@gmail.com", + "homepage": "https://clarkwinkelmann.com" + }, + { + "name": "Matthew Kilgore", + "email": "matthew@kilgore.dev" + } + ], + "support": { + "issues": "https://github.com/flarum/core/issues", + "source": "https://github.com/flarum/flarum", + "docs": "https://flarum.org/docs/" + }, + "require": { + "flarum/approval": "^0.1.0", + "flarum/auth-facebook": "^0.1.0", + "flarum/auth-github": "^0.1.0", + "flarum/auth-twitter": "^0.1.0", + "flarum/bbcode": "^0.1.0", + "flarum/core": "^0.1.0", + "flarum/emoji": "^0.1.0", + "flarum/flags": "^0.1.0", + "flarum/lang-english": "^0.1.0", + "flarum/likes": "^0.1.0", + "flarum/lock": "^0.1.0", + "flarum/markdown": "^0.1.0", + "flarum/mentions": "^0.1.0", + "flarum/pusher": "^0.1.0", + "flarum/statistics": "^0.1.0", + "flarum/sticky": "^0.1.0", + "flarum/subscriptions": "^0.1.0", + "flarum/suspend": "^0.1.0", + "flarum/tags": "^0.1.0", + "fof/upload": "^0.10.0" + }, + "config": { + "preferred-install": "dist", + "sort-packages": true + }, + "minimum-stability": "beta", + "prefer-stable": true +} diff --git a/nixbld-etc-nixos/flarum/composer.lock b/nixbld-etc-nixos/flarum/composer.lock new file mode 100644 index 0000000..ccb27d2 --- /dev/null +++ b/nixbld-etc-nixos/flarum/composer.lock @@ -0,0 +1,7460 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "aafd37e80f2edbfd0bd40d1d0dd7bf13", + "packages": [ + { + "name": "axy/backtrace", + "version": "1.0.7", + "source": { + "type": "git", + "url": "https://github.com/axypro/backtrace.git", + "reference": "c6c7d0f3497a07ae934f9e8511cbc2286db311c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/axypro/backtrace/zipball/c6c7d0f3497a07ae934f9e8511cbc2286db311c5", + "reference": "c6c7d0f3497a07ae934f9e8511cbc2286db311c5", + "shasum": "" + }, + "require": { + "php": ">=5.4.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "axy\\backtrace\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Oleg Grigoriev", + "email": "go.vasac@gmail.com" + } + ], + "description": "Tracing in PHP", + "homepage": "https://github.com/axypro/backtrace", + "keywords": [ + "Backtrace", + "debug", + "exception", + "trace" + ], + "time": "2019-02-02T15:52:44+00:00" + }, + { + "name": "axy/codecs-base64vlq", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/axypro/codecs-base64vlq.git", + "reference": "53a1957f2cb773c6533ac615b3f1ac59e40e13cc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/axypro/codecs-base64vlq/zipball/53a1957f2cb773c6533ac615b3f1ac59e40e13cc", + "reference": "53a1957f2cb773c6533ac615b3f1ac59e40e13cc", + "shasum": "" + }, + "require": { + "axy/errors": "~1.0.1", + "php": ">=5.4.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "axy\\codecs\\base64vlq\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Oleg Grigoriev", + "email": "go.vasac@gmail.com" + } + ], + "description": "Codec for VLQ (variable-length quantity) Base64 algorithm", + "homepage": "https://github.com/axypro/codecs-base64vlq", + "keywords": [ + "Source map", + "VLQ", + "Variable length quantity", + "base64", + "codec" + ], + "time": "2015-11-23T07:08:52+00:00" + }, + { + "name": "axy/errors", + "version": "1.0.5", + "source": { + "type": "git", + "url": "https://github.com/axypro/errors.git", + "reference": "2c64374ae2b9ca51304c09b6b6acc275557fc34f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/axypro/errors/zipball/2c64374ae2b9ca51304c09b6b6acc275557fc34f", + "reference": "2c64374ae2b9ca51304c09b6b6acc275557fc34f", + "shasum": "" + }, + "require": { + "axy/backtrace": "~1.0.2", + "php": ">=5.4.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "axy\\errors\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Oleg Grigoriev", + "email": "go.vasac@gmail.com" + } + ], + "description": "Exceptions in PHP", + "homepage": "https://github.com/axypro/errors", + "keywords": [ + "error", + "exception" + ], + "time": "2019-02-02T18:26:18+00:00" + }, + { + "name": "axy/sourcemap", + "version": "0.1.5", + "source": { + "type": "git", + "url": "https://github.com/axypro/sourcemap.git", + "reference": "95a52df5a08c3a011031dae2e79390134e28467c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/axypro/sourcemap/zipball/95a52df5a08c3a011031dae2e79390134e28467c", + "reference": "95a52df5a08c3a011031dae2e79390134e28467c", + "shasum": "" + }, + "require": { + "axy/codecs-base64vlq": "~1.0.0", + "axy/errors": "~1.0.1", + "ext-json": "*", + "php": ">=5.4.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "axy\\sourcemap\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Oleg Grigoriev", + "email": "go.vasac@gmail.com" + } + ], + "description": "Work with JavaScript/CSS Source Map", + "homepage": "https://github.com/axypro/sourcemap", + "keywords": [ + "Source map", + "css", + "javascript", + "sourcemap" + ], + "time": "2020-08-20T09:49:44+00:00" + }, + { + "name": "components/font-awesome", + "version": "5.9.0", + "source": { + "type": "git", + "url": "https://github.com/components/font-awesome.git", + "reference": "1be57c473b964c8130f2dbd9edc4f64db5394114" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/components/font-awesome/zipball/1be57c473b964c8130f2dbd9edc4f64db5394114", + "reference": "1be57c473b964c8130f2dbd9edc4f64db5394114", + "shasum": "" + }, + "type": "component", + "extra": { + "component": { + "styles": [ + "css/all.css" + ], + "files": [ + "css/all.min.css", + "webfonts/*" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "CC-BY-4.0", + "MIT", + "OFL-1.1" + ], + "description": "Font Awesome, the iconic SVG, font, and CSS framework.", + "time": "2019-06-07T02:02:10+00:00" + }, + { + "name": "dflydev/fig-cookies", + "version": "v1.0.2", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-fig-cookies.git", + "reference": "883233c159d00d39e940bd12cfe42c0d23420c1c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-fig-cookies/zipball/883233c159d00d39e940bd12cfe42c0d23420c1c", + "reference": "883233c159d00d39e940bd12cfe42c0d23420c1c", + "shasum": "" + }, + "require": { + "php": ">=5.4", + "psr/http-message": "~1.0" + }, + "require-dev": { + "codeclimate/php-test-reporter": "~0.1@dev", + "phpunit/phpunit": "~4.5", + "squizlabs/php_codesniffer": "~2.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\FigCookies\\": "src/Dflydev/FigCookies" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Beau Simensen", + "email": "beau@dflydev.com" + } + ], + "description": "Cookies for PSR-7 HTTP Message Interface.", + "keywords": [ + "cookies", + "psr-7", + "psr7" + ], + "time": "2016-03-28T09:10:18+00:00" + }, + { + "name": "doctrine/cache", + "version": "1.10.2", + "source": { + "type": "git", + "url": "https://github.com/doctrine/cache.git", + "reference": "13e3381b25847283a91948d04640543941309727" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727", + "reference": "13e3381b25847283a91948d04640543941309727", + "shasum": "" + }, + "require": { + "php": "~7.1 || ^8.0" + }, + "conflict": { + "doctrine/common": ">2.2,<2.4" + }, + "require-dev": { + "alcaeus/mongo-php-adapter": "^1.1", + "doctrine/coding-standard": "^6.0", + "mongodb/mongodb": "^1.1", + "phpunit/phpunit": "^7.0", + "predis/predis": "~1.0" + }, + "suggest": { + "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.9.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.", + "homepage": "https://www.doctrine-project.org/projects/cache.html", + "keywords": [ + "abstraction", + "apcu", + "cache", + "caching", + "couchdb", + "memcached", + "php", + "redis", + "xcache" + ], + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache", + "type": "tidelift" + } + ], + "time": "2020-07-07T18:54:01+00:00" + }, + { + "name": "doctrine/dbal", + "version": "2.10.2", + "source": { + "type": "git", + "url": "https://github.com/doctrine/dbal.git", + "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/aab745e7b6b2de3b47019da81e7225e14dcfdac8", + "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8", + "shasum": "" + }, + "require": { + "doctrine/cache": "^1.0", + "doctrine/event-manager": "^1.0", + "ext-pdo": "*", + "php": "^7.2" + }, + "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", + "symfony/console": "^2.0.5|^3.0|^4.0|^5.0", + "vimeo/psalm": "^3.11" + }, + "suggest": { + "symfony/console": "For helpful console commands such as SQL execution and import of files." + }, + "bin": [ + "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" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + } + ], + "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.", + "homepage": "https://www.doctrine-project.org/projects/dbal.html", + "keywords": [ + "abstraction", + "database", + "db2", + "dbal", + "mariadb", + "mssql", + "mysql", + "oci8", + "oracle", + "pdo", + "pgsql", + "postgresql", + "queryobject", + "sasql", + "sql", + "sqlanywhere", + "sqlite", + "sqlserver", + "sqlsrv" + ], + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal", + "type": "tidelift" + } + ], + "time": "2020-04-20T17:19:26+00:00" + }, + { + "name": "doctrine/event-manager", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/event-manager.git", + "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f", + "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/common": "<2.9@dev" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "lib/Doctrine/Common" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.", + "homepage": "https://www.doctrine-project.org/projects/event-manager.html", + "keywords": [ + "event", + "event dispatcher", + "event manager", + "event system", + "events" + ], + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager", + "type": "tidelift" + } + ], + "time": "2020-05-29T18:28:51+00:00" + }, + { + "name": "doctrine/inflector", + "version": "1.4.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c", + "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^7.0", + "phpstan/phpstan": "^0.11", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-strict-rules": "^0.11", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector", + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2020-05-29T07:19:59+00:00" + }, + { + "name": "doctrine/lexer", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2020-05-25T17:44:05+00:00" + }, + { + "name": "egulias/email-validator", + "version": "2.1.19", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/840d5603eb84cc81a6a0382adac3293e57c1c64c", + "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^1.0.1", + "php": ">=5.5", + "symfony/polyfill-intl-idn": "^1.10" + }, + "require-dev": { + "dominicsayers/isemail": "^3.0.7", + "phpunit/phpunit": "^4.8.36|^7.5.15", + "satooshi/php-coveralls": "^1.0.1" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "time": "2020-08-08T21:28:19+00:00" + }, + { + "name": "erusev/parsedown", + "version": "1.7.4", + "source": { + "type": "git", + "url": "https://github.com/erusev/parsedown.git", + "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3", + "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35" + }, + "type": "library", + "autoload": { + "psr-0": { + "Parsedown": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Emanuil Rusev", + "email": "hello@erusev.com", + "homepage": "http://erusev.com" + } + ], + "description": "Parser for Markdown.", + "homepage": "http://parsedown.org", + "keywords": [ + "markdown", + "parser" + ], + "time": "2019-12-30T22:54:17+00:00" + }, + { + "name": "fig/http-message-util", + "version": "1.1.4", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message-util.git", + "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/3242caa9da7221a304b8f84eb9eaddae0a7cf422", + "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422", + "shasum": "" + }, + "require": { + "php": "^5.3 || ^7.0" + }, + "suggest": { + "psr/http-message": "The package containing the PSR-7 interfaces" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Fig\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Utility classes and constants for use with PSR-7 (psr/http-message)", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "time": "2020-02-05T20:36:27+00:00" + }, + { + "name": "filp/whoops", + "version": "2.7.3", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d", + "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d", + "shasum": "" + }, + "require": { + "php": "^5.5.9 || ^7.0", + "psr/log": "^1.0.1" + }, + "require-dev": { + "mockery/mockery": "^0.9 || ^1.0", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0", + "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.6-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "time": "2020-06-14T09:00:00+00:00" + }, + { + "name": "flarum/approval", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/approval.git", + "reference": "a93aa0c490ea4e73ac9999b580734febcd9b97a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/approval/zipball/a93aa0c490ea4e73ac9999b580734febcd9b97a5", + "reference": "a93aa0c490ea4e73ac9999b580734febcd9b97a5", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13", + "flarum/flags": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Approval", + "icon": { + "name": "fas fa-check", + "backgroundColor": "#ABDC88", + "color": "#3F8A32" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Approval\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Make discussions and posts require moderator approval.", + "keywords": [ + "moderation" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-01T11:08:43+00:00" + }, + { + "name": "flarum/auth-facebook", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/auth-facebook.git", + "reference": "434acf36b882b9deb0f6f1f1c1d03ad33d3e0936" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/auth-facebook/zipball/434acf36b882b9deb0f6f1f1c1d03ad33d3e0936", + "reference": "434acf36b882b9deb0f6f1f1c1d03ad33d3e0936", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13", + "league/oauth2-facebook": "^2.0" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Facebook Login", + "icon": { + "name": "fab fa-facebook", + "backgroundColor": "#3b5998", + "color": "#fff" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Auth\\Facebook\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Allow users to log in with Facebook.", + "keywords": [ + "Authentication" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-01T11:08:43+00:00" + }, + { + "name": "flarum/auth-github", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/auth-github.git", + "reference": "d01b8349c49cf9807bdf9da86ff1d5f1a8d7c853" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/auth-github/zipball/d01b8349c49cf9807bdf9da86ff1d5f1a8d7c853", + "reference": "d01b8349c49cf9807bdf9da86ff1d5f1a8d7c853", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13", + "league/oauth2-github": "^2.0" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "GitHub Login", + "icon": { + "name": "fab fa-github", + "backgroundColor": "#eee", + "color": "#333" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Auth\\Github\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Allow users to log in with GitHub.", + "keywords": [ + "Authentication" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-01T11:08:43+00:00" + }, + { + "name": "flarum/auth-twitter", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/auth-twitter.git", + "reference": "f96265c36ccb49e0d16734907ffd6acb6108ce75" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/auth-twitter/zipball/f96265c36ccb49e0d16734907ffd6acb6108ce75", + "reference": "f96265c36ccb49e0d16734907ffd6acb6108ce75", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13", + "league/oauth1-client": "^1.6" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Twitter Login", + "icon": { + "name": "fab fa-twitter", + "backgroundColor": "#55ADEE", + "color": "#fff" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Auth\\Twitter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Allow users to log in with Twitter.", + "keywords": [ + "Authentication" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-01T11:08:44+00:00" + }, + { + "name": "flarum/bbcode", + "version": "v0.1.0-beta.12", + "source": { + "type": "git", + "url": "https://github.com/flarum/bbcode.git", + "reference": "165c47059e1f44cae56cc5462366c92ca96dcc33" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/bbcode/zipball/165c47059e1f44cae56cc5462366c92ca96dcc33", + "reference": "165c47059e1f44cae56cc5462366c92ca96dcc33", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.12" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "BBCode", + "icon": { + "name": "fas fa-bold", + "backgroundColor": "#238C59", + "color": "#fff" + } + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Allow posts to be formatted with BBCode.", + "keywords": [ + "formatting" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-03-04T11:08:08+00:00" + }, + { + "name": "flarum/core", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/core.git", + "reference": "fd371c1203439810af8f6814cdff402faebf4126" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/core/zipball/fd371c1203439810af8f6814cdff402faebf4126", + "reference": "fd371c1203439810af8f6814cdff402faebf4126", + "shasum": "" + }, + "require": { + "axy/sourcemap": "^0.1.4", + "components/font-awesome": "5.9.*", + "dflydev/fig-cookies": "^1.0.2", + "doctrine/dbal": "^2.7", + "franzl/whoops-middleware": "^0.4.0", + "illuminate/bus": "5.7.*", + "illuminate/cache": "5.7.*", + "illuminate/config": "5.7.*", + "illuminate/container": "5.7.*", + "illuminate/contracts": "5.7.*", + "illuminate/database": "5.7.*", + "illuminate/events": "5.7.*", + "illuminate/filesystem": "5.7.*", + "illuminate/hashing": "5.7.*", + "illuminate/mail": "5.7.*", + "illuminate/queue": "5.7.*", + "illuminate/session": "5.7.*", + "illuminate/support": "5.7.*", + "illuminate/validation": "5.7.*", + "illuminate/view": "5.7.*", + "intervention/image": "^2.5.0", + "laminas/laminas-diactoros": "^1.8.4", + "laminas/laminas-httphandlerrunner": "^1.0", + "laminas/laminas-stratigility": "^3.0", + "league/flysystem": "^1.0.11", + "matthiasmullie/minify": "^1.3", + "middlewares/base-path": "^1.1", + "middlewares/base-path-router": "^0.2.1", + "middlewares/request-handler": "^1.2", + "monolog/monolog": "^1.16.0", + "nikic/fast-route": "^0.6", + "php": ">=7.2", + "psr/http-message": "^1.0", + "psr/http-server-handler": "^1.0", + "psr/http-server-middleware": "^1.0", + "s9e/text-formatter": "^2.3.6", + "symfony/config": "^3.3", + "symfony/console": "^4.2", + "symfony/event-dispatcher": "^4.3.2", + "symfony/translation": "^3.3", + "symfony/yaml": "^3.3", + "tobscure/json-api": "^0.3.0", + "wikimedia/less.php": "^3.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Flarum\\": "src/" + }, + "files": [ + "src/helpers.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Franz Liedke", + "email": "franz@develophp.org" + }, + { + "name": "Daniel Klabbers", + "email": "daniel@klabbers.email", + "homepage": "https://luceos.com" + }, + { + "name": "David Sevilla Martin", + "email": "me+flarum@datitisev.me", + "homepage": "https://datitisev.me" + }, + { + "name": "Clark Winkelmann", + "email": "clark.winkelmann@gmail.com", + "homepage": "https://clarkwinkelmann.com" + }, + { + "name": "Matthew Kilgore", + "email": "matthew@kilgore.dev" + } + ], + "description": "Delightfully simple forum software.", + "homepage": "https://flarum.org/", + "keywords": [ + "discussion", + "forum" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-04T10:52:03+00:00" + }, + { + "name": "flarum/emoji", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/emoji.git", + "reference": "0155803b0503727c9962d3994f59e7f3d34dd629" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/emoji/zipball/0155803b0503727c9962d3994f59e7f3d34dd629", + "reference": "0155803b0503727c9962d3994f59e7f3d34dd629", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Emoji", + "icon": { + "image": "icon.svg", + "backgroundColor": "#FECC4D" + } + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Convert text and unicode emoji into Twemoji.", + "keywords": [ + "formatting" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-01T11:08:44+00:00" + }, + { + "name": "flarum/flags", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/flags.git", + "reference": "dfa0b09545937b95010f63a122cdc16f9f23696c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/flags/zipball/dfa0b09545937b95010f63a122cdc16f9f23696c", + "reference": "dfa0b09545937b95010f63a122cdc16f9f23696c", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Flags", + "icon": { + "name": "fas fa-flag", + "backgroundColor": "#D659B5", + "color": "#fff" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Flags\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Allow users to flag posts for moderator review.", + "keywords": [ + "moderation" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-01T11:08:45+00:00" + }, + { + "name": "flarum/lang-english", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/lang-english.git", + "reference": "9056fca21d357d24700aa11b98ff277f23542675" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/lang-english/zipball/9056fca21d357d24700aa11b98ff277f23542675", + "reference": "9056fca21d357d24700aa11b98ff277f23542675", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "English", + "icon": { + "image": "icon.svg", + "backgroundColor": "#00247d", + "backgroundSize": "cover", + "backgroundPosition": "center" + } + }, + "flarum-locale": { + "code": "en", + "title": "English" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "English language pack.", + "keywords": [ + "locale" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-04T09:04:45+00:00" + }, + { + "name": "flarum/likes", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/likes.git", + "reference": "18681e5d671fdc06a9e6b8c2bef2b1cd8ecafa66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/likes/zipball/18681e5d671fdc06a9e6b8c2bef2b1cd8ecafa66", + "reference": "18681e5d671fdc06a9e6b8c2bef2b1cd8ecafa66", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Likes", + "icon": { + "name": "far fa-thumbs-up", + "backgroundColor": "#3A649D", + "color": "#fff" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Likes\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Allow users to like posts.", + "keywords": [ + "discussion" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-01T08:42:55+00:00" + }, + { + "name": "flarum/lock", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/lock.git", + "reference": "9c44e335b6e9e9d38a72c278ff6e55c904ae0864" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/lock/zipball/9c44e335b6e9e9d38a72c278ff6e55c904ae0864", + "reference": "9c44e335b6e9e9d38a72c278ff6e55c904ae0864", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Lock", + "icon": { + "name": "fas fa-lock", + "backgroundColor": "#ddd", + "color": "#666" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Lock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "End a discussion and don't let anyone add further replies.", + "keywords": [ + "moderation" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-01T11:08:45+00:00" + }, + { + "name": "flarum/markdown", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/markdown.git", + "reference": "0fabad5137c535f561fb6464daf61b68dc6120d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/markdown/zipball/0fabad5137c535f561fb6464daf61b68dc6120d7", + "reference": "0fabad5137c535f561fb6464daf61b68dc6120d7", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Markdown", + "icon": { + "image": "icon.svg", + "backgroundColor": "#000", + "backgroundSize": "100%", + "backgroundRepeat": "no-repeat", + "backgroundPosition": "center", + "color": "#fff" + } + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Allow posts to be formatted with Markdown.", + "keywords": [ + "formatting" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-04T08:14:22+00:00" + }, + { + "name": "flarum/mentions", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/mentions.git", + "reference": "63e203b608bd86b6d0fbd9db189227a2d54bf12f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/mentions/zipball/63e203b608bd86b6d0fbd9db189227a2d54bf12f", + "reference": "63e203b608bd86b6d0fbd9db189227a2d54bf12f", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Mentions", + "icon": { + "name": "fas fa-at", + "backgroundColor": "#539EC1", + "color": "#fff" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Mentions\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Mention and reply to specific posts and users.", + "keywords": [ + "discussion" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-04T08:35:14+00:00" + }, + { + "name": "flarum/pusher", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/pusher.git", + "reference": "0f4955004c16b9ce230307b6539b0e389d9804cd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/pusher/zipball/0f4955004c16b9ce230307b6539b0e389d9804cd", + "reference": "0f4955004c16b9ce230307b6539b0e389d9804cd", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13", + "pusher/pusher-php-server": "^2.2" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Pusher", + "icon": { + "image": "icon.png", + "backgroundSize": "46% 63%", + "backgroundPosition": "center", + "backgroundRepeat": "no-repeat", + "backgroundColor": "#40bad8", + "color": "#fff" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Pusher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "See new discussions and posts in real-time using Pusher.", + "keywords": [ + "discussion" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-01T11:08:46+00:00" + }, + { + "name": "flarum/statistics", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/statistics.git", + "reference": "24f396e81e76d2ad0176d5818bea8110b1564820" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/statistics/zipball/24f396e81e76d2ad0176d5818bea8110b1564820", + "reference": "24f396e81e76d2ad0176d5818bea8110b1564820", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Statistics", + "icon": { + "name": "fas fa-chart-bar", + "backgroundColor": "#6932d1", + "color": "#fff" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Statistics\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Add a basic statistics widget on the Dashboard.", + "keywords": [ + "administration" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-01T08:43:01+00:00" + }, + { + "name": "flarum/sticky", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/sticky.git", + "reference": "683c3742833d74243e75a30417a4d61ecdb87551" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/sticky/zipball/683c3742833d74243e75a30417a4d61ecdb87551", + "reference": "683c3742833d74243e75a30417a4d61ecdb87551", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Sticky", + "icon": { + "name": "fas fa-thumbtack", + "backgroundColor": "#D13E32", + "color": "#fff" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Sticky\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Pin discussions to the top of the list.", + "keywords": [ + "discussion" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-04T08:38:45+00:00" + }, + { + "name": "flarum/subscriptions", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/subscriptions.git", + "reference": "bf017e06d7e312e37ef5309b26bc2ec55263731c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/subscriptions/zipball/bf017e06d7e312e37ef5309b26bc2ec55263731c", + "reference": "bf017e06d7e312e37ef5309b26bc2ec55263731c", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Subscriptions", + "icon": { + "name": "fas fa-star", + "backgroundColor": "#ffea7b", + "color": "#de8e00" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Subscriptions\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Allow users to follow discussions and receive notifications for new posts.", + "keywords": [ + "discussion" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-04T08:44:10+00:00" + }, + { + "name": "flarum/suspend", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/suspend.git", + "reference": "095f9bada0ef251f48c38a608f523bfea6eba67e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/suspend/zipball/095f9bada0ef251f48c38a608f523bfea6eba67e", + "reference": "095f9bada0ef251f48c38a608f523bfea6eba67e", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Suspend", + "icon": { + "name": "fas fa-ban", + "backgroundColor": "#ddd", + "color": "#666" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Suspend\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Suspend users so they can't post.", + "keywords": [ + "moderation" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-03T12:39:35+00:00" + }, + { + "name": "flarum/tags", + "version": "v0.1.0-beta.13", + "source": { + "type": "git", + "url": "https://github.com/flarum/tags.git", + "reference": "fa83f496b0004e31ef2f4fc854bfcdf6a4cfa3c3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/flarum/tags/zipball/fa83f496b0004e31ef2f4fc854bfcdf6a4cfa3c3", + "reference": "fa83f496b0004e31ef2f4fc854bfcdf6a4cfa3c3", + "shasum": "" + }, + "require": { + "flarum/core": "^0.1.0-beta.13" + }, + "type": "flarum-extension", + "extra": { + "branch-alias": { + "dev-master": "0.1.x-dev" + }, + "flarum-extension": { + "title": "Tags", + "icon": { + "name": "fas fa-tags", + "backgroundColor": "#F28326", + "color": "#fff" + } + } + }, + "autoload": { + "psr-4": { + "Flarum\\Tags\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Organize discussions into a hierarchy of tags and categories.", + "keywords": [ + "discussion" + ], + "funding": [ + { + "url": "https://github.com/flarum", + "type": "github" + }, + { + "url": "https://opencollective.com/flarum", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/flarum/core", + "type": "tidelift" + } + ], + "time": "2020-05-04T08:48:54+00:00" + }, + { + "name": "fof/upload", + "version": "0.10.0", + "source": { + "type": "git", + "url": "https://github.com/FriendsOfFlarum/upload.git", + "reference": "c21fab65ce6dc6cf696de88da1359f58d59a36ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FriendsOfFlarum/upload/zipball/c21fab65ce6dc6cf696de88da1359f58d59a36ca", + "reference": "c21fab65ce6dc6cf696de88da1359f58d59a36ca", + "shasum": "" + }, + "require": { + "flarum/core": ">=0.1.0-beta.12 <0.1.0-beta.14", + "guzzlehttp/guzzle": "^6.0", + "ramsey/uuid": "^3.5.2", + "softcreatr/php-mime-detector": "^3.0" + }, + "replace": { + "flagrow/upload": "*" + }, + "require-dev": { + "league/flysystem-aws-s3-v3": "^1.0", + "overtrue/flysystem-qiniu": "1.0.4" + }, + "suggest": { + "league/flysystem-aws-s3-v3": "Uploads to AWS S3 using API version 3.", + "overtrue/flysystem-qiniu": "Uploads to QiNiu using API." + }, + "type": "flarum-extension", + "extra": { + "flarum-extension": { + "title": "FoF Upload", + "icon": { + "image": "resources/logo.svg", + "backgroundColor": "#e74c3c", + "backgroundSize": "90%", + "backgroundRepeat": "no-repeat", + "backgroundPosition": "center" + } + }, + "flagrow": { + "discuss": "https://discuss.flarum.org/d/4154" + } + }, + "autoload": { + "psr-4": { + "FoF\\Upload\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Daniël Klabbers", + "email": "daniel@klabbers.email", + "homepage": "https://luceos.com/" + } + ], + "description": "The file upload extension for the Flarum forum with insane intelligence.", + "keywords": [ + "file", + "flarum", + "upload" + ], + "funding": [ + { + "url": "https://opencollective.com/fof", + "type": "open_collective" + } + ], + "time": "2020-08-04T23:16:17+00:00" + }, + { + "name": "franzl/whoops-middleware", + "version": "0.4.1", + "source": { + "type": "git", + "url": "https://github.com/franzliedke/whoops-middleware.git", + "reference": "625a80d90b22c38d8a9372187e76ae5f844e4412" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/franzliedke/whoops-middleware/zipball/625a80d90b22c38d8a9372187e76ae5f844e4412", + "reference": "625a80d90b22c38d8a9372187e76ae5f844e4412", + "shasum": "" + }, + "require": { + "filp/whoops": "^1.1 || ^2.0", + "zendframework/zend-diactoros": "^1.1.0" + }, + "require-dev": { + "phpunit/phpunit": "5.0.*" + }, + "type": "library", + "autoload": { + "psr-4": { + "Franzl\\Middleware\\Whoops\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "time": "2016-04-27T14:08:29+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "6.5.5", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.0", + "guzzlehttp/psr7": "^1.6.1", + "php": ">=5.5", + "symfony/polyfill-intl-idn": "^1.17.0" + }, + "require-dev": { + "ext-curl": "*", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", + "psr/log": "^1.1" + }, + "suggest": { + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.5-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "homepage": "http://guzzlephp.org/", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "rest", + "web service" + ], + "time": "2020-06-16T21:01:06+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "v1.3.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "shasum": "" + }, + "require": { + "php": ">=5.5.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "time": "2016-12-20T10:07:11+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "1.6.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", + "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "shasum": "" + }, + "require": { + "php": ">=5.4.0", + "psr/http-message": "~1.0", + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" + }, + "provide": { + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "ext-zlib": "*", + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + }, + "suggest": { + "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.6-dev" + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Schultze", + "homepage": "https://github.com/Tobion" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "time": "2019-07-01T23:21:34+00:00" + }, + { + "name": "illuminate/bus", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/bus.git", + "reference": "5cad4bff635071ff07c317aad200a8c2169f264f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/bus/zipball/5cad4bff635071ff07c317aad200a8c2169f264f", + "reference": "5cad4bff635071ff07c317aad200a8c2169f264f", + "shasum": "" + }, + "require": { + "illuminate/contracts": "5.7.*", + "illuminate/pipeline": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Bus\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Bus package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "illuminate/cache", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/cache.git", + "reference": "7998b137cc723dd5e68846ada33f8c0143f5b10f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/cache/zipball/7998b137cc723dd5e68846ada33f8c0143f5b10f", + "reference": "7998b137cc723dd5e68846ada33f8c0143f5b10f", + "shasum": "" + }, + "require": { + "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3" + }, + "suggest": { + "illuminate/database": "Required to use the database cache driver (5.7.*).", + "illuminate/filesystem": "Required to use the file cache driver (5.7.*).", + "illuminate/redis": "Required to use the redis cache driver (5.7.*)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Cache\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Cache package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "illuminate/config", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/config.git", + "reference": "540e11b9ae058c9a94051d9ca6c02e40258c71fd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/config/zipball/540e11b9ae058c9a94051d9ca6c02e40258c71fd", + "reference": "540e11b9ae058c9a94051d9ca6c02e40258c71fd", + "shasum": "" + }, + "require": { + "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Config\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Config package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "illuminate/console", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/console.git", + "reference": "0d97b6ead0cbb09140b1e8317f5a9d9f69ff9ec6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/console/zipball/0d97b6ead0cbb09140b1e8317f5a9d9f69ff9ec6", + "reference": "0d97b6ead0cbb09140b1e8317f5a9d9f69ff9ec6", + "shasum": "" + }, + "require": { + "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3", + "symfony/console": "^4.1" + }, + "suggest": { + "dragonmantank/cron-expression": "Required to use scheduling component (^2.0).", + "guzzlehttp/guzzle": "Required to use the ping methods on schedules (^6.0).", + "symfony/process": "Required to use scheduling component (^4.1)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Console\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Console package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "illuminate/container", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/container.git", + "reference": "8c3a75e464d59509ae88db152cab61a3f115b9ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/container/zipball/8c3a75e464d59509ae88db152cab61a3f115b9ec", + "reference": "8c3a75e464d59509ae88db152cab61a3f115b9ec", + "shasum": "" + }, + "require": { + "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3", + "psr/container": "^1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Container\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Container package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "illuminate/contracts", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/contracts.git", + "reference": "b63324d349a8ae2156fbc2697c1ccc85879b3803" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/contracts/zipball/b63324d349a8ae2156fbc2697c1ccc85879b3803", + "reference": "b63324d349a8ae2156fbc2697c1ccc85879b3803", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "psr/container": "^1.0", + "psr/simple-cache": "^1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Contracts\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Contracts package.", + "homepage": "https://laravel.com", + "time": "2019-02-12T07:46:48+00:00" + }, + { + "name": "illuminate/database", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/database.git", + "reference": "c0702cb8c665cab8d080a81de5a44ac672b26d62" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/database/zipball/c0702cb8c665cab8d080a81de5a44ac672b26d62", + "reference": "c0702cb8c665cab8d080a81de5a44ac672b26d62", + "shasum": "" + }, + "require": { + "illuminate/container": "5.7.*", + "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3" + }, + "suggest": { + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).", + "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).", + "illuminate/console": "Required to use the database commands (5.7.*).", + "illuminate/events": "Required to use the observers with Eloquent (5.7.*).", + "illuminate/filesystem": "Required to use the migrations (5.7.*).", + "illuminate/pagination": "Required to paginate the result set (5.7.*)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Database\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Database package.", + "homepage": "https://laravel.com", + "keywords": [ + "database", + "laravel", + "orm", + "sql" + ], + "time": "2019-02-20T03:55:15+00:00" + }, + { + "name": "illuminate/events", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/events.git", + "reference": "e48888062a9962f30c431524357b9a815b093609" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/events/zipball/e48888062a9962f30c431524357b9a815b093609", + "reference": "e48888062a9962f30c431524357b9a815b093609", + "shasum": "" + }, + "require": { + "illuminate/container": "5.7.*", + "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Events\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Events package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "illuminate/filesystem", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/filesystem.git", + "reference": "ff853e678a93996b1d0a3ddc6fc56c10bae0de30" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/filesystem/zipball/ff853e678a93996b1d0a3ddc6fc56c10bae0de30", + "reference": "ff853e678a93996b1d0a3ddc6fc56c10bae0de30", + "shasum": "" + }, + "require": { + "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3", + "symfony/finder": "^4.1" + }, + "suggest": { + "league/flysystem": "Required to use the Flysystem local and FTP drivers (^1.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).", + "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).", + "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).", + "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Filesystem\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Filesystem package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "illuminate/hashing", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/hashing.git", + "reference": "c56e2e6cedadeddb677702820bec3c08097b9e44" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/hashing/zipball/c56e2e6cedadeddb677702820bec3c08097b9e44", + "reference": "c56e2e6cedadeddb677702820bec3c08097b9e44", + "shasum": "" + }, + "require": { + "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Hashing\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Hashing package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "illuminate/mail", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/mail.git", + "reference": "91ac88078b481f4b8bde7403f8bcb406be70769e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/mail/zipball/91ac88078b481f4b8bde7403f8bcb406be70769e", + "reference": "91ac88078b481f4b8bde7403f8bcb406be70769e", + "shasum": "" + }, + "require": { + "erusev/parsedown": "^1.7", + "illuminate/container": "5.7.*", + "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3", + "psr/log": "^1.0", + "swiftmailer/swiftmailer": "^6.0", + "tijsverkoyen/css-to-inline-styles": "^2.2.1" + }, + "suggest": { + "aws/aws-sdk-php": "Required to use the SES mail driver (^3.0).", + "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers (^6.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Mail\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Mail package.", + "homepage": "https://laravel.com", + "time": "2019-02-22T15:28:19+00:00" + }, + { + "name": "illuminate/pipeline", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/pipeline.git", + "reference": "63a6e66bfab88c9a7dd4bbb077634fac3df4aa2a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/pipeline/zipball/63a6e66bfab88c9a7dd4bbb077634fac3df4aa2a", + "reference": "63a6e66bfab88c9a7dd4bbb077634fac3df4aa2a", + "shasum": "" + }, + "require": { + "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Pipeline\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Pipeline package.", + "homepage": "https://laravel.com", + "time": "2019-02-24T18:58:51+00:00" + }, + { + "name": "illuminate/queue", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/queue.git", + "reference": "44babb781fd61c665afc865be981dd7a3b494796" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/queue/zipball/44babb781fd61c665afc865be981dd7a3b494796", + "reference": "44babb781fd61c665afc865be981dd7a3b494796", + "shasum": "" + }, + "require": { + "illuminate/console": "5.7.*", + "illuminate/container": "5.7.*", + "illuminate/contracts": "5.7.*", + "illuminate/database": "5.7.*", + "illuminate/filesystem": "5.7.*", + "illuminate/support": "5.7.*", + "opis/closure": "^3.1", + "php": "^7.1.3", + "symfony/debug": "^4.1", + "symfony/process": "^4.1" + }, + "suggest": { + "aws/aws-sdk-php": "Required to use the SQS queue driver (^3.0).", + "ext-pcntl": "Required to use all features of the queue worker.", + "ext-posix": "Required to use all features of the queue worker.", + "illuminate/redis": "Required to use the Redis queue driver (5.7.*).", + "pda/pheanstalk": "Required to use the Beanstalk queue driver (^3.0|^4.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Queue\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Queue package.", + "homepage": "https://laravel.com", + "time": "2019-02-22T10:35:45+00:00" + }, + { + "name": "illuminate/session", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/session.git", + "reference": "0d1233ea455b9ad50112212022ca3bcff874fa86" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/session/zipball/0d1233ea455b9ad50112212022ca3bcff874fa86", + "reference": "0d1233ea455b9ad50112212022ca3bcff874fa86", + "shasum": "" + }, + "require": { + "illuminate/contracts": "5.7.*", + "illuminate/filesystem": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3", + "symfony/finder": "^4.1", + "symfony/http-foundation": "^4.1" + }, + "suggest": { + "illuminate/console": "Required to use the session:table command (5.7.*)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Session\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Session package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "illuminate/support", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/support.git", + "reference": "3e2810145f37eb89fa11759781ee88ee1c1a5262" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/support/zipball/3e2810145f37eb89fa11759781ee88ee1c1a5262", + "reference": "3e2810145f37eb89fa11759781ee88ee1c1a5262", + "shasum": "" + }, + "require": { + "doctrine/inflector": "^1.1", + "ext-mbstring": "*", + "illuminate/contracts": "5.7.*", + "nesbot/carbon": "^1.26.3", + "php": "^7.1.3" + }, + "conflict": { + "tightenco/collect": "<5.5.33" + }, + "suggest": { + "illuminate/filesystem": "Required to use the composer class (5.7.*).", + "moontoast/math": "Required to use ordered UUIDs (^1.1).", + "ramsey/uuid": "Required to use Str::uuid() (^3.7).", + "symfony/process": "Required to use the composer class (^4.1).", + "symfony/var-dumper": "Required to use the dd function (^4.1)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Support\\": "" + }, + "files": [ + "helpers.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Support package.", + "homepage": "https://laravel.com", + "time": "2019-02-12T07:57:07+00:00" + }, + { + "name": "illuminate/translation", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/translation.git", + "reference": "4875559c0f32892c4070ca1185127c71fe18b8cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/translation/zipball/4875559c0f32892c4070ca1185127c71fe18b8cb", + "reference": "4875559c0f32892c4070ca1185127c71fe18b8cb", + "shasum": "" + }, + "require": { + "illuminate/contracts": "5.7.*", + "illuminate/filesystem": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Translation\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Translation package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "illuminate/validation", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/validation.git", + "reference": "ee897c6708685294ebaa1db8407f30a1fe62f7f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/validation/zipball/ee897c6708685294ebaa1db8407f30a1fe62f7f3", + "reference": "ee897c6708685294ebaa1db8407f30a1fe62f7f3", + "shasum": "" + }, + "require": { + "illuminate/container": "5.7.*", + "illuminate/contracts": "5.7.*", + "illuminate/support": "5.7.*", + "illuminate/translation": "5.7.*", + "php": "^7.1.3", + "symfony/http-foundation": "^4.1" + }, + "suggest": { + "illuminate/database": "Required to use the database presence verifier (5.7.*)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\Validation\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Validation package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "illuminate/view", + "version": "v5.7.28", + "source": { + "type": "git", + "url": "https://github.com/illuminate/view.git", + "reference": "e19e4e16ad309503d27845383fc533a889581739" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/view/zipball/e19e4e16ad309503d27845383fc533a889581739", + "reference": "e19e4e16ad309503d27845383fc533a889581739", + "shasum": "" + }, + "require": { + "illuminate/container": "5.7.*", + "illuminate/contracts": "5.7.*", + "illuminate/events": "5.7.*", + "illuminate/filesystem": "5.7.*", + "illuminate/support": "5.7.*", + "php": "^7.1.3", + "symfony/debug": "^4.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7-dev" + } + }, + "autoload": { + "psr-4": { + "Illuminate\\View\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate View package.", + "homepage": "https://laravel.com", + "time": "2019-02-11T13:48:57+00:00" + }, + { + "name": "intervention/image", + "version": "2.5.1", + "source": { + "type": "git", + "url": "https://github.com/Intervention/image.git", + "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e", + "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "guzzlehttp/psr7": "~1.1", + "php": ">=5.4.0" + }, + "require-dev": { + "mockery/mockery": "~0.9.2", + "phpunit/phpunit": "^4.8 || ^5.7" + }, + "suggest": { + "ext-gd": "to use GD library based image processing.", + "ext-imagick": "to use Imagick based image processing.", + "intervention/imagecache": "Caching extension for the Intervention Image library" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.4-dev" + }, + "laravel": { + "providers": [ + "Intervention\\Image\\ImageServiceProvider" + ], + "aliases": { + "Image": "Intervention\\Image\\Facades\\Image" + } + } + }, + "autoload": { + "psr-4": { + "Intervention\\Image\\": "src/Intervention/Image" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Oliver Vogel", + "email": "oliver@olivervogel.com", + "homepage": "http://olivervogel.com/" + } + ], + "description": "Image handling and manipulation library with support for Laravel integration", + "homepage": "http://image.intervention.io/", + "keywords": [ + "gd", + "image", + "imagick", + "laravel", + "thumbnail", + "watermark" + ], + "time": "2019-11-02T09:15:47+00:00" + }, + { + "name": "kylekatarnls/update-helper", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/kylekatarnls/update-helper.git", + "reference": "429be50660ed8a196e0798e5939760f168ec8ce9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9", + "reference": "429be50660ed8a196e0798e5939760f168ec8ce9", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.1.0 || ^2.0.0", + "php": ">=5.3.0" + }, + "require-dev": { + "codeclimate/php-test-reporter": "dev-master", + "composer/composer": "2.0.x-dev || ^2.0.0-dev", + "phpunit/phpunit": ">=4.8.35 <6.0" + }, + "type": "composer-plugin", + "extra": { + "class": "UpdateHelper\\ComposerPlugin" + }, + "autoload": { + "psr-0": { + "UpdateHelper\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kyle", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Update helper", + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2020-04-07T20:44:10+00:00" + }, + { + "name": "laminas/laminas-diactoros", + "version": "1.8.7p2", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-diactoros.git", + "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa", + "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa", + "shasum": "" + }, + "require": { + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0", + "psr/http-message": "^1.0" + }, + "provide": { + "psr/http-message-implementation": "1.0" + }, + "replace": { + "zendframework/zend-diactoros": "~1.8.7.0" + }, + "require-dev": { + "ext-dom": "*", + "ext-libxml": "*", + "laminas/laminas-coding-standard": "~1.0", + "php-http/psr7-integration-tests": "dev-master", + "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-release-1.8": "1.8.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions/create_uploaded_file.php", + "src/functions/marshal_headers_from_sapi.php", + "src/functions/marshal_method_from_sapi.php", + "src/functions/marshal_protocol_version_from_sapi.php", + "src/functions/marshal_uri_from_sapi.php", + "src/functions/normalize_server.php", + "src/functions/normalize_uploaded_files.php", + "src/functions/parse_cookie_header.php", + "src/functions/create_uploaded_file.legacy.php", + "src/functions/marshal_headers_from_sapi.legacy.php", + "src/functions/marshal_method_from_sapi.legacy.php", + "src/functions/marshal_protocol_version_from_sapi.legacy.php", + "src/functions/marshal_uri_from_sapi.legacy.php", + "src/functions/normalize_server.legacy.php", + "src/functions/normalize_uploaded_files.legacy.php", + "src/functions/parse_cookie_header.legacy.php" + ], + "psr-4": { + "Laminas\\Diactoros\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "PSR HTTP Message implementations", + "homepage": "https://laminas.dev", + "keywords": [ + "http", + "laminas", + "psr", + "psr-7" + ], + "time": "2020-03-23T15:28:28+00:00" + }, + { + "name": "laminas/laminas-escaper", + "version": "2.6.1", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-escaper.git", + "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70", + "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70", + "shasum": "" + }, + "require": { + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0" + }, + "replace": { + "zendframework/zend-escaper": "self.version" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.6.x-dev", + "dev-develop": "2.7.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laminas\\Escaper\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs", + "homepage": "https://laminas.dev", + "keywords": [ + "escaper", + "laminas" + ], + "time": "2019-12-31T16:43:30+00:00" + }, + { + "name": "laminas/laminas-httphandlerrunner", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-httphandlerrunner.git", + "reference": "e1a5dad040e0043135e8095ee27d1fbf6fb640e1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-httphandlerrunner/zipball/e1a5dad040e0043135e8095ee27d1fbf6fb640e1", + "reference": "e1a5dad040e0043135e8095ee27d1fbf6fb640e1", + "shasum": "" + }, + "require": { + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^7.1", + "psr/http-message": "^1.0", + "psr/http-message-implementation": "^1.0", + "psr/http-server-handler": "^1.0" + }, + "replace": { + "zendframework/zend-httphandlerrunner": "^1.1.0" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "laminas/laminas-diactoros": "^1.7 || ^2.1.1", + "phpunit/phpunit": "^7.0.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev", + "dev-develop": "1.3.x-dev" + }, + "laminas": { + "config-provider": "Laminas\\HttpHandlerRunner\\ConfigProvider" + } + }, + "autoload": { + "psr-4": { + "Laminas\\HttpHandlerRunner\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Execute PSR-15 RequestHandlerInterface instances and emit responses they generate.", + "homepage": "https://laminas.dev", + "keywords": [ + "components", + "laminas", + "mezzio", + "psr-15", + "psr-7" + ], + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-06-03T15:52:17+00:00" + }, + { + "name": "laminas/laminas-stratigility", + "version": "3.2.2", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-stratigility.git", + "reference": "3f88aa174324bc9e6dd55715f401f9f25dbd722c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-stratigility/zipball/3f88aa174324bc9e6dd55715f401f9f25dbd722c", + "reference": "3f88aa174324bc9e6dd55715f401f9f25dbd722c", + "shasum": "" + }, + "require": { + "fig/http-message-util": "^1.1", + "laminas/laminas-escaper": "^2.3", + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^7.1", + "psr/http-message": "^1.0", + "psr/http-server-middleware": "^1.0" + }, + "conflict": { + "laminas/laminas-diactoros": "<1.7.1" + }, + "replace": { + "zendframework/zend-stratigility": "^3.2.0" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "laminas/laminas-diactoros": "^1.7.1", + "malukenho/docheader": "^0.1.6", + "phpunit/phpunit": "^7.0.1" + }, + "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", + "src/functions/host.php", + "src/functions/middleware.php", + "src/functions/path.php", + "src/functions/double-pass-middleware.legacy.php", + "src/functions/host.legacy.php", + "src/functions/middleware.legacy.php", + "src/functions/path.legacy.php" + ], + "psr-4": { + "Laminas\\Stratigility\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "PSR-7 middleware foundation for building and dispatching middleware pipelines", + "homepage": "https://laminas.dev", + "keywords": [ + "http", + "laminas", + "middleware", + "psr-15", + "psr-7" + ], + "time": "2020-03-29T13:31:02+00:00" + }, + { + "name": "laminas/laminas-zendframework-bridge", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-zendframework-bridge.git", + "reference": "4939c81f63a8a4968c108c440275c94955753b19" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/4939c81f63a8a4968c108c440275c94955753b19", + "reference": "4939c81f63a8a4968c108c440275c94955753b19", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev", + "dev-develop": "1.1.x-dev" + }, + "laminas": { + "module": "Laminas\\ZendFrameworkBridge" + } + }, + "autoload": { + "files": [ + "src/autoload.php" + ], + "psr-4": { + "Laminas\\ZendFrameworkBridge\\": "src//" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Alias legacy ZF class names to Laminas Project equivalents.", + "keywords": [ + "ZendFramework", + "autoloading", + "laminas", + "zf" + ], + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-08-18T16:34:51+00:00" + }, + { + "name": "league/flysystem", + "version": "1.1.2", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "63cd8c14708b9544d3f61d3c15b747fda1c95c6e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/63cd8c14708b9544d3f61d3c15b747fda1c95c6e", + "reference": "63cd8c14708b9544d3f61d3c15b747fda1c95c6e", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/mime-type-detection": "^1.3", + "php": "^7.2.5 || ^8.0" + }, + "conflict": { + "league/flysystem-sftp": "<1.0.6" + }, + "require-dev": { + "phpspec/prophecy": "^1.11.1", + "phpunit/phpunit": "^8.5.8" + }, + "suggest": { + "ext-fileinfo": "Required for MimeType", + "ext-ftp": "Allows you to use FTP server storage", + "ext-openssl": "Allows you to use FTPS server storage", + "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", + "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", + "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", + "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", + "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", + "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", + "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", + "league/flysystem-webdav": "Allows you to use WebDAV storage", + "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter", + "spatie/flysystem-dropbox": "Allows you to use Dropbox storage", + "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frenky.net" + } + ], + "description": "Filesystem abstraction: Many filesystems, one API.", + "keywords": [ + "Cloud Files", + "WebDAV", + "abstraction", + "aws", + "cloud", + "copy.com", + "dropbox", + "file systems", + "files", + "filesystem", + "filesystems", + "ftp", + "rackspace", + "remote", + "s3", + "sftp", + "storage" + ], + "funding": [ + { + "url": "https://offset.earth/frankdejonge", + "type": "other" + } + ], + "time": "2020-08-18T10:57:55+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "fda190b62b962d96a069fcc414d781db66d65b69" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/fda190b62b962d96a069fcc414d781db66d65b69", + "reference": "fda190b62b962d96a069fcc414d781db66d65b69", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.36", + "phpunit/phpunit": "^8.5.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2020-08-09T10:34:01+00:00" + }, + { + "name": "league/oauth1-client", + "version": "1.7.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/oauth1-client.git", + "reference": "fca5f160650cb74d23fc11aa570dd61f86dcf647" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/fca5f160650cb74d23fc11aa570dd61f86dcf647", + "reference": "fca5f160650cb74d23fc11aa570dd61f86dcf647", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "^6.0", + "php": ">=5.5.0" + }, + "require-dev": { + "mockery/mockery": "^0.9", + "phpunit/phpunit": "^4.0", + "squizlabs/php_codesniffer": "^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "psr-4": { + "League\\OAuth1\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Corlett", + "email": "bencorlett@me.com", + "homepage": "http://www.webcomm.com.au", + "role": "Developer" + } + ], + "description": "OAuth 1.0 Client Library", + "keywords": [ + "Authentication", + "SSO", + "authorization", + "bitbucket", + "identity", + "idp", + "oauth", + "oauth1", + "single sign on", + "trello", + "tumblr", + "twitter" + ], + "time": "2016-08-17T00:36:58+00:00" + }, + { + "name": "league/oauth2-client", + "version": "2.5.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/oauth2-client.git", + "reference": "d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb", + "reference": "d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "^6.0 || ^7.0", + "paragonie/random_compat": "^1|^2|^9.99", + "php": "^5.6|^7.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" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-2.x": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\OAuth2\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alex Bilbie", + "email": "hello@alexbilbie.com", + "homepage": "http://www.alexbilbie.com", + "role": "Developer" + }, + { + "name": "Woody Gilk", + "homepage": "https://github.com/shadowhand", + "role": "Contributor" + } + ], + "description": "OAuth 2.0 Client Library", + "keywords": [ + "Authentication", + "SSO", + "authorization", + "identity", + "idp", + "oauth", + "oauth2", + "single sign on" + ], + "time": "2020-07-18T17:54:32+00:00" + }, + { + "name": "league/oauth2-facebook", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/oauth2-facebook.git", + "reference": "c482a851c93a6cb718270773635d6a0c8384b560" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/oauth2-facebook/zipball/c482a851c93a6cb718270773635d6a0c8384b560", + "reference": "c482a851c93a6cb718270773635d6a0c8384b560", + "shasum": "" + }, + "require": { + "league/oauth2-client": "^2.0", + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "ext-json": "*", + "mockery/mockery": "~1.3.0", + "phpunit/phpunit": "^5.7|^6.0", + "squizlabs/php_codesniffer": "~3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\OAuth2\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Sammy Kaye Powers", + "email": "me@sammyk.me", + "homepage": "http://www.sammyk.me" + } + ], + "description": "Facebook OAuth 2.0 Client Provider for The PHP League OAuth2-Client", + "keywords": [ + "Authentication", + "authorization", + "client", + "facebook", + "oauth", + "oauth2" + ], + "time": "2020-07-25T13:30:06+00:00" + }, + { + "name": "league/oauth2-github", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/oauth2-github.git", + "reference": "e63d64f3ec167c09232d189c6b0c397458a99357" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/oauth2-github/zipball/e63d64f3ec167c09232d189c6b0c397458a99357", + "reference": "e63d64f3ec167c09232d189c6b0c397458a99357", + "shasum": "" + }, + "require": { + "league/oauth2-client": "^2.0" + }, + "require-dev": { + "mockery/mockery": "~0.9", + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\OAuth2\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Steven Maguire", + "email": "stevenmaguire@gmail.com", + "homepage": "https://github.com/stevenmaguire" + } + ], + "description": "Github OAuth 2.0 Client Provider for The PHP League OAuth2-Client", + "keywords": [ + "authorisation", + "authorization", + "client", + "github", + "oauth", + "oauth2" + ], + "time": "2017-01-26T01:14:51+00:00" + }, + { + "name": "matthiasmullie/minify", + "version": "1.3.63", + "source": { + "type": "git", + "url": "https://github.com/matthiasmullie/minify.git", + "reference": "9ba1b459828adc13430f4dd6c49dae4950dc4117" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/9ba1b459828adc13430f4dd6c49dae4950dc4117", + "reference": "9ba1b459828adc13430f4dd6c49dae4950dc4117", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "matthiasmullie/path-converter": "~1.1", + "php": ">=5.3.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "~2.0", + "matthiasmullie/scrapbook": "~1.0", + "phpunit/phpunit": "~4.8" + }, + "suggest": { + "psr/cache-implementation": "Cache implementation to use with Minify::cache" + }, + "bin": [ + "bin/minifycss", + "bin/minifyjs" + ], + "type": "library", + "autoload": { + "psr-4": { + "MatthiasMullie\\Minify\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matthias Mullie", + "email": "minify@mullie.eu", + "homepage": "http://www.mullie.eu", + "role": "Developer" + } + ], + "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.", + "homepage": "http://www.minifier.org", + "keywords": [ + "JS", + "css", + "javascript", + "minifier", + "minify" + ], + "time": "2020-01-21T20:21:08+00:00" + }, + { + "name": "matthiasmullie/path-converter", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/matthiasmullie/path-converter.git", + "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/e7d13b2c7e2f2268e1424aaed02085518afa02d9", + "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "MatthiasMullie\\PathConverter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matthias Mullie", + "email": "pathconverter@mullie.eu", + "homepage": "http://www.mullie.eu", + "role": "Developer" + } + ], + "description": "Relative path converter", + "homepage": "http://github.com/matthiasmullie/path-converter", + "keywords": [ + "converter", + "path", + "paths", + "relative" + ], + "time": "2019-02-05T23:41:09+00:00" + }, + { + "name": "middlewares/base-path", + "version": "v1.1.0", + "source": { + "type": "git", + "url": "https://github.com/middlewares/base-path.git", + "reference": "18277023b9a4acdc85479071a10f702582c3a909" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/middlewares/base-path/zipball/18277023b9a4acdc85479071a10f702582c3a909", + "reference": "18277023b9a4acdc85479071a10f702582c3a909", + "shasum": "" + }, + "require": { + "php": "^7.0", + "psr/http-server-middleware": "^1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.0", + "middlewares/utils": "^2.1", + "phpunit/phpunit": "^6.0|^7.0", + "squizlabs/php_codesniffer": "^3.0", + "zendframework/zend-diactoros": "^1.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Middlewares\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Middleware to remove the prefix from the uri path of the request.", + "homepage": "https://github.com/middlewares/base-path", + "keywords": [ + "http", + "middleware", + "psr-15", + "psr-7", + "server" + ], + "time": "2018-08-04T10:41:46+00:00" + }, + { + "name": "middlewares/base-path-router", + "version": "v0.2.1", + "source": { + "type": "git", + "url": "https://github.com/middlewares/base-path-router.git", + "reference": "1706ec57dbeb7083c7ea17561041f8dc2de3b37c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/middlewares/base-path-router/zipball/1706ec57dbeb7083c7ea17561041f8dc2de3b37c", + "reference": "1706ec57dbeb7083c7ea17561041f8dc2de3b37c", + "shasum": "" + }, + "require": { + "middlewares/utils": "^2.0", + "php": "^7.0", + "psr/http-server-middleware": "^1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.0", + "phpunit/phpunit": "^6.0", + "squizlabs/php_codesniffer": "^3.0", + "zendframework/zend-diactoros": "^1.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Middlewares\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PSR-15 middleware for hierarchical dispatching based on path prefixes", + "homepage": "https://github.com/middlewares/base-path-router", + "keywords": [ + "http", + "middleware", + "psr-15", + "psr-7", + "routing", + "server" + ], + "time": "2018-08-22T06:53:04+00:00" + }, + { + "name": "middlewares/request-handler", + "version": "v1.4.0", + "source": { + "type": "git", + "url": "https://github.com/middlewares/request-handler.git", + "reference": "adcc7dd36361661bd62057a21c052643ede6c726" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/middlewares/request-handler/zipball/adcc7dd36361661bd62057a21c052643ede6c726", + "reference": "adcc7dd36361661bd62057a21c052643ede6c726", + "shasum": "" + }, + "require": { + "middlewares/utils": "^2.1", + "php": "^7.0", + "psr/http-server-middleware": "^1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.0", + "phpstan/phpstan": "^0.9.2|^0.10.3", + "phpunit/phpunit": "^6.0|^7.0", + "psr/container": "^1.0", + "squizlabs/php_codesniffer": "^3.0", + "zendframework/zend-diactoros": "^1.3" + }, + "suggest": { + "psr/container": "Can be used to resolve handlers automatically" + }, + "type": "library", + "autoload": { + "psr-4": { + "Middlewares\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Middleware to execute request handlers", + "homepage": "https://github.com/middlewares/request-handler", + "keywords": [ + "controller", + "handler", + "http", + "invoke", + "middleware", + "psr-15", + "psr-7", + "request", + "server" + ], + "time": "2018-10-25T22:59:24+00:00" + }, + { + "name": "middlewares/utils", + "version": "v2.2.0", + "source": { + "type": "git", + "url": "https://github.com/middlewares/utils.git", + "reference": "7dc49454b4fbf249226023c7b77658b6068abfbc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/middlewares/utils/zipball/7dc49454b4fbf249226023c7b77658b6068abfbc", + "reference": "7dc49454b4fbf249226023c7b77658b6068abfbc", + "shasum": "" + }, + "require": { + "php": "^7.0", + "psr/container": "^1.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.0", + "psr/http-server-middleware": "^1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.0", + "guzzlehttp/psr7": "^1.3", + "phpunit/phpunit": "^6.0|^7.0", + "slim/http": "^0.3", + "squizlabs/php_codesniffer": "^3.0", + "zendframework/zend-diactoros": "^1.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Middlewares\\Utils\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Common utils to create PSR-15 middleware packages", + "homepage": "https://github.com/middlewares/utils", + "keywords": [ + "PSR-11", + "http", + "middleware", + "psr-15", + "psr-17", + "psr-7" + ], + "time": "2019-03-05T22:06:37+00:00" + }, + { + "name": "monolog/monolog", + "version": "1.25.5", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0", + "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "psr/log": "~1.0" + }, + "provide": { + "psr/log-implementation": "1.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^2.4.9 || ^3.0", + "doctrine/couchdb": "~1.0@dev", + "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", + "phpunit/phpunit": "~4.5", + "ruflin/elastica": ">=0.90 <3.0", + "sentry/sentry": "^0.13", + "swiftmailer/swiftmailer": "^5.3|^6.0" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-mongo": "Allow sending log messages to a MongoDB server", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "php-console/php-console": "Allow sending log messages to Google Chrome", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server", + "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" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "http://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2020-07-23T08:35:51+00:00" + }, + { + "name": "nesbot/carbon", + "version": "1.39.1", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33", + "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33", + "shasum": "" + }, + "require": { + "kylekatarnls/update-helper": "^1.1", + "php": ">=5.3.9", + "symfony/translation": "~2.6 || ~3.0 || ~4.0" + }, + "require-dev": { + "composer/composer": "^1.2", + "friendsofphp/php-cs-fixer": "~2", + "phpunit/phpunit": "^4.8.35 || ^5.7" + }, + "bin": [ + "bin/upgrade-carbon" + ], + "type": "library", + "extra": { + "update-helper": "Carbon\\Upgrade", + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "http://nesbot.com" + } + ], + "description": "A simple API extension for DateTime.", + "homepage": "http://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "time": "2019-10-14T05:51:36+00:00" + }, + { + "name": "nikic/fast-route", + "version": "v0.6.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/FastRoute.git", + "reference": "31fa86924556b80735f98b294a7ffdfb26789f22" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/FastRoute/zipball/31fa86924556b80735f98b294a7ffdfb26789f22", + "reference": "31fa86924556b80735f98b294a7ffdfb26789f22", + "shasum": "" + }, + "require": { + "php": ">=5.4.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "FastRoute\\": "src/" + }, + "files": [ + "src/functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov", + "email": "nikic@php.net" + } + ], + "description": "Fast request router for PHP", + "keywords": [ + "router", + "routing" + ], + "time": "2015-06-18T19:15:47+00:00" + }, + { + "name": "opis/closure", + "version": "3.5.6", + "source": { + "type": "git", + "url": "https://github.com/opis/closure.git", + "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opis/closure/zipball/e8d34df855b0a0549a300cb8cb4db472556e8aa9", + "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9", + "shasum": "" + }, + "require": { + "php": "^5.4 || ^7.0" + }, + "require-dev": { + "jeremeamia/superclosure": "^2.0", + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.5.x-dev" + } + }, + "autoload": { + "psr-4": { + "Opis\\Closure\\": "src/" + }, + "files": [ + "functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marius Sarca", + "email": "marius.sarca@gmail.com" + }, + { + "name": "Sorin Sarca", + "email": "sarca_sorin@hotmail.com" + } + ], + "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.", + "homepage": "https://opis.io/closure", + "keywords": [ + "anonymous functions", + "closure", + "function", + "serializable", + "serialization", + "serialize" + ], + "time": "2020-08-11T08:46:50+00:00" + }, + { + "name": "paragonie/random_compat", + "version": "v9.99.99", + "source": { + "type": "git", + "url": "https://github.com/paragonie/random_compat.git", + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "shasum": "" + }, + "require": { + "php": "^7" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*", + "vimeo/psalm": "^1" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "polyfill", + "pseudorandom", + "random" + ], + "time": "2018-07-02T15:55:56+00:00" + }, + { + "name": "psr/container", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "time": "2017-02-14T16:28:37+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "shasum": "" + }, + "require": { + "php": ">=7.0.0", + "psr/http-message": "^1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "time": "2019-04-30T12:38:16+00:00" + }, + { + "name": "psr/http-message", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "time": "2016-08-06T14:39:51+00:00" + }, + { + "name": "psr/http-server-handler", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-server-handler.git", + "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7", + "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7", + "shasum": "" + }, + "require": { + "php": ">=7.0", + "psr/http-message": "^1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Server\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP server-side request handler", + "keywords": [ + "handler", + "http", + "http-interop", + "psr", + "psr-15", + "psr-7", + "request", + "response", + "server" + ], + "time": "2018-10-30T16:46:14+00:00" + }, + { + "name": "psr/http-server-middleware", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-server-middleware.git", + "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5", + "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5", + "shasum": "" + }, + "require": { + "php": ">=7.0", + "psr/http-message": "^1.0", + "psr/http-server-handler": "^1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Server\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP server-side middleware", + "keywords": [ + "http", + "http-interop", + "middleware", + "psr", + "psr-15", + "psr-7", + "request", + "response" + ], + "time": "2018-10-30T17:12:04+00:00" + }, + { + "name": "psr/log", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "time": "2020-03-23T09:12:05+00:00" + }, + { + "name": "psr/simple-cache", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "time": "2017-10-23T01:57:42+00:00" + }, + { + "name": "pusher/pusher-php-server", + "version": "2.6.4", + "source": { + "type": "git", + "url": "https://github.com/pusher/pusher-http-php.git", + "reference": "2cf2ba85e7ce3250468a1c42ab7c948a7d43839d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/2cf2ba85e7ce3250468a1c42ab7c948a7d43839d", + "reference": "2cf2ba85e7ce3250468a1c42ab7c948a7d43839d", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "php": ">=5.2" + }, + "require-dev": { + "phpunit/phpunit": "~4" + }, + "type": "library", + "autoload": { + "classmap": [ + "lib/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Library for interacting with the Pusher REST API", + "homepage": "https://github.com/pusher/pusher-php-server", + "keywords": [ + "events", + "php-pusher-server", + "publish", + "pusher", + "realtime", + "rest", + "trigger" + ], + "time": "2017-06-06T16:41:17+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/uuid", + "version": "3.9.3", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92", + "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92", + "shasum": "" + }, + "require": { + "ext-json": "*", + "paragonie/random_compat": "^1 | ^2 | 9.99.99", + "php": "^5.4 | ^7 | ^8", + "symfony/polyfill-ctype": "^1.8" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "codeception/aspect-mock": "^1 | ^2", + "doctrine/annotations": "^1.2", + "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1", + "jakub-onderka/php-parallel-lint": "^1", + "mockery/mockery": "^0.9.11 | ^1", + "moontoast/math": "^1.1", + "paragonie/random-lib": "^2", + "php-mock/php-mock-phpunit": "^0.3 | ^1.1", + "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5", + "squizlabs/php_codesniffer": "^3.5" + }, + "suggest": { + "ext-ctype": "Provides support for PHP Ctype functions", + "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", + "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator", + "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", + "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Uuid\\": "src/" + }, + "files": [ + "src/functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + }, + { + "name": "Marijn Huizendveld", + "email": "marijn.huizendveld@gmail.com" + }, + { + "name": "Thibaud Fabre", + "email": "thibaud@aztech.io" + } + ], + "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", + "homepage": "https://github.com/ramsey/uuid", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "time": "2020-02-21T04:36:14+00:00" + }, + { + "name": "s9e/regexp-builder", + "version": "1.4.4", + "source": { + "type": "git", + "url": "https://github.com/s9e/RegexpBuilder.git", + "reference": "605b33841a766abd40ba3d07c15d0f62b5e7f033" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/s9e/RegexpBuilder/zipball/605b33841a766abd40ba3d07c15d0f62b5e7f033", + "reference": "605b33841a766abd40ba3d07c15d0f62b5e7f033", + "shasum": "" + }, + "require": { + "lib-pcre": ">=7.2", + "php": ">=5.5.1" + }, + "require-dev": { + "phpunit/phpunit": "*" + }, + "type": "library", + "autoload": { + "psr-4": { + "s9e\\RegexpBuilder\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Single-purpose library that generates regular expressions that match a list of strings.", + "homepage": "https://github.com/s9e/RegexpBuilder/", + "keywords": [ + "regexp" + ], + "time": "2020-01-08T02:46:22+00:00" + }, + { + "name": "s9e/sweetdom", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/s9e/SweetDOM.git", + "reference": "f3a58c723fbe04d92ebcef5c8c7913bb364f58cd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/s9e/SweetDOM/zipball/f3a58c723fbe04d92ebcef5c8c7913bb364f58cd", + "reference": "f3a58c723fbe04d92ebcef5c8c7913bb364f58cd", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "php": ">=7.1" + }, + "require-dev": { + "phpunit/phpunit": "*" + }, + "type": "library", + "autoload": { + "psr-4": { + "s9e\\SweetDOM\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Syntactic sugar for the DOM API with a focus on XSLT 1.0 template manipulation.", + "homepage": "https://github.com/s9e/SweetDOM/", + "keywords": [ + "dom", + "xsl", + "xslt" + ], + "time": "2020-05-25T15:01:02+00:00" + }, + { + "name": "s9e/text-formatter", + "version": "2.7.4", + "source": { + "type": "git", + "url": "https://github.com/s9e/TextFormatter.git", + "reference": "9a8e77826604e24deacbd280c2543b68b4ff2a84" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/s9e/TextFormatter/zipball/9a8e77826604e24deacbd280c2543b68b4ff2a84", + "reference": "9a8e77826604e24deacbd280c2543b68b4ff2a84", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-filter": "*", + "lib-pcre": ">=8.13", + "php": ">=7.1", + "s9e/regexp-builder": "^1.4", + "s9e/sweetdom": "^1.0" + }, + "require-dev": { + "matthiasmullie/minify": "*", + "phpunit/phpunit": "*", + "sami/sami": "4.*" + }, + "suggest": { + "ext-curl": "Improves the performance of the MediaEmbed plugin and some JavaScript minifiers", + "ext-intl": "Allows international URLs to be accepted by the URL filter", + "ext-json": "Enables the generation of a JavaScript parser", + "ext-mbstring": "Improves the performance of the PHP renderer", + "ext-tokenizer": "Improves the performance of the PHP renderer", + "ext-xsl": "Enables the XSLT renderer", + "ext-zlib": "Enables gzip compression when scraping content via the MediaEmbed plugin" + }, + "type": "library", + "extra": { + "version": "2.7.4" + }, + "autoload": { + "psr-4": { + "s9e\\TextFormatter\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "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.", + "homepage": "https://github.com/s9e/TextFormatter/", + "keywords": [ + "bbcode", + "bbcodes", + "blog", + "censor", + "embed", + "emoji", + "emoticons", + "engine", + "forum", + "html", + "markdown", + "markup", + "media", + "parser", + "shortcodes" + ], + "time": "2020-08-20T04:29:09+00:00" + }, + { + "name": "softcreatr/php-mime-detector", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/SoftCreatR/php-mime-detector.git", + "reference": "682651747adf0196fec007c2afaedc6dd44a941f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/SoftCreatR/php-mime-detector/zipball/682651747adf0196fec007c2afaedc6dd44a941f", + "reference": "682651747adf0196fec007c2afaedc6dd44a941f", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "phpunit/phpunit": "~7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "SoftCreatR\\MimeDetector\\": "src/SoftCreatR/MimeDetector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "authors": [ + { + "name": "Sascha Greuel", + "email": "sascha@softcreatr.de" + }, + { + "name": "Sebastian Zimmer", + "email": "morik@softcreatr.de" + } + ], + "description": "Mime Detector Decoder", + "homepage": "https://www.softcreatr.com", + "keywords": [ + "Magic Number", + "file type", + "mime" + ], + "time": "2018-10-29T19:18:29+00:00" + }, + { + "name": "swiftmailer/swiftmailer", + "version": "v6.2.3", + "source": { + "type": "git", + "url": "https://github.com/swiftmailer/swiftmailer.git", + "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9", + "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9", + "shasum": "" + }, + "require": { + "egulias/email-validator": "~2.0", + "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" + }, + "suggest": { + "ext-intl": "Needed to support internationalized email addresses", + "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.2-dev" + } + }, + "autoload": { + "files": [ + "lib/swift_required.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Corbyn" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "Swiftmailer, free feature-rich PHP mailer", + "homepage": "https://swiftmailer.symfony.com", + "keywords": [ + "email", + "mail", + "mailer" + ], + "time": "2019-11-12T09:31:26+00:00" + }, + { + "name": "symfony/config", + "version": "v3.4.43", + "source": { + "type": "git", + "url": "https://github.com/symfony/config.git", + "reference": "9e2aa97f0d51f114983666f5aa362426d53e004a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/config/zipball/9e2aa97f0d51f114983666f5aa362426d53e004a", + "reference": "9e2aa97f0d51f114983666f5aa362426d53e004a", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/filesystem": "~2.8|~3.0|~4.0", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/dependency-injection": "<3.3", + "symfony/finder": "<3.3" + }, + "require-dev": { + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/event-dispatcher": "~3.3|~4.0", + "symfony/finder": "~3.3|~4.0", + "symfony/yaml": "~3.0|~4.0" + }, + "suggest": { + "symfony/yaml": "To use the yaml reference dumper" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Config\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Config Component", + "homepage": "https://symfony.com", + "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-23T09:37:51+00:00" + }, + { + "name": "symfony/console", + "version": "v4.4.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/55d07021da933dd0d633ffdab6f45d5b230c7e02", + "reference": "55d07021da933dd0d633ffdab6f45d5b230c7e02", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.8", + "symfony/polyfill-php80": "^1.15", + "symfony/service-contracts": "^1.1|^2" + }, + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/event-dispatcher": "<4.3|>=5", + "symfony/lock": "<4.4", + "symfony/process": "<3.3" + }, + "provide": { + "psr/log-implementation": "1.0" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/event-dispatcher": "^4.3", + "symfony/lock": "^4.4|^5.0", + "symfony/process": "^3.4|^4.0|^5.0", + "symfony/var-dumper": "^4.3|^5.0" + }, + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Console Component", + "homepage": "https://symfony.com", + "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-06T13:18:39+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v5.1.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9", + "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9", + "shasum": "" + }, + "require": { + "php": ">=7.2.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony CssSelector Component", + "homepage": "https://symfony.com", + "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-05-20T17:43:50+00:00" + }, + { + "name": "symfony/debug", + "version": "v4.4.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/debug.git", + "reference": "47aa9064d75db36389692dd4d39895a0820f00f2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/debug/zipball/47aa9064d75db36389692dd4d39895a0820f00f2", + "reference": "47aa9064d75db36389692dd4d39895a0820f00f2", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "psr/log": "~1.0", + "symfony/polyfill-php80": "^1.15" + }, + "conflict": { + "symfony/http-kernel": "<3.4" + }, + "require-dev": { + "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\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Debug Component", + "homepage": "https://symfony.com", + "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-23T08:31:43+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v4.4.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6140fc7047dafc5abbe84ba16a34a86c0b0229b8", + "reference": "6140fc7047dafc5abbe84ba16a34a86c0b0229b8", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "symfony/event-dispatcher-contracts": "^1.1" + }, + "conflict": { + "symfony/dependency-injection": "<3.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "1.1" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/http-foundation": "^3.4|^4.0|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/stopwatch": "^3.4|^4.0|^5.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony EventDispatcher Component", + "homepage": "https://symfony.com", + "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-06-18T17:59:13+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v1.1.9", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7", + "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7", + "shasum": "" + }, + "require": { + "php": ">=7.1.3" + }, + "suggest": { + "psr/event-dispatcher": "", + "symfony/event-dispatcher-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "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": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "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-06T13:19:58+00:00" + }, + { + "name": "symfony/filesystem", + "version": "v4.4.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "b27f491309db5757816db672b256ea2e03677d30" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30", + "reference": "b27f491309db5757816db672b256ea2e03677d30", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "symfony/polyfill-ctype": "~1.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Filesystem Component", + "homepage": "https://symfony.com", + "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-05-30T18:50:54+00:00" + }, + { + "name": "symfony/finder", + "version": "v4.4.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "2727aa35fddfada1dd37599948528e9b152eb742" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/2727aa35fddfada1dd37599948528e9b152eb742", + "reference": "2727aa35fddfada1dd37599948528e9b152eb742", + "shasum": "" + }, + "require": { + "php": ">=7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Finder Component", + "homepage": "https://symfony.com", + "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-05T09:39:30+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v4.4.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "3675676b6a47f3e71d3ab10bcf53fb9239eb77e6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3675676b6a47f3e71d3ab10bcf53fb9239eb77e6", + "reference": "3675676b6a47f3e71d3ab10bcf53fb9239eb77e6", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "symfony/mime": "^4.3|^5.0", + "symfony/polyfill-mbstring": "~1.1" + }, + "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\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony HttpFoundation Component", + "homepage": "https://symfony.com", + "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-23T09:48:09+00:00" + }, + { + "name": "symfony/mime", + "version": "v5.1.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "149fb0ad35aae3c7637b496b38478797fa6a7ea6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/149fb0ad35aae3c7637b496b38478797fa6a7ea6", + "reference": "149fb0ad35aae3c7637b496b38478797fa6a7ea6", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.15" + }, + "conflict": { + "symfony/mailer": "<4.4" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10", + "symfony/dependency-injection": "^4.4|^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A library to manipulate MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "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-23T10:04:31+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.18.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "1c302646f6efc070cd46856e600e5e0684d6b454" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454", + "reference": "1c302646f6efc070cd46856e600e5e0684d6b454", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "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\\Ctype\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "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" + }, + { + "name": "symfony/polyfill-iconv", + "version": "v1.18.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-iconv.git", + "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36", + "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-iconv": "For best performance" + }, + "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\\Iconv\\": "" + }, + "files": [ + "bootstrap.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": "Symfony polyfill for the Iconv extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "iconv", + "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" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.18.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251", + "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251", + "shasum": "" + }, + "require": { + "php": ">=5.3.3", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php70": "^1.10", + "symfony/polyfill-php72": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "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\\Intl\\Idn\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "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-08-04T06:02:08+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.18.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e", + "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "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\\Intl\\Normalizer\\": "" + }, + "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 for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "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" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.18.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a", + "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "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\\Mbstring\\": "" + }, + "files": [ + "bootstrap.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": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "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" + }, + { + "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" + }, + { + "name": "symfony/polyfill-php72", + "version": "v1.18.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "639447d008615574653fb3bc60d1986d7172eaae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae", + "reference": "639447d008615574653fb3bc60d1986d7172eaae", + "shasum": "" + }, + "require": { + "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\\Php72\\": "" + }, + "files": [ + "bootstrap.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": "Symfony polyfill backporting some PHP 7.2+ 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" + }, + { + "name": "symfony/polyfill-php73", + "version": "v1.18.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca", + "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca", + "shasum": "" + }, + "require": { + "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\\Php73\\": "" + }, + "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.3+ 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" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.18.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981", + "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981", + "shasum": "" + }, + "require": { + "php": ">=7.0.8" + }, + "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\\Php80\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.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" + }, + { + "name": "symfony/process", + "version": "v4.4.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479", + "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479", + "shasum": "" + }, + "require": { + "php": ">=7.1.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Process Component", + "homepage": "https://symfony.com", + "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-23T08:31:43+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v2.1.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442", + "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "psr/container": "^1.0" + }, + "suggest": { + "symfony/service-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + } + }, + "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": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "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-06T13:23:11+00:00" + }, + { + "name": "symfony/translation", + "version": "v3.4.43", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "600b84224bf482441cd4d0026eba78755d2e2b34" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/600b84224bf482441cd4d0026eba78755d2e2b34", + "reference": "600b84224bf482441cd4d0026eba78755d2e2b34", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/config": "<2.8", + "symfony/dependency-injection": "<3.4", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/http-kernel": "~3.4|~4.0", + "symfony/intl": "^2.8.18|^3.2.5|~4.0", + "symfony/var-dumper": "~3.4|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "psr/log-implementation": "To use logging capability in translator", + "symfony/config": "", + "symfony/yaml": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Translation Component", + "homepage": "https://symfony.com", + "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-16T09:41:49+00:00" + }, + { + "name": "symfony/yaml", + "version": "v3.4.43", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "e7fa05917ae931332a42d65b577ece4d497aad81" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/e7fa05917ae931332a42d65b577ece4d497aad81", + "reference": "e7fa05917ae931332a42d65b577ece4d497aad81", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/console": "<3.4" + }, + "require-dev": { + "symfony/console": "~3.4|~4.0" + }, + "suggest": { + "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\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Yaml Component", + "homepage": "https://symfony.com", + "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-23T09:37:51+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "2.2.3", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5", + "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^5.5 || ^7.0 || ^8.0", + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "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", + "time": "2020-07-13T06:12:54+00:00" + }, + { + "name": "tobscure/json-api", + "version": "v0.3.0", + "source": { + "type": "git", + "url": "https://github.com/tobscure/json-api.git", + "reference": "663d1c1299d4363758e8e440e5849134f218f45c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tobscure/json-api/zipball/663d1c1299d4363758e8e440e5849134f218f45c", + "reference": "663d1c1299d4363758e8e440e5849134f218f45c", + "shasum": "" + }, + "require": { + "php": ">=5.5.9" + }, + "require-dev": { + "phpunit/phpunit": "^4.8 || ^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "psr-4": { + "Tobscure\\JsonApi\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Toby Zerner", + "email": "toby.zerner@gmail.com" + } + ], + "description": "JSON-API responses in PHP", + "keywords": [ + "api", + "json", + "jsonapi", + "standard" + ], + "time": "2016-03-31T09:25:28+00:00" + }, + { + "name": "wikimedia/less.php", + "version": "v3.0.0", + "source": { + "type": "git", + "url": "https://github.com/wikimedia/less.php.git", + "reference": "5e2a4fba9304915c4cbf98cc9cb665a5c365c351" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wikimedia/less.php/zipball/5e2a4fba9304915c4cbf98cc9cb665a5c365c351", + "reference": "5e2a4fba9304915c4cbf98cc9cb665a5c365c351", + "shasum": "" + }, + "require": { + "php": ">=7.2.9" + }, + "require-dev": { + "jakub-onderka/php-parallel-lint": "1.0.0", + "mediawiki/minus-x": "1.0.0", + "phpunit/phpunit": "^8.5" + }, + "bin": [ + "bin/lessc" + ], + "type": "library", + "autoload": { + "psr-0": { + "Less": "lib/" + }, + "classmap": [ + "lessc.inc.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Josh Schmidt", + "homepage": "https://github.com/oyejorge" + }, + { + "name": "Matt Agar", + "homepage": "https://github.com/agar" + }, + { + "name": "Martin Jantošovič", + "homepage": "https://github.com/Mordred" + } + ], + "description": "PHP port of the Javascript version of LESS http://lesscss.org (Originally maintained by Josh Schmidt)", + "keywords": [ + "css", + "less", + "less.js", + "lesscss", + "php", + "stylesheet" + ], + "time": "2020-03-11T23:01:29+00:00" + } + ], + "packages-dev": [], + "aliases": [], + "minimum-stability": "beta", + "stability-flags": [], + "prefer-stable": true, + "prefer-lowest": false, + "platform": [], + "platform-dev": [], + "plugin-api-version": "1.1.0" +} diff --git a/nixbld-etc-nixos/flarum/default.nix b/nixbld-etc-nixos/flarum/default.nix new file mode 100644 index 0000000..54f279d --- /dev/null +++ b/nixbld-etc-nixos/flarum/default.nix @@ -0,0 +1,13 @@ +{pkgs ? import { + inherit system; + }, system ? builtins.currentSystem, noDev ? false}: + +let + composerEnv = import ./composer-env.nix { + inherit (pkgs) stdenv 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 new file mode 100644 index 0000000..69715a3 --- /dev/null +++ b/nixbld-etc-nixos/flarum/php-packages.nix @@ -0,0 +1,1238 @@ +{composerEnv, fetchurl, fetchgit ? null, fetchhg ? null, fetchsvn ? null, noDev ? false}: + +let + packages = { + "axy/backtrace" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "axy-backtrace-c6c7d0f3497a07ae934f9e8511cbc2286db311c5"; + src = fetchurl { + url = https://api.github.com/repos/axypro/backtrace/zipball/c6c7d0f3497a07ae934f9e8511cbc2286db311c5; + sha256 = "0m6apdlimay8jc2migzl53v7c28b9xw15ify7hy3xr15wawf503n"; + }; + }; + }; + "axy/codecs-base64vlq" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "axy-codecs-base64vlq-53a1957f2cb773c6533ac615b3f1ac59e40e13cc"; + src = fetchurl { + url = https://api.github.com/repos/axypro/codecs-base64vlq/zipball/53a1957f2cb773c6533ac615b3f1ac59e40e13cc; + sha256 = "1wzgh1cfkz7wz9jzi56mkgr57x9yxcrmw8qhl5bbsmf5fjbypq98"; + }; + }; + }; + "axy/errors" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "axy-errors-2c64374ae2b9ca51304c09b6b6acc275557fc34f"; + src = fetchurl { + url = https://api.github.com/repos/axypro/errors/zipball/2c64374ae2b9ca51304c09b6b6acc275557fc34f; + sha256 = "01nhzh53f88p0pzjd96wfgk61y604h9051giwh74qxrw2fmc7a7r"; + }; + }; + }; + "axy/sourcemap" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "axy-sourcemap-95a52df5a08c3a011031dae2e79390134e28467c"; + src = fetchurl { + url = https://api.github.com/repos/axypro/sourcemap/zipball/95a52df5a08c3a011031dae2e79390134e28467c; + sha256 = "05v1c6nkmzfffqy33x56alsxcpkjg5n4x83cpk0mpk8hzk6rprpz"; + }; + }; + }; + "components/font-awesome" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "components-font-awesome-1be57c473b964c8130f2dbd9edc4f64db5394114"; + src = fetchurl { + url = https://api.github.com/repos/components/font-awesome/zipball/1be57c473b964c8130f2dbd9edc4f64db5394114; + sha256 = "04881xx5xwz7qr0g3d1vw16yyn0qv9rkycb2kn4shkkl7l94vxh2"; + }; + }; + }; + "dflydev/fig-cookies" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "dflydev-fig-cookies-883233c159d00d39e940bd12cfe42c0d23420c1c"; + src = fetchurl { + url = https://api.github.com/repos/dflydev/dflydev-fig-cookies/zipball/883233c159d00d39e940bd12cfe42c0d23420c1c; + sha256 = "14ajs56lqk6ljdag46y1fhy6fc87nr735rgysvw6955r99npnxds"; + }; + }; + }; + "doctrine/cache" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "doctrine-cache-13e3381b25847283a91948d04640543941309727"; + src = fetchurl { + url = https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727; + sha256 = "088fxbpjssp8x95qr3ip2iynxrimimrby03xlsvp2254vcyx94c5"; + }; + }; + }; + "doctrine/dbal" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "doctrine-dbal-aab745e7b6b2de3b47019da81e7225e14dcfdac8"; + src = fetchurl { + url = https://api.github.com/repos/doctrine/dbal/zipball/aab745e7b6b2de3b47019da81e7225e14dcfdac8; + sha256 = "04c6r4p1b0iknjk95hpc4fsyxg8s2x1skfmnx2g11z64jvldzs62"; + }; + }; + }; + "doctrine/event-manager" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "doctrine-event-manager-41370af6a30faa9dc0368c4a6814d596e81aba7f"; + src = fetchurl { + url = https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f; + sha256 = "0pn2aiwl4fvv6fcwar9alng2yrqy8bzc58n4bkp6y2jnpw5gp4m8"; + }; + }; + }; + "doctrine/inflector" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "doctrine-inflector-4650c8b30c753a76bf44fb2ed00117d6f367490c"; + src = fetchurl { + url = https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c; + sha256 = "13jnzwpzz63i6zipmhb22lv35l5gq6wmji0532c94331wcq5bvv9"; + }; + }; + }; + "doctrine/lexer" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "doctrine-lexer-e864bbf5904cb8f5bb334f99209b48018522f042"; + src = fetchurl { + url = https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042; + sha256 = "11lg9fcy0crb8inklajhx3kyffdbx7xzdj8kwl21xsgq9nm9iwvv"; + }; + }; + }; + "egulias/email-validator" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "egulias-email-validator-840d5603eb84cc81a6a0382adac3293e57c1c64c"; + src = fetchurl { + url = https://api.github.com/repos/egulias/EmailValidator/zipball/840d5603eb84cc81a6a0382adac3293e57c1c64c; + sha256 = "02gwz6lw5cx3ja7pvgyqx37qs4ks7ki5lwii1j8a6d7x90s4y2jy"; + }; + }; + }; + "erusev/parsedown" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "erusev-parsedown-cb17b6477dfff935958ba01325f2e8a2bfa6dab3"; + src = fetchurl { + url = https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3; + sha256 = "1iil9v8g03m5vpxxg3a5qb2sxd1cs5c4p5i0k00cqjnjsxfrazxd"; + }; + }; + }; + "fig/http-message-util" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "fig-http-message-util-3242caa9da7221a304b8f84eb9eaddae0a7cf422"; + src = fetchurl { + url = https://api.github.com/repos/php-fig/http-message-util/zipball/3242caa9da7221a304b8f84eb9eaddae0a7cf422; + sha256 = "1cjbbsb8z4g340aqg8wrrc4vd9b7dksclqb7sh0xlmigjihn4shk"; + }; + }; + }; + "filp/whoops" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "filp-whoops-5d5fe9bb3d656b514d455645b3addc5f7ba7714d"; + src = fetchurl { + url = https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d; + sha256 = "09v5pzdjw92fi1xd4fa3h08mc55pg93za4nzd02n62x7vqp06mm8"; + }; + }; + }; + "flarum/approval" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-approval-a93aa0c490ea4e73ac9999b580734febcd9b97a5"; + src = fetchurl { + url = https://api.github.com/repos/flarum/approval/zipball/a93aa0c490ea4e73ac9999b580734febcd9b97a5; + sha256 = "08dmk828haksw1vrnlanl6008hrk5f7x34bch416l43mvkc4dfwq"; + }; + }; + }; + "flarum/auth-facebook" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-auth-facebook-434acf36b882b9deb0f6f1f1c1d03ad33d3e0936"; + src = fetchurl { + url = https://api.github.com/repos/flarum/auth-facebook/zipball/434acf36b882b9deb0f6f1f1c1d03ad33d3e0936; + sha256 = "1m6l0mhvllm6170anil7al5yjjgnrvdgb3iippc4gli5gj7cm4v9"; + }; + }; + }; + "flarum/auth-github" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-auth-github-d01b8349c49cf9807bdf9da86ff1d5f1a8d7c853"; + src = fetchurl { + url = https://api.github.com/repos/flarum/auth-github/zipball/d01b8349c49cf9807bdf9da86ff1d5f1a8d7c853; + sha256 = "0l91bjlkmpliqm45c9adfibnhk5dc8sx3v3r1k6ipi7v8rfa7d4v"; + }; + }; + }; + "flarum/auth-twitter" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-auth-twitter-f96265c36ccb49e0d16734907ffd6acb6108ce75"; + src = fetchurl { + url = https://api.github.com/repos/flarum/auth-twitter/zipball/f96265c36ccb49e0d16734907ffd6acb6108ce75; + sha256 = "0mchmwvdvd7pgpn22cvgskamghhb1sispn3r6yawdzbvs6fsb44j"; + }; + }; + }; + "flarum/bbcode" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-bbcode-165c47059e1f44cae56cc5462366c92ca96dcc33"; + src = fetchurl { + url = https://api.github.com/repos/flarum/bbcode/zipball/165c47059e1f44cae56cc5462366c92ca96dcc33; + sha256 = "1l0xrjdmjywdazdffn62y9aabxg7sa67b14lhmf0mhkfg6l4lyp9"; + }; + }; + }; + "flarum/core" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-core-fd371c1203439810af8f6814cdff402faebf4126"; + src = fetchurl { + url = https://api.github.com/repos/flarum/core/zipball/fd371c1203439810af8f6814cdff402faebf4126; + sha256 = "07rbnfj2n23p92jxxl2c879cqf5yq8pa0a14q6vyisarz2hl38d1"; + }; + }; + }; + "flarum/emoji" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-emoji-0155803b0503727c9962d3994f59e7f3d34dd629"; + src = fetchurl { + url = https://api.github.com/repos/flarum/emoji/zipball/0155803b0503727c9962d3994f59e7f3d34dd629; + sha256 = "0pff0m354lrgdnmmgqmplxvw9y5s375r8bhkxykjhn4w5m7az43f"; + }; + }; + }; + "flarum/flags" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-flags-dfa0b09545937b95010f63a122cdc16f9f23696c"; + src = fetchurl { + url = https://api.github.com/repos/flarum/flags/zipball/dfa0b09545937b95010f63a122cdc16f9f23696c; + sha256 = "0xvhiqrm3q5d5bqx7s4dqhj0gqjy1ir7idxyisqw9sf49df94y0r"; + }; + }; + }; + "flarum/lang-english" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-lang-english-9056fca21d357d24700aa11b98ff277f23542675"; + src = fetchurl { + url = https://api.github.com/repos/flarum/lang-english/zipball/9056fca21d357d24700aa11b98ff277f23542675; + sha256 = "1dhkikjc8yw64bmzx4drjx0yf1gnq46hlp609kx1m8qknvfmlnyc"; + }; + }; + }; + "flarum/likes" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-likes-18681e5d671fdc06a9e6b8c2bef2b1cd8ecafa66"; + src = fetchurl { + url = https://api.github.com/repos/flarum/likes/zipball/18681e5d671fdc06a9e6b8c2bef2b1cd8ecafa66; + sha256 = "109mj7gm4jy3dqj20cdah2zfymy9qnk5lp0wmh2817x88z87z6sh"; + }; + }; + }; + "flarum/lock" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-lock-9c44e335b6e9e9d38a72c278ff6e55c904ae0864"; + src = fetchurl { + url = https://api.github.com/repos/flarum/lock/zipball/9c44e335b6e9e9d38a72c278ff6e55c904ae0864; + sha256 = "1b0zg7wlfk66zi9wjxijv3fyqbhj9zpa2pnvwjm4sp0i51s57761"; + }; + }; + }; + "flarum/markdown" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-markdown-0fabad5137c535f561fb6464daf61b68dc6120d7"; + src = fetchurl { + url = https://api.github.com/repos/flarum/markdown/zipball/0fabad5137c535f561fb6464daf61b68dc6120d7; + sha256 = "0y3fiwsxsgn8vms447an4nc7pmwvs5bzfkn2yg6i18l6nj01zq0y"; + }; + }; + }; + "flarum/mentions" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-mentions-63e203b608bd86b6d0fbd9db189227a2d54bf12f"; + src = fetchurl { + url = https://api.github.com/repos/flarum/mentions/zipball/63e203b608bd86b6d0fbd9db189227a2d54bf12f; + sha256 = "1scdzgs2b2wh48imq578nwpanb9hqyzkrv0nhvrmi92ga7n8dbdb"; + }; + }; + }; + "flarum/pusher" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-pusher-0f4955004c16b9ce230307b6539b0e389d9804cd"; + src = fetchurl { + url = https://api.github.com/repos/flarum/pusher/zipball/0f4955004c16b9ce230307b6539b0e389d9804cd; + sha256 = "1a43bq4ij5j2irs12kpkafx1pdydm1h7kai8zg66w9j9jyrrxqf6"; + }; + }; + }; + "flarum/statistics" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-statistics-24f396e81e76d2ad0176d5818bea8110b1564820"; + src = fetchurl { + url = https://api.github.com/repos/flarum/statistics/zipball/24f396e81e76d2ad0176d5818bea8110b1564820; + sha256 = "14ybvqx34f11qnyzvbmfnyjv9an9jf8wjv2i2zrqbm02d1ja62mh"; + }; + }; + }; + "flarum/sticky" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-sticky-683c3742833d74243e75a30417a4d61ecdb87551"; + src = fetchurl { + url = https://api.github.com/repos/flarum/sticky/zipball/683c3742833d74243e75a30417a4d61ecdb87551; + sha256 = "1z46zjkn89y9jrijliyijn4xycr60kpcqyk7yabm08apflghss0n"; + }; + }; + }; + "flarum/subscriptions" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-subscriptions-bf017e06d7e312e37ef5309b26bc2ec55263731c"; + src = fetchurl { + url = https://api.github.com/repos/flarum/subscriptions/zipball/bf017e06d7e312e37ef5309b26bc2ec55263731c; + sha256 = "1mwqwqh453f2c69m23hkz23zd98k2mxqsd957ifry2yl62wv7lk0"; + }; + }; + }; + "flarum/suspend" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-suspend-095f9bada0ef251f48c38a608f523bfea6eba67e"; + src = fetchurl { + url = https://api.github.com/repos/flarum/suspend/zipball/095f9bada0ef251f48c38a608f523bfea6eba67e; + sha256 = "1ji0cg7mdiqpcbk8lxc6g8wlq2hcxzfirl6dwxhmhw0hmcqwrh0i"; + }; + }; + }; + "flarum/tags" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "flarum-tags-fa83f496b0004e31ef2f4fc854bfcdf6a4cfa3c3"; + src = fetchurl { + url = https://api.github.com/repos/flarum/tags/zipball/fa83f496b0004e31ef2f4fc854bfcdf6a4cfa3c3; + sha256 = "0vb47ysdfi2mlyfd3v4bqcqb6ylhv9zj8y92i3y8zkj9y65mzjcy"; + }; + }; + }; + "fof/upload" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "fof-upload-c21fab65ce6dc6cf696de88da1359f58d59a36ca"; + src = fetchurl { + url = https://api.github.com/repos/FriendsOfFlarum/upload/zipball/c21fab65ce6dc6cf696de88da1359f58d59a36ca; + sha256 = "1maha49pq2cdpn4h168qw8yvl98lsj85j33ymq395yfd4zg77ziw"; + }; + }; + }; + "franzl/whoops-middleware" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "franzl-whoops-middleware-625a80d90b22c38d8a9372187e76ae5f844e4412"; + src = fetchurl { + url = https://api.github.com/repos/franzliedke/whoops-middleware/zipball/625a80d90b22c38d8a9372187e76ae5f844e4412; + sha256 = "1gmrgh1nvr62xsq3gsxashfrqw69a2qihmk9vnrdzcf198ckwnyi"; + }; + }; + }; + "guzzlehttp/guzzle" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "guzzlehttp-guzzle-9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"; + src = fetchurl { + url = https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e; + sha256 = "1dlrdpil0173cmx73ghy8iis2j0lk00dzv3n166d0riky21n8djb"; + }; + }; + }; + "guzzlehttp/promises" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "guzzlehttp-promises-a59da6cf61d80060647ff4d3eb2c03a2bc694646"; + src = fetchurl { + url = https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646; + sha256 = "1kpl91fzalcgkcs16lpakvzcnbkry3id4ynx6xhq477p4fipdciz"; + }; + }; + }; + "guzzlehttp/psr7" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "guzzlehttp-psr7-239400de7a173fe9901b9ac7c06497751f00727a"; + src = fetchurl { + url = https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a; + sha256 = "0mfq93x7ayix6l3v5jkk40a9hnmrxaqr9vk1r26q39d1s6292ma7"; + }; + }; + }; + "illuminate/bus" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-bus-5cad4bff635071ff07c317aad200a8c2169f264f"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/bus/zipball/5cad4bff635071ff07c317aad200a8c2169f264f; + sha256 = "04w0hizxkfy98rrh1r7saqw4xkab12ld621hxhnrp53q83418y4a"; + }; + }; + }; + "illuminate/cache" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-cache-7998b137cc723dd5e68846ada33f8c0143f5b10f"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/cache/zipball/7998b137cc723dd5e68846ada33f8c0143f5b10f; + sha256 = "1ka41kw2f4jbm53iap0qkpa7wi8i59h3hrw9nnvray6n1igd8py0"; + }; + }; + }; + "illuminate/config" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-config-540e11b9ae058c9a94051d9ca6c02e40258c71fd"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/config/zipball/540e11b9ae058c9a94051d9ca6c02e40258c71fd; + sha256 = "0jl1hmlxcd953wp9ny1izjp6i2xyggj00hihkcarprplq767kcn6"; + }; + }; + }; + "illuminate/console" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-console-0d97b6ead0cbb09140b1e8317f5a9d9f69ff9ec6"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/console/zipball/0d97b6ead0cbb09140b1e8317f5a9d9f69ff9ec6; + sha256 = "0w42d1awawdapd21bg3icrxcrx9aw3kc0pcq0qz26i1020nn0021"; + }; + }; + }; + "illuminate/container" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-container-8c3a75e464d59509ae88db152cab61a3f115b9ec"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/container/zipball/8c3a75e464d59509ae88db152cab61a3f115b9ec; + sha256 = "1z570fxx2lfy84g1p2dz22lx44m0h7fw7vqnlfcvi3fczw579f7i"; + }; + }; + }; + "illuminate/contracts" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-contracts-b63324d349a8ae2156fbc2697c1ccc85879b3803"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/contracts/zipball/b63324d349a8ae2156fbc2697c1ccc85879b3803; + sha256 = "0g34fmhpjdw5cdx1r3dww4mym4izl3ywxy3rkxblxwb1j7328262"; + }; + }; + }; + "illuminate/database" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-database-c0702cb8c665cab8d080a81de5a44ac672b26d62"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/database/zipball/c0702cb8c665cab8d080a81de5a44ac672b26d62; + sha256 = "01lga1wghfbmax29hn0zw82zqilf7cgl2xl1sbyg0idi7ss6cq26"; + }; + }; + }; + "illuminate/events" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-events-e48888062a9962f30c431524357b9a815b093609"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/events/zipball/e48888062a9962f30c431524357b9a815b093609; + sha256 = "19b4p7b001wf6lskrjlnhm7yjp4viidlda9s5kh8rdqybvn2h9l5"; + }; + }; + }; + "illuminate/filesystem" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-filesystem-ff853e678a93996b1d0a3ddc6fc56c10bae0de30"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/filesystem/zipball/ff853e678a93996b1d0a3ddc6fc56c10bae0de30; + sha256 = "05pipw206aalma04rrky6ncglg4mnzxx1szd5wxafij2cw1pf92q"; + }; + }; + }; + "illuminate/hashing" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-hashing-c56e2e6cedadeddb677702820bec3c08097b9e44"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/hashing/zipball/c56e2e6cedadeddb677702820bec3c08097b9e44; + sha256 = "014y6czr4g6pcj6lp36rhlz2dvq4yx9bsbnykwha6gximq1lk6sd"; + }; + }; + }; + "illuminate/mail" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-mail-91ac88078b481f4b8bde7403f8bcb406be70769e"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/mail/zipball/91ac88078b481f4b8bde7403f8bcb406be70769e; + sha256 = "11m1xc5ll4972658gydjyf6502fd8cpcd075g7qyqr2drvmf5kjh"; + }; + }; + }; + "illuminate/pipeline" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-pipeline-63a6e66bfab88c9a7dd4bbb077634fac3df4aa2a"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/pipeline/zipball/63a6e66bfab88c9a7dd4bbb077634fac3df4aa2a; + sha256 = "1qv0iwpyi3lv6l0hgik4azicmbrr1n8sayv7s16kfg1r7wg0h6ly"; + }; + }; + }; + "illuminate/queue" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-queue-44babb781fd61c665afc865be981dd7a3b494796"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/queue/zipball/44babb781fd61c665afc865be981dd7a3b494796; + sha256 = "0lmmrgrlrzm31nsqcxq840y1r8gb9md1g1k5ign9pz3lhjwp602w"; + }; + }; + }; + "illuminate/session" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-session-0d1233ea455b9ad50112212022ca3bcff874fa86"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/session/zipball/0d1233ea455b9ad50112212022ca3bcff874fa86; + sha256 = "1fg7019kiwlqgzlg4l88455294ligdlq9bjdy0nq5sl5vqjcb1ji"; + }; + }; + }; + "illuminate/support" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-support-3e2810145f37eb89fa11759781ee88ee1c1a5262"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/support/zipball/3e2810145f37eb89fa11759781ee88ee1c1a5262; + sha256 = "1agi566ybjqq6nm703wmkm1gbdnscr67aljfyqgs72fgrb4pgazd"; + }; + }; + }; + "illuminate/translation" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-translation-4875559c0f32892c4070ca1185127c71fe18b8cb"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/translation/zipball/4875559c0f32892c4070ca1185127c71fe18b8cb; + sha256 = "1vhmfyn0xml78fcpiz0mkkj88hccvjp6baqrz7dg2rjarjc6b8zp"; + }; + }; + }; + "illuminate/validation" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-validation-ee897c6708685294ebaa1db8407f30a1fe62f7f3"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/validation/zipball/ee897c6708685294ebaa1db8407f30a1fe62f7f3; + sha256 = "17bwkv09cbn6nz6dzv3hhv5rwnhcxgkpc4h15ynnp1qch9w5g9jd"; + }; + }; + }; + "illuminate/view" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "illuminate-view-e19e4e16ad309503d27845383fc533a889581739"; + src = fetchurl { + url = https://api.github.com/repos/illuminate/view/zipball/e19e4e16ad309503d27845383fc533a889581739; + sha256 = "0j6wrr4w6hik3r872hmlnwpvfwp07jn1mzv326gjag0ylx8kyrwx"; + }; + }; + }; + "intervention/image" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "intervention-image-abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"; + src = fetchurl { + url = https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e; + sha256 = "1msfpr9bip69bmhg23ka2f43phgb6dq5z604j5psjh3xd86r6c5d"; + }; + }; + }; + "kylekatarnls/update-helper" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "kylekatarnls-update-helper-429be50660ed8a196e0798e5939760f168ec8ce9"; + src = fetchurl { + url = https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9; + sha256 = "02lzagbgykk5bqqa203vkyh6xxblvsg6d8sfgsrzp0g228my4qpz"; + }; + }; + }; + "laminas/laminas-diactoros" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "laminas-laminas-diactoros-6991c1af7c8d2c8efee81b22ba97024781824aaa"; + src = fetchurl { + url = https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa; + sha256 = "0rby0zv1sf8yh3qr2245r6mnjvzwfiydbskghazcrjld97nhgb6y"; + }; + }; + }; + "laminas/laminas-escaper" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "laminas-laminas-escaper-25f2a053eadfa92ddacb609dcbbc39362610da70"; + src = fetchurl { + url = https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70; + sha256 = "1ryp3is9rmnnb02mzr68nh5vymw3j3ycbzggc0a82r1m3d5g5ckg"; + }; + }; + }; + "laminas/laminas-httphandlerrunner" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "laminas-laminas-httphandlerrunner-e1a5dad040e0043135e8095ee27d1fbf6fb640e1"; + src = fetchurl { + url = https://api.github.com/repos/laminas/laminas-httphandlerrunner/zipball/e1a5dad040e0043135e8095ee27d1fbf6fb640e1; + sha256 = "0qn0ip0ahsw4y1w442yky4i5fhnddmmznbcpjyaq53jicxzgdpk1"; + }; + }; + }; + "laminas/laminas-stratigility" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "laminas-laminas-stratigility-3f88aa174324bc9e6dd55715f401f9f25dbd722c"; + src = fetchurl { + url = https://api.github.com/repos/laminas/laminas-stratigility/zipball/3f88aa174324bc9e6dd55715f401f9f25dbd722c; + sha256 = "1lvhh2w1wyyjmxll136ia9g1kmvpjqkglrs6hdcvwjwb3abjay91"; + }; + }; + }; + "laminas/laminas-zendframework-bridge" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "laminas-laminas-zendframework-bridge-4939c81f63a8a4968c108c440275c94955753b19"; + src = fetchurl { + url = https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/4939c81f63a8a4968c108c440275c94955753b19; + sha256 = "0ig89amx88a27bkzynwx8p40b2i20nysginy6pglq2niqjf6wih9"; + }; + }; + }; + "league/flysystem" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "league-flysystem-63cd8c14708b9544d3f61d3c15b747fda1c95c6e"; + src = fetchurl { + url = https://api.github.com/repos/thephpleague/flysystem/zipball/63cd8c14708b9544d3f61d3c15b747fda1c95c6e; + sha256 = "11px6xc87x5b7pm5fmfdnrs7qaadbvg9lbhcszgizdqwnny1c8hz"; + }; + }; + }; + "league/mime-type-detection" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "league-mime-type-detection-fda190b62b962d96a069fcc414d781db66d65b69"; + src = fetchurl { + url = https://api.github.com/repos/thephpleague/mime-type-detection/zipball/fda190b62b962d96a069fcc414d781db66d65b69; + sha256 = "15vxpkks81cxpwjxaw5kv5gwxx897jbmf6c4jdinw46rf6qpw1b0"; + }; + }; + }; + "league/oauth1-client" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "league-oauth1-client-fca5f160650cb74d23fc11aa570dd61f86dcf647"; + src = fetchurl { + url = https://api.github.com/repos/thephpleague/oauth1-client/zipball/fca5f160650cb74d23fc11aa570dd61f86dcf647; + sha256 = "19i4dhzlbda70qn1ma580b98zk7fy19w9h0w4xzjz19rx915ja4x"; + }; + }; + }; + "league/oauth2-client" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "league-oauth2-client-d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb"; + src = fetchurl { + url = https://api.github.com/repos/thephpleague/oauth2-client/zipball/d9f2a1e000dc14eb3c02e15d15759385ec7ff0fb; + sha256 = "088m3gh4q0x1qa8z22001wp5xw5jxnnfk5scfn33d1d9ran221vq"; + }; + }; + }; + "league/oauth2-facebook" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "league-oauth2-facebook-c482a851c93a6cb718270773635d6a0c8384b560"; + src = fetchurl { + url = https://api.github.com/repos/thephpleague/oauth2-facebook/zipball/c482a851c93a6cb718270773635d6a0c8384b560; + sha256 = "1izlavdvjh4qhb6bjv8giy99ik7vcfnx53iyash618qcdjv7aqni"; + }; + }; + }; + "league/oauth2-github" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "league-oauth2-github-e63d64f3ec167c09232d189c6b0c397458a99357"; + src = fetchurl { + url = https://api.github.com/repos/thephpleague/oauth2-github/zipball/e63d64f3ec167c09232d189c6b0c397458a99357; + sha256 = "1ashd92r61442jdgl5aba8dikj70y2niydi8by21fxqbwd59ajvx"; + }; + }; + }; + "matthiasmullie/minify" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "matthiasmullie-minify-9ba1b459828adc13430f4dd6c49dae4950dc4117"; + src = fetchurl { + url = https://api.github.com/repos/matthiasmullie/minify/zipball/9ba1b459828adc13430f4dd6c49dae4950dc4117; + sha256 = "1jmd09q2kkbkc263zqgqsmnjmycv1xp70xpqhxxbq61crl2ajqs7"; + }; + }; + }; + "matthiasmullie/path-converter" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "matthiasmullie-path-converter-e7d13b2c7e2f2268e1424aaed02085518afa02d9"; + src = fetchurl { + url = https://api.github.com/repos/matthiasmullie/path-converter/zipball/e7d13b2c7e2f2268e1424aaed02085518afa02d9; + sha256 = "0b42v65bwds4h9y8dgqxafvkxpwjqa7y236sfknd0jbhjdr1hj3r"; + }; + }; + }; + "middlewares/base-path" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "middlewares-base-path-18277023b9a4acdc85479071a10f702582c3a909"; + src = fetchurl { + url = https://api.github.com/repos/middlewares/base-path/zipball/18277023b9a4acdc85479071a10f702582c3a909; + sha256 = "17m7k1bdbmpavanh0bajrkjhmwf1vwc8lhf6p29rw6aygl1s58b4"; + }; + }; + }; + "middlewares/base-path-router" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "middlewares-base-path-router-1706ec57dbeb7083c7ea17561041f8dc2de3b37c"; + src = fetchurl { + url = https://api.github.com/repos/middlewares/base-path-router/zipball/1706ec57dbeb7083c7ea17561041f8dc2de3b37c; + sha256 = "1aa8lc0pjap74sx8ri3zhm65yq24v61pcki18mgbzy5837g3kq68"; + }; + }; + }; + "middlewares/request-handler" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "middlewares-request-handler-adcc7dd36361661bd62057a21c052643ede6c726"; + src = fetchurl { + url = https://api.github.com/repos/middlewares/request-handler/zipball/adcc7dd36361661bd62057a21c052643ede6c726; + sha256 = "0jngyfv08sbc1w3yjljpm9j9mpvgkm6i5vm3mz1gc0gzm6v180p7"; + }; + }; + }; + "middlewares/utils" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "middlewares-utils-7dc49454b4fbf249226023c7b77658b6068abfbc"; + src = fetchurl { + url = https://api.github.com/repos/middlewares/utils/zipball/7dc49454b4fbf249226023c7b77658b6068abfbc; + sha256 = "1rvbcm2s9xi8gwr12glrip8kpvjdd5x0vq9vzrvmamac861dv43f"; + }; + }; + }; + "monolog/monolog" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "monolog-monolog-1817faadd1846cd08be9a49e905dc68823bc38c0"; + src = fetchurl { + url = https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0; + sha256 = "1l277wfllaaf54v61h4by6637h43i6h0va15r7m82fp6rffydgb9"; + }; + }; + }; + "nesbot/carbon" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "nesbot-carbon-4be0c005164249208ce1b5ca633cd57bdd42ff33"; + src = fetchurl { + url = https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33; + sha256 = "15vddmcxpzfaglb0w7y49kahppnl7df0smhwpxgy5v05c5c0093a"; + }; + }; + }; + "nikic/fast-route" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "nikic-fast-route-31fa86924556b80735f98b294a7ffdfb26789f22"; + src = fetchurl { + url = https://api.github.com/repos/nikic/FastRoute/zipball/31fa86924556b80735f98b294a7ffdfb26789f22; + sha256 = "0wd29sbh0b9irn2y1qy511w5lc0qcz3r0npas02wmbxbxyv52m5k"; + }; + }; + }; + "opis/closure" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "opis-closure-e8d34df855b0a0549a300cb8cb4db472556e8aa9"; + src = fetchurl { + url = https://api.github.com/repos/opis/closure/zipball/e8d34df855b0a0549a300cb8cb4db472556e8aa9; + sha256 = "1g5fpd3gjqs0yxin6nd4z2w10gcq6isngk5x3zng6z1dw8ccqma0"; + }; + }; + }; + "paragonie/random_compat" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "paragonie-random_compat-84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"; + src = fetchurl { + url = https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95; + sha256 = "03nsccdvcb79l64b7lsmx0n8ldf5z3v8niqr7bpp6wg401qp9p09"; + }; + }; + }; + "psr/container" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "psr-container-b7ce3b176482dbbc1245ebf52b181af44c2cf55f"; + src = fetchurl { + url = https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f; + sha256 = "0rkz64vgwb0gfi09klvgay4qnw993l1dc03vyip7d7m2zxi6cy4j"; + }; + }; + }; + "psr/http-factory" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "psr-http-factory-12ac7fcd07e5b077433f5f2bee95b3a771bf61be"; + src = fetchurl { + url = https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be; + sha256 = "0inbnqpc5bfhbbda9dwazsrw9xscfnc8rdx82q1qm3r446mc1vds"; + }; + }; + }; + "psr/http-message" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "psr-http-message-f6561bf28d520154e4b0ec72be95418abe6d9363"; + src = fetchurl { + url = https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363; + sha256 = "195dd67hva9bmr52iadr4kyp2gw2f5l51lplfiay2pv6l9y4cf45"; + }; + }; + }; + "psr/http-server-handler" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "psr-http-server-handler-aff2f80e33b7f026ec96bb42f63242dc50ffcae7"; + src = fetchurl { + url = https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7; + sha256 = "0sfz1j9lxirsld0zm0bqqmxf52krjn982w3fq9n27q7mpjd33y4x"; + }; + }; + }; + "psr/http-server-middleware" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "psr-http-server-middleware-2296f45510945530b9dceb8bcedb5cb84d40c5f5"; + src = fetchurl { + url = https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5; + sha256 = "1r92xj2hybnxcnamxqklk5kivkgy0bi34hhsh00dnwn9wmf3s0gj"; + }; + }; + }; + "psr/log" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "psr-log-0f73288fd15629204f9d42b7055f72dacbe811fc"; + src = fetchurl { + url = https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc; + sha256 = "1npi9ggl4qll4sdxz1xgp8779ia73gwlpjxbb1f1cpl1wn4s42r4"; + }; + }; + }; + "psr/simple-cache" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "psr-simple-cache-408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"; + src = fetchurl { + url = https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b; + sha256 = "1djgzclkamjxi9jy4m9ggfzgq1vqxaga2ip7l3cj88p7rwkzjxgw"; + }; + }; + }; + "pusher/pusher-php-server" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "pusher-pusher-php-server-2cf2ba85e7ce3250468a1c42ab7c948a7d43839d"; + src = fetchurl { + url = https://api.github.com/repos/pusher/pusher-http-php/zipball/2cf2ba85e7ce3250468a1c42ab7c948a7d43839d; + sha256 = "16bk4yfmbzqd8z61vk6chk67kkva8s5dgn33xhyvqjk1i3w9frik"; + }; + }; + }; + "ralouphie/getallheaders" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "ralouphie-getallheaders-120b605dfeb996808c31b6477290a714d356e822"; + src = fetchurl { + url = https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822; + sha256 = "1bv7ndkkankrqlr2b4kw7qp3fl0dxi6bp26bnim6dnlhavd6a0gg"; + }; + }; + }; + "ramsey/uuid" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "ramsey-uuid-7e1633a6964b48589b142d60542f9ed31bd37a92"; + src = fetchurl { + url = https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92; + sha256 = "0s6z2c8jvwjmxzy2kqmxqpz0val9i5r757mdwf2yc7qrwm6bwd15"; + }; + }; + }; + "s9e/regexp-builder" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "s9e-regexp-builder-605b33841a766abd40ba3d07c15d0f62b5e7f033"; + src = fetchurl { + url = https://api.github.com/repos/s9e/RegexpBuilder/zipball/605b33841a766abd40ba3d07c15d0f62b5e7f033; + sha256 = "1xzy85xqknrpsl9sn661rszb311civv3zh4xncf3bg2jwmc086wp"; + }; + }; + }; + "s9e/sweetdom" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "s9e-sweetdom-f3a58c723fbe04d92ebcef5c8c7913bb364f58cd"; + src = fetchurl { + url = https://api.github.com/repos/s9e/SweetDOM/zipball/f3a58c723fbe04d92ebcef5c8c7913bb364f58cd; + sha256 = "1rmp5cg3j57a6wc99wgcrh81v7jmrn8crxswg53451cpiiw9fwkd"; + }; + }; + }; + "s9e/text-formatter" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "s9e-text-formatter-9a8e77826604e24deacbd280c2543b68b4ff2a84"; + src = fetchurl { + url = https://api.github.com/repos/s9e/TextFormatter/zipball/9a8e77826604e24deacbd280c2543b68b4ff2a84; + sha256 = "1g0349rfwx6yq3h1lz604fiwlaik961wan1ybhshcj52y25p0xj1"; + }; + }; + }; + "softcreatr/php-mime-detector" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "softcreatr-php-mime-detector-682651747adf0196fec007c2afaedc6dd44a941f"; + src = fetchurl { + url = https://api.github.com/repos/SoftCreatR/php-mime-detector/zipball/682651747adf0196fec007c2afaedc6dd44a941f; + sha256 = "0w06spmf4saw7yrgpqby9q1x87mnhx1fqgfl8y7zrglqnx2s3n9f"; + }; + }; + }; + "swiftmailer/swiftmailer" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "swiftmailer-swiftmailer-149cfdf118b169f7840bbe3ef0d4bc795d1780c9"; + src = fetchurl { + url = https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9; + sha256 = "0kscflkky6h7p7ambsf19rywnlnqslc503958cyriq5lg91nj9ri"; + }; + }; + }; + "symfony/config" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-config-9e2aa97f0d51f114983666f5aa362426d53e004a"; + src = fetchurl { + url = https://api.github.com/repos/symfony/config/zipball/9e2aa97f0d51f114983666f5aa362426d53e004a; + sha256 = "0gpva1fdla9idjj7xsn56kmsmccj2mr2w84lmvif35vamvgzmsgn"; + }; + }; + }; + "symfony/console" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-console-55d07021da933dd0d633ffdab6f45d5b230c7e02"; + src = fetchurl { + url = https://api.github.com/repos/symfony/console/zipball/55d07021da933dd0d633ffdab6f45d5b230c7e02; + sha256 = "15n095z603majh0brhwm307lzy43p0alp059q1qfgg4g0rb3dnzv"; + }; + }; + }; + "symfony/css-selector" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-css-selector-e544e24472d4c97b2d11ade7caacd446727c6bf9"; + src = fetchurl { + url = https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9; + sha256 = "1a1022qd93jw6drrsc1p7rhjv694n0qk0zg9mz6mfwihrnyrjf8n"; + }; + }; + }; + "symfony/debug" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-debug-47aa9064d75db36389692dd4d39895a0820f00f2"; + src = fetchurl { + url = https://api.github.com/repos/symfony/debug/zipball/47aa9064d75db36389692dd4d39895a0820f00f2; + sha256 = "017r9ngn1g65gg2i2rv8dfk6n7y5s7fd6kic3bwwhn6pf2kyjfbg"; + }; + }; + }; + "symfony/event-dispatcher" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-event-dispatcher-6140fc7047dafc5abbe84ba16a34a86c0b0229b8"; + src = fetchurl { + url = https://api.github.com/repos/symfony/event-dispatcher/zipball/6140fc7047dafc5abbe84ba16a34a86c0b0229b8; + sha256 = "1cfhyi73bjjdmyvazxxyd6kl93145m528l739sn3akpm0qixr55q"; + }; + }; + }; + "symfony/event-dispatcher-contracts" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-event-dispatcher-contracts-84e23fdcd2517bf37aecbd16967e83f0caee25a7"; + src = fetchurl { + url = https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7; + sha256 = "1pcfrlc0rg8vdnp23y3y1p5qzng5nxf5i2c36g9x9f480xrnc1fw"; + }; + }; + }; + "symfony/filesystem" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-filesystem-b27f491309db5757816db672b256ea2e03677d30"; + src = fetchurl { + url = https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30; + sha256 = "0gabsvz7pqycph6bhj51a5kspf3pynzhky2wz556fjydlw7aiq6m"; + }; + }; + }; + "symfony/finder" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-finder-2727aa35fddfada1dd37599948528e9b152eb742"; + src = fetchurl { + url = https://api.github.com/repos/symfony/finder/zipball/2727aa35fddfada1dd37599948528e9b152eb742; + sha256 = "1fq500kmxghw15lfpzhia9mqdxzq3c8pcrbw9ndbf5g0mi69hdg1"; + }; + }; + }; + "symfony/http-foundation" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-http-foundation-3675676b6a47f3e71d3ab10bcf53fb9239eb77e6"; + src = fetchurl { + url = https://api.github.com/repos/symfony/http-foundation/zipball/3675676b6a47f3e71d3ab10bcf53fb9239eb77e6; + sha256 = "1k9l60dp4cdlg1figihsx7hj0asa45ghjq3d1js0dzn3b1w4g6l0"; + }; + }; + }; + "symfony/mime" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-mime-149fb0ad35aae3c7637b496b38478797fa6a7ea6"; + src = fetchurl { + url = https://api.github.com/repos/symfony/mime/zipball/149fb0ad35aae3c7637b496b38478797fa6a7ea6; + sha256 = "1whqc28npd35zby0awig6y6dczzw3l1vy2cdi6bipkybvxncsij5"; + }; + }; + }; + "symfony/polyfill-ctype" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-polyfill-ctype-1c302646f6efc070cd46856e600e5e0684d6b454"; + src = fetchurl { + url = https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454; + sha256 = "17piwz6vhdch0kc7wd3h04sgrvpmw7dqfkrcj2dppid5j8v29lnv"; + }; + }; + }; + "symfony/polyfill-iconv" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-polyfill-iconv-6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"; + src = fetchurl { + url = https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36; + sha256 = "0lhdmym9mlfgjhsrgmxfvpjrpsq1n2wh5jyrgqkwjv0jib4qhccr"; + }; + }; + }; + "symfony/polyfill-intl-idn" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-polyfill-intl-idn-5dcab1bc7146cf8c1beaa4502a3d9be344334251"; + src = fetchurl { + url = https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251; + sha256 = "015saw0cl3108lqqax58p9q608193hh89dav4ril54na1yz6r3lz"; + }; + }; + }; + "symfony/polyfill-intl-normalizer" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-polyfill-intl-normalizer-37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"; + src = fetchurl { + url = https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e; + sha256 = "0dy6snii84dyific6xn6a3mz9shhp7wj4fyqjizg89jwvc3f7qdj"; + }; + }; + }; + "symfony/polyfill-mbstring" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-polyfill-mbstring-a6977d63bf9a0ad4c65cd352709e230876f9904a"; + 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"; + }; + }; + }; + "symfony/polyfill-php72" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-polyfill-php72-639447d008615574653fb3bc60d1986d7172eaae"; + src = fetchurl { + url = https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae; + sha256 = "1kqxamfcf5k8i3fh3950syg91rsk4bhjm83w5qjbia6xfm03awxz"; + }; + }; + }; + "symfony/polyfill-php73" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-polyfill-php73-fffa1a52a023e782cdcc221d781fe1ec8f87fcca"; + src = fetchurl { + url = https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca; + sha256 = "07sv5hjmadp879rq2q50d9rbwi2ki6rkap98yn0h7hq82q2yh1f0"; + }; + }; + }; + "symfony/polyfill-php80" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-polyfill-php80-d87d5766cbf48d72388a9f6b85f280c8ad51f981"; + src = fetchurl { + url = https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981; + sha256 = "1cxwqycsj776iqlib7np33l94ch3hal6a7dghq1b3xmm1j1450z7"; + }; + }; + }; + "symfony/process" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-process-65e70bab62f3da7089a8d4591fb23fbacacb3479"; + src = fetchurl { + url = https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479; + sha256 = "1w8p5xmj5z2gzgy4vf1hnsn1yp5x7sdxph72y66vs7mpqwcx3100"; + }; + }; + }; + "symfony/service-contracts" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-service-contracts-58c7475e5457c5492c26cc740cc0ad7464be9442"; + src = fetchurl { + url = https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442; + sha256 = "14rd5zcq3mk9l95m45y95lkydd72ak9cy5h3byviqpfzif1l3hq8"; + }; + }; + }; + "symfony/translation" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-translation-600b84224bf482441cd4d0026eba78755d2e2b34"; + src = fetchurl { + url = https://api.github.com/repos/symfony/translation/zipball/600b84224bf482441cd4d0026eba78755d2e2b34; + sha256 = "1djcnw02nnsw5mpja0nhkpvnmrsh0ibryx5347xfp1x2mc90l7k7"; + }; + }; + }; + "symfony/yaml" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "symfony-yaml-e7fa05917ae931332a42d65b577ece4d497aad81"; + src = fetchurl { + url = https://api.github.com/repos/symfony/yaml/zipball/e7fa05917ae931332a42d65b577ece4d497aad81; + sha256 = "0bnr3qk8jidwws8ph72jnld2pknyp4yqdmgf6pxanymv6jh6zfhv"; + }; + }; + }; + "tijsverkoyen/css-to-inline-styles" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "tijsverkoyen-css-to-inline-styles-b43b05cf43c1b6d849478965062b6ef73e223bb5"; + src = fetchurl { + url = https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5; + sha256 = "0lc6jviz8faqxxs453dbqvfdmm6l2iczxla22v2r6xhakl58pf3w"; + }; + }; + }; + "tobscure/json-api" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "tobscure-json-api-663d1c1299d4363758e8e440e5849134f218f45c"; + src = fetchurl { + url = https://api.github.com/repos/tobscure/json-api/zipball/663d1c1299d4363758e8e440e5849134f218f45c; + sha256 = "13nwva4d1d9mhdpw6psy2z6l6vb00jqiiyvc08bh1h4psnl4ap7x"; + }; + }; + }; + "wikimedia/less.php" = { + targetDir = ""; + src = composerEnv.buildZipPackage { + name = "wikimedia-less.php-5e2a4fba9304915c4cbf98cc9cb665a5c365c351"; + src = fetchurl { + url = https://api.github.com/repos/wikimedia/less.php/zipball/5e2a4fba9304915c4cbf98cc9cb665a5c365c351; + sha256 = "1w2b74s104jbzp6vr20a4mg3q0y5n77g4ilm4p3v325570giwhs7"; + }; + }; + }; + }; + devPackages = {}; +in +composerEnv.buildPackage { + inherit packages devPackages noDev; + name = "flarum-flarum"; + src = ./.; + executable = false; + symlinkDependencies = false; + meta = { + homepage = https://flarum.org/; + license = "MIT"; + }; +} \ No newline at end of file