diff --git a/app/Models/Account.php b/app/Models/Account.php
index 5fbfe9d2ab..71b211a6f2 100644
--- a/app/Models/Account.php
+++ b/app/Models/Account.php
@@ -1123,7 +1123,11 @@ class Account extends Eloquent
Session::put(SESSION_DATE_FORMAT, $this->date_format ? $this->date_format->format : DEFAULT_DATE_FORMAT);
Session::put(SESSION_DATE_PICKER_FORMAT, $this->date_format ? $this->date_format->picker_format : DEFAULT_DATE_PICKER_FORMAT);
- $currencyId = ($client && $client->currency_id) ? $client->currency_id : $this->currency_id ?: DEFAULT_CURRENCY;
+ //php 7.3
+ // $currencyId = ($client && $client->currency_id) ? $client->currency_id : $this->currency_id ?: DEFAULT_CURRENCY;
+ //php 7.4
+ $currencyId = ($client && $client->currency_id) ? $client->currency_id : ($this->currency_id ?: DEFAULT_CURRENCY);
+
$locale = ($client && $client->language_id) ? $client->language->locale : ($this->language_id ? $this->Language->locale : DEFAULT_LOCALE);
Session::put(SESSION_CURRENCY, $currencyId);
diff --git a/app/Models/Traits/Inviteable.php b/app/Models/Traits/Inviteable.php
index fc82845a3f..ea24f34563 100644
--- a/app/Models/Traits/Inviteable.php
+++ b/app/Models/Traits/Inviteable.php
@@ -74,7 +74,12 @@ trait Inviteable
}
}
- return $hasValue ? implode($parts, '
') : false;
+ //php 7.3
+ // return $hasValue ? implode($parts, '
') : false;
+
+
+ //php 7.4
+ return $hasValue ? implode('
', $parts) : false;
}
/**
diff --git a/composer.json b/composer.json
index c1fbca82fd..669cd3aa07 100644
--- a/composer.json
+++ b/composer.json
@@ -52,8 +52,8 @@
"league/flysystem-rackspace": "~1.0",
"league/fractal": "0.13.*",
"maatwebsite/excel": "~2.0",
- "mashape/unirest-php": "^3.0",
- "mpdf/mpdf": "7.1.7",
+ "mashape/unirest-php": "^3.0.5",
+ "mpdf/mpdf": "^8.0",
"nesbot/carbon": "^1.26",
"nwidart/laravel-modules": "2.0.*",
"omnipay/authorizenet": "dev-solution-id as 2.5.0",
@@ -187,6 +187,10 @@
{
"type": "vcs",
"url": "https://github.com/hillelcoren/omnipay-authorizenet"
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/loverg-c/unirest-php"
}
]
}
diff --git a/composer.lock b/composer.lock
index 80653a42b7..c1390d8937 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "4e271bd451143277846fb7dbbd66f807",
+ "content-hash": "aedfd9d6f1f246d52b7a3948da03eca9",
"packages": [
{
"name": "abdala/omnipay-pagseguro",
@@ -340,27 +340,74 @@
"time": "2018-10-29T10:10:13+00:00"
},
{
- "name": "aws/aws-sdk-php",
- "version": "3.171.21",
+ "name": "aws/aws-crt-php",
+ "version": "v1.0.2",
"source": {
"type": "git",
- "url": "https://github.com/aws/aws-sdk-php.git",
- "reference": "0455d92bb12d44f80db96a4e70861d186063e9e5"
+ "url": "https://github.com/awslabs/aws-crt-php.git",
+ "reference": "3942776a8c99209908ee0b287746263725685732"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/0455d92bb12d44f80db96a4e70861d186063e9e5",
- "reference": "0455d92bb12d44f80db96a4e70861d186063e9e5",
+ "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/3942776a8c99209908ee0b287746263725685732",
+ "reference": "3942776a8c99209908ee0b287746263725685732",
"shasum": ""
},
"require": {
+ "php": ">=5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35|^5.4.3"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "AWS SDK Common Runtime Team",
+ "email": "aws-sdk-common-runtime@amazon.com"
+ }
+ ],
+ "description": "AWS Common Runtime for PHP",
+ "homepage": "http://aws.amazon.com/sdkforphp",
+ "keywords": [
+ "amazon",
+ "aws",
+ "crt",
+ "sdk"
+ ],
+ "time": "2021-09-03T22:57:30+00:00"
+ },
+ {
+ "name": "aws/aws-sdk-php",
+ "version": "3.194.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/aws/aws-sdk-php.git",
+ "reference": "20084e36b549b005fdcd39fa48056670ae9a0829"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/20084e36b549b005fdcd39fa48056670ae9a0829",
+ "reference": "20084e36b549b005fdcd39fa48056670ae9a0829",
+ "shasum": ""
+ },
+ "require": {
+ "aws/aws-crt-php": "^1.0.2",
"ext-json": "*",
"ext-pcre": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0",
- "guzzlehttp/promises": "^1.0",
- "guzzlehttp/psr7": "^1.4.1",
- "mtdowling/jmespath.php": "^2.5",
+ "guzzlehttp/promises": "^1.4.0",
+ "guzzlehttp/psr7": "^1.7.0",
+ "mtdowling/jmespath.php": "^2.6",
"php": ">=5.5"
},
"require-dev": {
@@ -422,7 +469,7 @@
"s3",
"sdk"
],
- "time": "2021-01-21T19:15:43+00:00"
+ "time": "2021-09-23T18:16:55+00:00"
},
{
"name": "bacon/bacon-qr-code",
@@ -713,12 +760,6 @@
"phpstorm",
"sublime"
],
- "funding": [
- {
- "url": "https://github.com/barryvdh",
- "type": "github"
- }
- ],
"time": "2020-08-10T08:22:48+00:00"
},
{
@@ -1233,16 +1274,16 @@
},
{
"name": "composer/ca-bundle",
- "version": "1.2.9",
+ "version": "1.2.10",
"source": {
"type": "git",
"url": "https://github.com/composer/ca-bundle.git",
- "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5"
+ "reference": "9fdb22c2e97a614657716178093cd1da90a64aa8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
- "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
+ "url": "https://api.github.com/repos/composer/ca-bundle/zipball/9fdb22c2e97a614657716178093cd1da90a64aa8",
+ "reference": "9fdb22c2e97a614657716178093cd1da90a64aa8",
"shasum": ""
},
"require": {
@@ -1300,41 +1341,42 @@
"type": "tidelift"
}
],
- "time": "2021-01-12T12:10:35+00:00"
+ "time": "2021-06-07T13:58:28+00:00"
},
{
"name": "composer/composer",
- "version": "2.0.8",
+ "version": "2.1.8",
"source": {
"type": "git",
"url": "https://github.com/composer/composer.git",
- "reference": "62139b2806178adb979d76bd3437534a1a9fd490"
+ "reference": "24d38e9686092de05214cafa187dc282a5d89497"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
- "reference": "62139b2806178adb979d76bd3437534a1a9fd490",
+ "url": "https://api.github.com/repos/composer/composer/zipball/24d38e9686092de05214cafa187dc282a5d89497",
+ "reference": "24d38e9686092de05214cafa187dc282a5d89497",
"shasum": ""
},
"require": {
"composer/ca-bundle": "^1.0",
+ "composer/metadata-minifier": "^1.0",
"composer/semver": "^3.0",
"composer/spdx-licenses": "^1.2",
- "composer/xdebug-handler": "^1.1",
- "justinrainbow/json-schema": "^5.2.10",
+ "composer/xdebug-handler": "^2.0",
+ "justinrainbow/json-schema": "^5.2.11",
"php": "^5.3.2 || ^7.0 || ^8.0",
"psr/log": "^1.0",
"react/promise": "^1.2 || ^2.7",
"seld/jsonlint": "^1.4",
"seld/phar-utils": "^1.0",
- "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
- "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
- "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
- "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
+ "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
+ "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
+ "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
+ "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"phpspec/prophecy": "^1.10",
- "symfony/phpunit-bridge": "^4.2 || ^5.0"
+ "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0"
},
"suggest": {
"ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
@@ -1347,7 +1389,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0-dev"
+ "dev-master": "2.1-dev"
}
},
"autoload": {
@@ -1392,20 +1434,85 @@
"type": "tidelift"
}
],
- "time": "2020-12-03T16:20:39+00:00"
+ "time": "2021-09-15T11:55:15+00:00"
},
{
- "name": "composer/semver",
- "version": "3.2.4",
+ "name": "composer/metadata-minifier",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/composer/semver.git",
- "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
+ "url": "https://github.com/composer/metadata-minifier.git",
+ "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
- "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
+ "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
+ "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.2 || ^7.0 || ^8.0"
+ },
+ "require-dev": {
+ "composer/composer": "^2",
+ "phpstan/phpstan": "^0.12.55",
+ "symfony/phpunit-bridge": "^4.2 || ^5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\MetadataMinifier\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "description": "Small utility library that handles metadata minification and expansion.",
+ "keywords": [
+ "composer",
+ "compression"
+ ],
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-04-07T13:37:33+00:00"
+ },
+ {
+ "name": "composer/semver",
+ "version": "3.2.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/semver.git",
+ "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/semver/zipball/31f3ea725711245195f62e54ffa402d8ef2fdba9",
+ "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9",
"shasum": ""
},
"require": {
@@ -1468,7 +1575,7 @@
"type": "tidelift"
}
],
- "time": "2020-11-13T08:59:24+00:00"
+ "time": "2021-05-24T12:41:47+00:00"
},
{
"name": "composer/spdx-licenses",
@@ -1528,42 +1635,29 @@
"spdx",
"validator"
],
- "funding": [
- {
- "url": "https://packagist.com",
- "type": "custom"
- },
- {
- "url": "https://github.com/composer",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
- "type": "tidelift"
- }
- ],
"time": "2020-12-03T16:04:16+00:00"
},
{
"name": "composer/xdebug-handler",
- "version": "1.4.5",
+ "version": "2.0.2",
"source": {
"type": "git",
"url": "https://github.com/composer/xdebug-handler.git",
- "reference": "f28d44c286812c714741478d968104c5e604a1d4"
+ "reference": "84674dd3a7575ba617f5a76d7e9e29a7d3891339"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
- "reference": "f28d44c286812c714741478d968104c5e604a1d4",
+ "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/84674dd3a7575ba617f5a76d7e9e29a7d3891339",
+ "reference": "84674dd3a7575ba617f5a76d7e9e29a7d3891339",
"shasum": ""
},
"require": {
"php": "^5.3.2 || ^7.0 || ^8.0",
- "psr/log": "^1.0"
+ "psr/log": "^1 || ^2 || ^3"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
+ "phpstan/phpstan": "^0.12.55",
+ "symfony/phpunit-bridge": "^4.2 || ^5"
},
"type": "library",
"autoload": {
@@ -1600,7 +1694,7 @@
"type": "tidelift"
}
],
- "time": "2020-11-13T08:04:11+00:00"
+ "time": "2021-07-31T17:03:58+00:00"
},
{
"name": "container-interop/container-interop",
@@ -2080,35 +2174,32 @@
},
{
"name": "doctrine/annotations",
- "version": "1.11.1",
+ "version": "1.13.2",
"source": {
"type": "git",
"url": "https://github.com/doctrine/annotations.git",
- "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
+ "reference": "5b668aef16090008790395c02c893b1ba13f7e08"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
- "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
+ "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08",
+ "reference": "5b668aef16090008790395c02c893b1ba13f7e08",
"shasum": ""
},
"require": {
"doctrine/lexer": "1.*",
"ext-tokenizer": "*",
- "php": "^7.1 || ^8.0"
+ "php": "^7.1 || ^8.0",
+ "psr/cache": "^1 || ^2 || ^3"
},
"require-dev": {
- "doctrine/cache": "1.*",
+ "doctrine/cache": "^1.11 || ^2.0",
"doctrine/coding-standard": "^6.0 || ^8.1",
"phpstan/phpstan": "^0.12.20",
- "phpunit/phpunit": "^7.5 || ^9.1.5"
+ "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
+ "symfony/cache": "^4.4 || ^5.2"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.11.x-dev"
- }
- },
"autoload": {
"psr-4": {
"Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
@@ -2147,20 +2238,20 @@
"docblock",
"parser"
],
- "time": "2020-10-26T10:28:16+00:00"
+ "time": "2021-08-05T19:00:23+00:00"
},
{
"name": "doctrine/cache",
- "version": "1.10.2",
+ "version": "1.12.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/cache.git",
- "reference": "13e3381b25847283a91948d04640543941309727"
+ "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
- "reference": "13e3381b25847283a91948d04640543941309727",
+ "url": "https://api.github.com/repos/doctrine/cache/zipball/4cf401d14df219fa6f38b671f5493449151c9ad8",
+ "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8",
"shasum": ""
},
"require": {
@@ -2171,20 +2262,19 @@
},
"require-dev": {
"alcaeus/mongo-php-adapter": "^1.1",
- "doctrine/coding-standard": "^6.0",
+ "cache/integration-tests": "dev-master",
+ "doctrine/coding-standard": "^8.0",
"mongodb/mongodb": "^1.1",
- "phpunit/phpunit": "^7.0",
- "predis/predis": "~1.0"
+ "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
+ "predis/predis": "~1.0",
+ "psr/cache": "^1.0 || ^2.0 || ^3.0",
+ "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
+ "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
},
"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"
@@ -2243,30 +2333,30 @@
"type": "tidelift"
}
],
- "time": "2020-07-07T18:54:01+00:00"
+ "time": "2021-07-17T14:39:21+00:00"
},
{
"name": "doctrine/collections",
- "version": "1.6.7",
+ "version": "1.6.8",
"source": {
"type": "git",
"url": "https://github.com/doctrine/collections.git",
- "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
+ "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
- "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
+ "url": "https://api.github.com/repos/doctrine/collections/zipball/1958a744696c6bb3bb0d28db2611dc11610e78af",
+ "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af",
"shasum": ""
},
"require": {
"php": "^7.1.3 || ^8.0"
},
"require-dev": {
- "doctrine/coding-standard": "^6.0",
- "phpstan/phpstan-shim": "^0.9.2",
- "phpunit/phpunit": "^7.0",
- "vimeo/psalm": "^3.8.1"
+ "doctrine/coding-standard": "^9.0",
+ "phpstan/phpstan": "^0.12",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
+ "vimeo/psalm": "^4.2.1"
},
"type": "library",
"autoload": {
@@ -2308,7 +2398,7 @@
"iterators",
"php"
],
- "time": "2020-07-27T17:53:49+00:00"
+ "time": "2021-08-10T18:51:53+00:00"
},
{
"name": "doctrine/common",
@@ -2456,26 +2546,26 @@
},
{
"name": "doctrine/inflector",
- "version": "1.4.3",
+ "version": "1.4.4",
"source": {
"type": "git",
"url": "https://github.com/doctrine/inflector.git",
- "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
+ "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
- "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
+ "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0"
+ "php": "^7.1 || ^8.0"
},
"require-dev": {
- "doctrine/coding-standard": "^7.0",
- "phpstan/phpstan": "^0.11",
- "phpstan/phpstan-phpunit": "^0.11",
- "phpstan/phpstan-strict-rules": "^0.11",
+ "doctrine/coding-standard": "^8.0",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-phpunit": "^0.12",
+ "phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
},
"type": "library",
@@ -2544,7 +2634,7 @@
"type": "tidelift"
}
],
- "time": "2020-05-29T07:19:59+00:00"
+ "time": "2021-04-16T17:34:40+00:00"
},
{
"name": "doctrine/lexer",
@@ -2606,20 +2696,6 @@
"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"
},
{
@@ -2665,27 +2741,27 @@
},
{
"name": "egulias/email-validator",
- "version": "2.1.25",
+ "version": "3.1.1",
"source": {
"type": "git",
"url": "https://github.com/egulias/EmailValidator.git",
- "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
+ "reference": "c81f18a3efb941d8c4d2e025f6183b5c6d697307"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
- "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
+ "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c81f18a3efb941d8c4d2e025f6183b5c6d697307",
+ "reference": "c81f18a3efb941d8c4d2e025f6183b5c6d697307",
"shasum": ""
},
"require": {
- "doctrine/lexer": "^1.0.1",
- "php": ">=5.5",
- "symfony/polyfill-intl-idn": "^1.10"
+ "doctrine/lexer": "^1.2",
+ "php": ">=7.2",
+ "symfony/polyfill-intl-idn": "^1.15"
},
"require-dev": {
- "dominicsayers/isemail": "^3.0.7",
- "phpunit/phpunit": "^4.8.36|^7.5.15",
- "satooshi/php-coveralls": "^1.0.1"
+ "php-coveralls/php-coveralls": "^2.2",
+ "phpunit/phpunit": "^8.5.8|^9.3.3",
+ "vimeo/psalm": "^4"
},
"suggest": {
"ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
@@ -2693,7 +2769,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.1.x-dev"
+ "dev-master": "3.0.x-dev"
}
},
"autoload": {
@@ -2725,7 +2801,7 @@
"type": "github"
}
],
- "time": "2020-12-29T14:50:06+00:00"
+ "time": "2021-04-01T18:37:14+00:00"
},
{
"name": "erusev/parsedown",
@@ -2825,16 +2901,16 @@
},
{
"name": "firebase/php-jwt",
- "version": "v5.2.0",
+ "version": "v5.4.0",
"source": {
"type": "git",
"url": "https://github.com/firebase/php-jwt.git",
- "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb"
+ "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/firebase/php-jwt/zipball/feb0e820b8436873675fd3aca04f3728eb2185cb",
- "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb",
+ "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2",
+ "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2",
"shasum": ""
},
"require": {
@@ -2843,6 +2919,9 @@
"require-dev": {
"phpunit/phpunit": ">=4.8 <=9"
},
+ "suggest": {
+ "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
+ },
"type": "library",
"autoload": {
"psr-4": {
@@ -2871,7 +2950,7 @@
"jwt",
"php"
],
- "time": "2020-03-25T18:49:23+00:00"
+ "time": "2021-06-23T19:00:23+00:00"
},
{
"name": "fotografde/omnipay-checkoutcom",
@@ -3087,37 +3166,39 @@
},
{
"name": "google/apiclient",
- "version": "v2.9.1",
+ "version": "v2.11.0",
"source": {
"type": "git",
"url": "https://github.com/googleapis/google-api-php-client.git",
- "reference": "2fb6e702aca5d68203fa737f89f6f774022494c6"
+ "reference": "7db9eb40c8ba887e81c0fe84f2888a967396cdfb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/2fb6e702aca5d68203fa737f89f6f774022494c6",
- "reference": "2fb6e702aca5d68203fa737f89f6f774022494c6",
+ "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/7db9eb40c8ba887e81c0fe84f2888a967396cdfb",
+ "reference": "7db9eb40c8ba887e81c0fe84f2888a967396cdfb",
"shasum": ""
},
"require": {
"firebase/php-jwt": "~2.0||~3.0||~4.0||~5.0",
- "google/apiclient-services": "~0.13",
+ "google/apiclient-services": "~0.200",
"google/auth": "^1.10",
"guzzlehttp/guzzle": "~5.3.3||~6.0||~7.0",
- "guzzlehttp/psr7": "^1.2",
- "monolog/monolog": "^1.17|^2.0",
+ "guzzlehttp/psr7": "^1.7||^2.0.0",
+ "monolog/monolog": "^1.17||^2.0",
"php": "^5.6|^7.0|^8.0",
"phpseclib/phpseclib": "~2.0||^3.0.2"
},
"require-dev": {
"cache/filesystem-adapter": "^0.3.2|^1.1",
- "composer/composer": "^1.10",
+ "composer/composer": "^1.10.22",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/php-compatibility": "^9.2",
- "phpunit/phpunit": "^5.7||^8.5.13",
+ "phpspec/prophecy-phpunit": "^1.1||^2.0",
+ "phpunit/phpunit": "^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"squizlabs/php_codesniffer": "~2.3",
"symfony/css-selector": "~2.1",
- "symfony/dom-crawler": "~2.1"
+ "symfony/dom-crawler": "~2.1",
+ "yoast/phpunit-polyfills": "^1.0"
},
"suggest": {
"cache/filesystem-adapter": "For caching certs and tokens (using Google\\Client::setCache)"
@@ -3148,33 +3229,36 @@
"keywords": [
"google"
],
- "time": "2021-01-19T17:48:59+00:00"
+ "time": "2021-09-20T21:15:55+00:00"
},
{
"name": "google/apiclient-services",
- "version": "v0.157.0",
+ "version": "v0.213.0",
"source": {
"type": "git",
"url": "https://github.com/googleapis/google-api-php-client-services.git",
- "reference": "957846303c28c10033fa83d8688ffd325c260a3e"
+ "reference": "260311821505438eb9208b068da0d849b8ea9baa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/957846303c28c10033fa83d8688ffd325c260a3e",
- "reference": "957846303c28c10033fa83d8688ffd325c260a3e",
+ "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/260311821505438eb9208b068da0d849b8ea9baa",
+ "reference": "260311821505438eb9208b068da0d849b8ea9baa",
"shasum": ""
},
"require": {
- "php": ">=5.4"
+ "php": ">=5.6"
},
"require-dev": {
- "phpunit/phpunit": "^4.8|^5"
+ "phpunit/phpunit": "^5.7||^8.5.13"
},
"type": "library",
"autoload": {
- "psr-0": {
- "Google_Service_": "src"
- }
+ "psr-4": {
+ "Google\\Service\\": "src"
+ },
+ "files": [
+ "autoload.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3185,37 +3269,36 @@
"keywords": [
"google"
],
- "time": "2021-01-19T12:20:06+00:00"
+ "time": "2021-09-19T11:18:26+00:00"
},
{
"name": "google/auth",
- "version": "v1.14.3",
+ "version": "v1.18.0",
"source": {
"type": "git",
"url": "https://github.com/googleapis/google-auth-library-php.git",
- "reference": "c1503299c779af0cbc99b43788f75930988852cf"
+ "reference": "21dd478e77b0634ed9e3a68613f74ed250ca9347"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/c1503299c779af0cbc99b43788f75930988852cf",
- "reference": "c1503299c779af0cbc99b43788f75930988852cf",
+ "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/21dd478e77b0634ed9e3a68613f74ed250ca9347",
+ "reference": "21dd478e77b0634ed9e3a68613f74ed250ca9347",
"shasum": ""
},
"require": {
"firebase/php-jwt": "~2.0|~3.0|~4.0|~5.0",
"guzzlehttp/guzzle": "^5.3.1|^6.2.1|^7.0",
- "guzzlehttp/psr7": "^1.2",
+ "guzzlehttp/psr7": "^1.7|^2.0",
"php": ">=5.4",
- "psr/cache": "^1.0",
+ "psr/cache": "^1.0|^2.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"guzzlehttp/promises": "0.1.1|^1.3",
- "kelvinmo/simplejwt": "^0.2.5",
- "phpseclib/phpseclib": "^2",
+ "kelvinmo/simplejwt": "^0.2.5|^0.5.1",
+ "phpseclib/phpseclib": "^2.0.31",
"phpunit/phpunit": "^4.8.36|^5.7",
- "sebastian/comparator": ">=1.2.3",
- "squizlabs/php_codesniffer": "^3.5"
+ "sebastian/comparator": ">=1.2.3"
},
"suggest": {
"phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
@@ -3237,29 +3320,29 @@
"google",
"oauth2"
],
- "time": "2020-10-16T21:33:48+00:00"
+ "time": "2021-08-24T18:03:18+00:00"
},
{
"name": "google/cloud",
- "version": "v0.148.0",
+ "version": "v0.166.0",
"source": {
"type": "git",
"url": "https://github.com/googleapis/google-cloud-php.git",
- "reference": "2631206490abd617c647f15d47954f6c12561ede"
+ "reference": "1b33bf51926cd95022bd89bd2506862049eff476"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/googleapis/google-cloud-php/zipball/2631206490abd617c647f15d47954f6c12561ede",
- "reference": "2631206490abd617c647f15d47954f6c12561ede",
+ "url": "https://api.github.com/repos/googleapis/google-cloud-php/zipball/1b33bf51926cd95022bd89bd2506862049eff476",
+ "reference": "1b33bf51926cd95022bd89bd2506862049eff476",
"shasum": ""
},
"require": {
- "google/auth": "^1.6",
- "google/common-protos": "^1.0",
+ "google/auth": "^1.18",
+ "google/common-protos": "^1.3.1",
"google/crc32": "^0.1.0",
- "google/gax": "^1.1",
+ "google/gax": "^1.9",
"guzzlehttp/guzzle": "^5.3|^6.0|^7.0",
- "guzzlehttp/psr7": "^1.2",
+ "guzzlehttp/psr7": "^1.7|^2.0",
"monolog/monolog": "^1.1|^2.0",
"php": ">=5.5",
"psr/http-message": "1.0.*",
@@ -3267,67 +3350,114 @@
"rize/uri-template": "~0.3"
},
"replace": {
- "google/analytics-admin": "0.1.0",
- "google/analytics-data": "0.1.0",
- "google/cloud-asset": "1.3.0",
- "google/cloud-assured-workloads": "0.1.1",
- "google/cloud-automl": "1.3.2",
- "google/cloud-bigquery": "1.20.1",
- "google/cloud-bigquery-connection": "0.3.2",
- "google/cloud-bigquery-reservation": "0.2.2",
- "google/cloud-bigquery-storage": "1.0.2",
- "google/cloud-bigquerydatatransfer": "1.2.2",
- "google/cloud-bigtable": "1.7.1",
- "google/cloud-billing": "1.2.2",
+ "google/access-context-manager": "0.1.0",
+ "google/analytics-admin": "0.4.0",
+ "google/analytics-data": "0.7.0",
+ "google/cloud-access-approval": "0.2.0",
+ "google/cloud-api-gateway": "0.1.0",
+ "google/cloud-apigee-connect": "0.2.0",
+ "google/cloud-appengine-admin": "0.2.0",
+ "google/cloud-artifact-registry": "0.1.1",
+ "google/cloud-asset": "1.6.0",
+ "google/cloud-assured-workloads": "0.4.0",
+ "google/cloud-automl": "1.4.0",
+ "google/cloud-bigquery": "1.23.0",
+ "google/cloud-bigquery-connection": "0.5.0",
+ "google/cloud-bigquery-reservation": "0.4.0",
+ "google/cloud-bigquery-storage": "1.2.0",
+ "google/cloud-bigquerydatatransfer": "1.2.4",
+ "google/cloud-bigtable": "1.11.0",
+ "google/cloud-billing": "1.3.0",
+ "google/cloud-billing-budgets": "0.2.0",
+ "google/cloud-binary-authorization": "0.2.0",
+ "google/cloud-build": "0.1.0",
+ "google/cloud-channel": "0.5.0",
"google/cloud-common-protos": "0.2.1",
- "google/cloud-compute": "0.1.0",
- "google/cloud-container": "1.2.1",
- "google/cloud-core": "1.41.0",
- "google/cloud-data-catalog": "1.0.2",
- "google/cloud-dataproc": "1.3.2",
- "google/cloud-datastore": "1.12.2",
- "google/cloud-datastore-admin": "0.1.1",
- "google/cloud-debugger": "1.3.3",
- "google/cloud-dialogflow": "0.17.4",
- "google/cloud-dlp": "1.1.1",
- "google/cloud-error-reporting": "0.18.2",
- "google/cloud-firestore": "1.19.0",
- "google/cloud-game-servers": "0.2.1",
- "google/cloud-iot": "1.3.2",
- "google/cloud-kms": "1.11.2",
- "google/cloud-language": "0.24.4",
- "google/cloud-logging": "1.21.0",
- "google/cloud-memcache": "0.3.2",
+ "google/cloud-compute": "0.4.0",
+ "google/cloud-container": "1.5.0",
+ "google/cloud-core": "1.43.0",
+ "google/cloud-data-catalog": "1.0.4",
+ "google/cloud-data-fusion": "0.1.0",
+ "google/cloud-dataflow": "0.1.0",
+ "google/cloud-datalabeling": "0.1.0",
+ "google/cloud-dataproc": "2.2.0",
+ "google/cloud-dataproc-metastore": "0.2.0",
+ "google/cloud-datastore": "1.13.0",
+ "google/cloud-datastore-admin": "0.3.0",
+ "google/cloud-debugger": "1.4.0",
+ "google/cloud-dialogflow": "0.23.1",
+ "google/cloud-dlp": "1.2.0",
+ "google/cloud-dms": "0.2.0",
+ "google/cloud-domains": "0.1.0",
+ "google/cloud-error-reporting": "0.18.3",
+ "google/cloud-essential-contacts": "0.2.0",
+ "google/cloud-eventarc": "0.1.0",
+ "google/cloud-filestore": "0.1.0",
+ "google/cloud-firestore": "1.20.0",
+ "google/cloud-game-servers": "0.3.1",
+ "google/cloud-gke-connect-gateway": "0.1.0",
+ "google/cloud-gke-hub": "0.2.0",
+ "google/cloud-iam-credentials": "0.1.0",
+ "google/cloud-iap": "0.1.0",
+ "google/cloud-iot": "1.4.0",
+ "google/cloud-kms": "1.12.0",
+ "google/cloud-language": "0.26.0",
+ "google/cloud-life-sciences": "0.2.0",
+ "google/cloud-logging": "1.22.0",
+ "google/cloud-managed-identities": "0.1.0",
+ "google/cloud-media-translation": "0.2.0",
+ "google/cloud-memcache": "0.5.0",
"google/cloud-monitoring": "1.0.1",
- "google/cloud-osconfig": "0.1.1",
- "google/cloud-oslogin": "1.2.2",
- "google/cloud-pubsub": "1.29.4",
- "google/cloud-recaptcha-enterprise": "1.0.2",
- "google/cloud-recommendations-ai": "0.2.3",
- "google/cloud-recommender": "1.3.0",
- "google/cloud-redis": "1.2.2",
- "google/cloud-scheduler": "1.5.2",
- "google/cloud-secret-manager": "1.2.1",
- "google/cloud-security-center": "1.1.0",
- "google/cloud-security-private-ca": "0.1.0",
- "google/cloud-service-directory": "0.3.2",
- "google/cloud-spanner": "1.32.3",
- "google/cloud-speech": "1.3.2",
- "google/cloud-storage": "1.23.1",
- "google/cloud-talent": "0.15.1",
- "google/cloud-tasks": "1.8.2",
- "google/cloud-text-to-speech": "1.2.2",
- "google/cloud-trace": "1.3.2",
- "google/cloud-translate": "1.9.1",
- "google/cloud-videointelligence": "1.11.2",
- "google/cloud-vision": "1.2.2",
- "google/cloud-web-risk": "1.0.2",
- "google/cloud-web-security-scanner": "0.6.3",
- "google/cloud-workflows": "0.1.0"
+ "google/cloud-network-connectivity": "0.1.0",
+ "google/cloud-network-management": "0.1.0",
+ "google/cloud-notebooks": "0.2.0",
+ "google/cloud-orchestration-airflow": "0.1.0",
+ "google/cloud-org-policy": "0.2.0",
+ "google/cloud-osconfig": "0.3.0",
+ "google/cloud-oslogin": "1.3.0",
+ "google/cloud-policy-troubleshooter": "0.2.0",
+ "google/cloud-private-catalog": "0.2.0",
+ "google/cloud-profiler": "0.2.0",
+ "google/cloud-pubsub": "1.34.0",
+ "google/cloud-recaptcha-enterprise": "1.1.0",
+ "google/cloud-recommendations-ai": "0.3.0",
+ "google/cloud-recommender": "1.5.0",
+ "google/cloud-redis": "1.3.0",
+ "google/cloud-resource-manager": "0.2.0",
+ "google/cloud-resource-settings": "0.1.0",
+ "google/cloud-retail": "0.2.0",
+ "google/cloud-scheduler": "1.5.4",
+ "google/cloud-secret-manager": "1.7.0",
+ "google/cloud-security-center": "1.3.0",
+ "google/cloud-security-private-ca": "0.3.0",
+ "google/cloud-service-control": "0.3.0",
+ "google/cloud-service-directory": "0.6.0",
+ "google/cloud-service-management": "0.2.0",
+ "google/cloud-service-usage": "0.2.0",
+ "google/cloud-shell": "0.1.0",
+ "google/cloud-spanner": "1.45.0",
+ "google/cloud-speech": "1.4.0",
+ "google/cloud-sql-admin": "0.1.0",
+ "google/cloud-storage": "1.25.0",
+ "google/cloud-storage-transfer": "0.1.0",
+ "google/cloud-talent": "0.16.0",
+ "google/cloud-tasks": "1.9.1",
+ "google/cloud-text-to-speech": "1.3.0",
+ "google/cloud-tpu": "0.2.0",
+ "google/cloud-trace": "1.4.0",
+ "google/cloud-translate": "1.11.0",
+ "google/cloud-video-transcoder": "0.2.0",
+ "google/cloud-videointelligence": "1.12.3",
+ "google/cloud-vision": "1.5.0",
+ "google/cloud-vpc-access": "0.2.0",
+ "google/cloud-web-risk": "1.1.0",
+ "google/cloud-web-security-scanner": "0.7.0",
+ "google/cloud-workflows": "0.2.1"
},
"require-dev": {
"erusev/parsedown": "^1.6",
"google/cloud-tools": "^0.12.0",
+ "monolog/monolog": "<2.3.0",
"opis/closure": "^3.0",
"phpdocumentor/reflection": "^3.0",
"phpseclib/phpseclib": "^2",
@@ -3336,7 +3466,8 @@
"swaggest/json-schema": "^0.12.0",
"symfony/console": "^3.0",
"symfony/lock": "3.3.x-dev#1ba6ac9",
- "vierbergenlars/php-semver": "^3.0"
+ "vierbergenlars/php-semver": "^3.0",
+ "wikimedia/avro": "^1.9"
},
"suggest": {
"opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
@@ -3363,7 +3494,14 @@
"GPBMetadata\\Google\\": "CommonProtos/metadata",
"GPBMetadata\\Google\\Analytics\\Admin\\": "AnalyticsAdmin/metadata",
"GPBMetadata\\Google\\Analytics\\Data\\": "AnalyticsData/metadata",
+ "GPBMetadata\\Google\\Api\\Servicecontrol\\": "ServiceControl/metadata",
+ "GPBMetadata\\Google\\Api\\Servicemanagement\\": "ServiceManagement/metadata",
+ "GPBMetadata\\Google\\Api\\Serviceusage\\": "ServiceUsage/metadata",
+ "GPBMetadata\\Google\\Appengine\\": "AppEngineAdmin/metadata",
"GPBMetadata\\Google\\Bigtable\\": "Bigtable/metadata",
+ "GPBMetadata\\Google\\Cloud\\Accessapproval\\": "AccessApproval/metadata",
+ "GPBMetadata\\Google\\Cloud\\Apigateway\\": "ApiGateway/metadata",
+ "GPBMetadata\\Google\\Cloud\\Apigeeconnect\\": "ApigeeConnect/metadata",
"GPBMetadata\\Google\\Cloud\\Asset\\": "Asset/metadata",
"GPBMetadata\\Google\\Cloud\\Assuredworkloads\\": "AssuredWorkloads/metadata",
"GPBMetadata\\Google\\Cloud\\Automl\\": "AutoMl/metadata",
@@ -3372,57 +3510,102 @@
"GPBMetadata\\Google\\Cloud\\Bigquery\\Reservation\\": "BigQueryReservation/metadata",
"GPBMetadata\\Google\\Cloud\\Bigquery\\Storage\\": "BigQueryStorage/metadata",
"GPBMetadata\\Google\\Cloud\\Billing\\": "Billing/metadata",
+ "GPBMetadata\\Google\\Cloud\\Billing\\Budgets\\": "BillingBudgets/metadata",
+ "GPBMetadata\\Google\\Cloud\\Binaryauthorization\\": "BinaryAuthorization/metadata",
+ "GPBMetadata\\Google\\Cloud\\Channel\\": "Channel/metadata",
+ "GPBMetadata\\Google\\Cloud\\Clouddms\\": "Dms/metadata",
"GPBMetadata\\Google\\Cloud\\Compute\\": "Compute/metadata",
"GPBMetadata\\Google\\Cloud\\Datacatalog\\": "DataCatalog/metadata",
+ "GPBMetadata\\Google\\Cloud\\Datafusion\\": "DataFusion/metadata",
+ "GPBMetadata\\Google\\Cloud\\Datalabeling\\": "DataLabeling/metadata",
"GPBMetadata\\Google\\Cloud\\Dataproc\\": "Dataproc/metadata",
"GPBMetadata\\Google\\Cloud\\Dialogflow\\": "Dialogflow/metadata",
+ "GPBMetadata\\Google\\Cloud\\Domains\\": "Domains/metadata",
+ "GPBMetadata\\Google\\Cloud\\Essentialcontacts\\": "EssentialContacts/metadata",
+ "GPBMetadata\\Google\\Cloud\\Eventarc\\": "Eventarc/metadata",
+ "GPBMetadata\\Google\\Cloud\\Filestore\\": "Filestore/metadata",
"GPBMetadata\\Google\\Cloud\\Gaming\\": "Gaming/metadata",
+ "GPBMetadata\\Google\\Cloud\\Gkeconnect\\Gateway\\": "GkeConnectGateway/metadata",
+ "GPBMetadata\\Google\\Cloud\\Gkehub\\": "GkeHub/metadata",
+ "GPBMetadata\\Google\\Cloud\\Iap\\": "Iap/metadata",
"GPBMetadata\\Google\\Cloud\\Iot\\": "Iot/metadata",
"GPBMetadata\\Google\\Cloud\\Kms\\": "Kms/metadata",
"GPBMetadata\\Google\\Cloud\\Language\\": "Language/metadata",
+ "GPBMetadata\\Google\\Cloud\\Lifesciences\\": "LifeSciences/metadata",
+ "GPBMetadata\\Google\\Cloud\\Managedidentities\\": "ManagedIdentities/metadata",
+ "GPBMetadata\\Google\\Cloud\\Mediatranslation\\": "MediaTranslation/metadata",
"GPBMetadata\\Google\\Cloud\\Memcache\\": "Memcache/metadata",
- "GPBMetadata\\Google\\Cloud\\Orgpolicy\\": "Asset/external/metadata/Cloud/Orgpolicy",
+ "GPBMetadata\\Google\\Cloud\\Metastore\\": "DataprocMetastore/metadata",
+ "GPBMetadata\\Google\\Cloud\\Networkconnectivity\\": "NetworkConnectivity/metadata",
+ "GPBMetadata\\Google\\Cloud\\Networkmanagement\\": "NetworkManagement/metadata",
+ "GPBMetadata\\Google\\Cloud\\Notebooks\\": "Notebooks/metadata",
+ "GPBMetadata\\Google\\Cloud\\Orchestration\\Airflow\\Service\\": "OrchestrationAirflow/metadata",
+ "GPBMetadata\\Google\\Cloud\\Orgpolicy\\": [
+ "OrgPolicy/metadata",
+ "Asset/external/metadata/Cloud/Orgpolicy"
+ ],
"GPBMetadata\\Google\\Cloud\\Osconfig\\": "OsConfig/metadata",
"GPBMetadata\\Google\\Cloud\\Oslogin\\": "OsLogin/metadata",
+ "GPBMetadata\\Google\\Cloud\\Policytroubleshooter\\": "PolicyTroubleshooter/metadata",
+ "GPBMetadata\\Google\\Cloud\\Privatecatalog\\": "PrivateCatalog/metadata",
"GPBMetadata\\Google\\Cloud\\Recaptchaenterprise\\": "RecaptchaEnterprise/metadata",
"GPBMetadata\\Google\\Cloud\\Recommendationengine\\": "RecommendationEngine/metadata",
"GPBMetadata\\Google\\Cloud\\Recommender\\": "Recommender/metadata",
"GPBMetadata\\Google\\Cloud\\Redis\\": "Redis/metadata",
+ "GPBMetadata\\Google\\Cloud\\Resourcemanager\\": "ResourceManager/metadata",
+ "GPBMetadata\\Google\\Cloud\\Resourcesettings\\": "ResourceSettings/metadata",
+ "GPBMetadata\\Google\\Cloud\\Retail\\": "Retail/metadata",
"GPBMetadata\\Google\\Cloud\\Scheduler\\": "Scheduler/metadata",
"GPBMetadata\\Google\\Cloud\\Secretmanager\\": "SecretManager/metadata",
"GPBMetadata\\Google\\Cloud\\Secrets\\": "SecretManager/metadata",
"GPBMetadata\\Google\\Cloud\\Security\\Privateca\\": "SecurityPrivateCa/metadata",
"GPBMetadata\\Google\\Cloud\\Securitycenter\\": "SecurityCenter/metadata",
"GPBMetadata\\Google\\Cloud\\Servicedirectory\\": "ServiceDirectory/metadata",
+ "GPBMetadata\\Google\\Cloud\\Shell\\": "Shell/metadata",
"GPBMetadata\\Google\\Cloud\\Speech\\": "Speech/metadata",
+ "GPBMetadata\\Google\\Cloud\\Sql\\": "SqlAdmin/metadata",
"GPBMetadata\\Google\\Cloud\\Talent\\": "Talent/metadata",
"GPBMetadata\\Google\\Cloud\\Tasks\\": "Tasks/metadata",
"GPBMetadata\\Google\\Cloud\\Texttospeech\\": "TextToSpeech/metadata",
+ "GPBMetadata\\Google\\Cloud\\Tpu\\": "Tpu/metadata",
"GPBMetadata\\Google\\Cloud\\Translate\\": "Translate/metadata",
+ "GPBMetadata\\Google\\Cloud\\Video\\Transcoder\\": "VideoTranscoder/metadata",
"GPBMetadata\\Google\\Cloud\\Videointelligence\\": "VideoIntelligence/metadata",
"GPBMetadata\\Google\\Cloud\\Vision\\": "Vision/metadata",
+ "GPBMetadata\\Google\\Cloud\\Vpcaccess\\": "VpcAccess/metadata",
"GPBMetadata\\Google\\Cloud\\Webrisk\\": "WebRisk/metadata",
"GPBMetadata\\Google\\Cloud\\Websecurityscanner\\": "WebSecurityScanner/metadata",
"GPBMetadata\\Google\\Cloud\\Workflows\\": "Workflows/metadata",
"GPBMetadata\\Google\\Container\\": "Container/metadata",
+ "GPBMetadata\\Google\\Dataflow\\": "Dataflow/metadata",
"GPBMetadata\\Google\\Datastore\\": "Datastore/metadata",
"GPBMetadata\\Google\\Datastore\\Admin\\": "DatastoreAdmin/metadata",
+ "GPBMetadata\\Google\\Devtools\\Artifactregistry\\": "ArtifactRegistry/metadata",
+ "GPBMetadata\\Google\\Devtools\\Cloudbuild\\": "Build/metadata",
"GPBMetadata\\Google\\Devtools\\Clouddebugger\\": "Debugger/metadata",
"GPBMetadata\\Google\\Devtools\\Clouderrorreporting\\": "ErrorReporting/metadata",
+ "GPBMetadata\\Google\\Devtools\\Cloudprofiler\\": "Profiler/metadata",
"GPBMetadata\\Google\\Devtools\\Cloudtrace\\": "Trace/metadata",
"GPBMetadata\\Google\\Firestore\\": "Firestore/metadata",
- "GPBMetadata\\Google\\Identity\\": "Asset/external/metadata/Identity",
+ "GPBMetadata\\Google\\Iam\\Credentials\\": "IamCredentials/metadata",
+ "GPBMetadata\\Google\\Identity\\Accesscontextmanager\\": "AccessContextManager/metadata",
"GPBMetadata\\Google\\Logging\\": "Logging/metadata",
"GPBMetadata\\Google\\Monitoring\\": "Monitoring/metadata",
"GPBMetadata\\Google\\Privacy\\Dlp\\": "Dlp/metadata",
"GPBMetadata\\Google\\Pubsub\\": "PubSub/metadata",
"GPBMetadata\\Google\\Spanner\\": "Spanner/metadata",
+ "GPBMetadata\\Google\\Storagetransfer\\": "StorageTransfer/metadata",
"Google\\Analytics\\Admin\\": "AnalyticsAdmin/src",
+ "Google\\Analytics\\Data\\": "AnalyticsData/src",
"Google\\Cloud\\": [
"src",
"CommonProtos/src"
],
- "Google\\Analytics\\Data\\": "AnalyticsData/src",
+ "Google\\Cloud\\AccessApproval\\": "AccessApproval/src",
+ "Google\\Cloud\\ApiGateway\\": "ApiGateway/src",
+ "Google\\Cloud\\ApigeeConnect\\": "ApigeeConnect/src",
+ "Google\\Cloud\\AppEngine\\": "AppEngineAdmin/src",
+ "Google\\Cloud\\ArtifactRegistry\\": "ArtifactRegistry/src",
"Google\\Cloud\\Asset\\": "Asset/src",
"Google\\Cloud\\AssuredWorkloads\\": "AssuredWorkloads/src",
"Google\\Cloud\\AutoMl\\": "AutoMl/src",
@@ -3433,52 +3616,94 @@
"Google\\Cloud\\BigQuery\\Storage\\": "BigQueryStorage/src",
"Google\\Cloud\\Bigtable\\": "Bigtable/src",
"Google\\Cloud\\Billing\\": "Billing/src",
+ "Google\\Cloud\\Billing\\Budgets\\": "BillingBudgets/src",
+ "Google\\Cloud\\BinaryAuthorization\\": "BinaryAuthorization/src",
+ "Google\\Cloud\\Build\\": "Build/src",
+ "Google\\Cloud\\Channel\\": "Channel/src",
+ "Google\\Cloud\\CloudDms\\": "Dms/src",
"Google\\Cloud\\Compute\\": "Compute/src",
"Google\\Cloud\\Container\\": "Container/src",
"Google\\Cloud\\Core\\": "Core/src",
"Google\\Cloud\\DataCatalog\\": "DataCatalog/src",
+ "Google\\Cloud\\DataFusion\\": "DataFusion/src",
+ "Google\\Cloud\\DataLabeling\\": "DataLabeling/src",
+ "Google\\Cloud\\Dataflow\\": "Dataflow/src",
"Google\\Cloud\\Dataproc\\": "Dataproc/src",
"Google\\Cloud\\Datastore\\": "Datastore/src",
"Google\\Cloud\\Datastore\\Admin\\": "DatastoreAdmin/src",
"Google\\Cloud\\Debugger\\": "Debugger/src",
"Google\\Cloud\\Dialogflow\\": "Dialogflow/src",
"Google\\Cloud\\Dlp\\": "Dlp/src",
+ "Google\\Cloud\\Domains\\": "Domains/src",
"Google\\Cloud\\ErrorReporting\\": "ErrorReporting/src",
+ "Google\\Cloud\\EssentialContacts\\": "EssentialContacts/src",
+ "Google\\Cloud\\Eventarc\\": "Eventarc/src",
+ "Google\\Cloud\\Filestore\\": "Filestore/src",
"Google\\Cloud\\Firestore\\": "Firestore/src",
"Google\\Cloud\\Gaming\\": "Gaming/src",
+ "Google\\Cloud\\GkeConnect\\Gateway\\": "GkeConnectGateway/src",
+ "Google\\Cloud\\GkeHub\\": "GkeHub/src",
+ "Google\\Cloud\\Iam\\Credentials\\": "IamCredentials/src",
+ "Google\\Cloud\\Iap\\": "Iap/src",
"Google\\Cloud\\Iot\\": "Iot/src",
"Google\\Cloud\\Kms\\": "Kms/src",
"Google\\Cloud\\Language\\": "Language/src",
+ "Google\\Cloud\\LifeSciences\\": "LifeSciences/src",
"Google\\Cloud\\Logging\\": "Logging/src",
+ "Google\\Cloud\\ManagedIdentities\\": "ManagedIdentities/src",
+ "Google\\Cloud\\MediaTranslation\\": "MediaTranslation/src",
"Google\\Cloud\\Memcache\\": "Memcache/src",
+ "Google\\Cloud\\Metastore\\": "DataprocMetastore/src",
"Google\\Cloud\\Monitoring\\": "Monitoring/src",
- "Google\\Cloud\\OrgPolicy\\": "Asset/external/protos/Cloud/OrgPolicy",
+ "Google\\Cloud\\NetworkConnectivity\\": "NetworkConnectivity/src",
+ "Google\\Cloud\\NetworkManagement\\": "NetworkManagement/src",
+ "Google\\Cloud\\Notebooks\\": "Notebooks/src",
+ "Google\\Cloud\\Orchestration\\Airflow\\Service\\": "OrchestrationAirflow/src",
+ "Google\\Cloud\\OrgPolicy\\": [
+ "OrgPolicy/src",
+ "Asset/external/protos/Cloud/OrgPolicy"
+ ],
"Google\\Cloud\\OsConfig\\": "OsConfig/src",
"Google\\Cloud\\OsLogin\\": "OsLogin/src",
+ "Google\\Cloud\\PolicyTroubleshooter\\": "PolicyTroubleshooter/src",
+ "Google\\Cloud\\PrivateCatalog\\": "PrivateCatalog/src",
+ "Google\\Cloud\\Profiler\\": "Profiler/src",
"Google\\Cloud\\PubSub\\": "PubSub/src",
"Google\\Cloud\\RecaptchaEnterprise\\": "RecaptchaEnterprise/src",
"Google\\Cloud\\RecommendationEngine\\": "RecommendationEngine/src",
"Google\\Cloud\\Recommender\\": "Recommender/src",
"Google\\Cloud\\Redis\\": "Redis/src",
+ "Google\\Cloud\\ResourceManager\\": "ResourceManager/src",
+ "Google\\Cloud\\ResourceSettings\\": "ResourceSettings/src",
+ "Google\\Cloud\\Retail\\": "Retail/src",
"Google\\Cloud\\Scheduler\\": "Scheduler/src",
"Google\\Cloud\\SecretManager\\": "SecretManager/src",
"Google\\Cloud\\SecurityCenter\\": "SecurityCenter/src",
"Google\\Cloud\\Security\\PrivateCA\\": "SecurityPrivateCa/src",
+ "Google\\Cloud\\ServiceControl\\": "ServiceControl/src",
"Google\\Cloud\\ServiceDirectory\\": "ServiceDirectory/src",
+ "Google\\Cloud\\ServiceManagement\\": "ServiceManagement/src",
+ "Google\\Cloud\\ServiceUsage\\": "ServiceUsage/src",
+ "Google\\Cloud\\Shell\\": "Shell/src",
"Google\\Cloud\\Spanner\\": "Spanner/src",
"Google\\Cloud\\Speech\\": "Speech/src",
+ "Google\\Cloud\\Sql\\": "SqlAdmin/src",
+ "Google\\Cloud\\StorageTransfer\\": "StorageTransfer/src",
"Google\\Cloud\\Storage\\": "Storage/src",
"Google\\Cloud\\Talent\\": "Talent/src",
"Google\\Cloud\\Tasks\\": "Tasks/src",
"Google\\Cloud\\TextToSpeech\\": "TextToSpeech/src",
+ "Google\\Cloud\\Tpu\\": "Tpu/src",
"Google\\Cloud\\Trace\\": "Trace/src",
"Google\\Cloud\\Translate\\": "Translate/src",
"Google\\Cloud\\VideoIntelligence\\": "VideoIntelligence/src",
+ "Google\\Cloud\\Video\\Transcoder\\": "VideoTranscoder/src",
"Google\\Cloud\\Vision\\": "Vision/src",
+ "Google\\Cloud\\VpcAccess\\": "VpcAccess/src",
"Google\\Cloud\\WebRisk\\": "WebRisk/src",
"Google\\Cloud\\WebSecurityScanner\\": "WebSecurityScanner/src",
"Google\\Cloud\\Workflows\\": "Workflows/src",
- "Google\\Identity\\": "Asset/external/protos/Identity"
+ "Google\\Identity\\AccessContextManager\\": "AccessContextManager/src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3525,20 +3750,20 @@
"translation",
"vision"
],
- "time": "2021-01-13T22:28:48+00:00"
+ "time": "2021-09-15T00:52:58+00:00"
},
{
"name": "google/common-protos",
- "version": "1.3",
+ "version": "1.3.1",
"source": {
"type": "git",
"url": "https://github.com/googleapis/common-protos-php.git",
- "reference": "535f489ff1c3433c0ea64cd5aa0560f926949ac5"
+ "reference": "c348d1545fbeac7df3c101fdc687aba35f49811f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/535f489ff1c3433c0ea64cd5aa0560f926949ac5",
- "reference": "535f489ff1c3433c0ea64cd5aa0560f926949ac5",
+ "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/c348d1545fbeac7df3c101fdc687aba35f49811f",
+ "reference": "c348d1545fbeac7df3c101fdc687aba35f49811f",
"shasum": ""
},
"require": {
@@ -3564,7 +3789,7 @@
"keywords": [
"google"
],
- "time": "2020-08-26T16:05:09+00:00"
+ "time": "2021-06-29T15:42:12+00:00"
},
{
"name": "google/crc32",
@@ -3610,26 +3835,26 @@
},
{
"name": "google/gax",
- "version": "1.7.0",
+ "version": "v1.9.0",
"source": {
"type": "git",
"url": "https://github.com/googleapis/gax-php.git",
- "reference": "a2d48062b0ac0433da463a1f7c77ab672bbbfa08"
+ "reference": "30ca2be6125c8936e74ad17ec2b495bb26697a59"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/googleapis/gax-php/zipball/a2d48062b0ac0433da463a1f7c77ab672bbbfa08",
- "reference": "a2d48062b0ac0433da463a1f7c77ab672bbbfa08",
+ "url": "https://api.github.com/repos/googleapis/gax-php/zipball/30ca2be6125c8936e74ad17ec2b495bb26697a59",
+ "reference": "30ca2be6125c8936e74ad17ec2b495bb26697a59",
"shasum": ""
},
"require": {
- "google/auth": "^1.2.0",
+ "google/auth": "^1.18.0",
"google/common-protos": "^1.0",
"google/grpc-gcp": "^0.1.0",
"google/protobuf": "^3.12.2",
"grpc/grpc": "^1.13",
"guzzlehttp/promises": "^1.3",
- "guzzlehttp/psr7": "^1.2",
+ "guzzlehttp/psr7": "^1.7.0|^2",
"php": ">=5.5"
},
"conflict": {
@@ -3655,7 +3880,7 @@
"keywords": [
"google"
],
- "time": "2021-01-06T16:47:47+00:00"
+ "time": "2021-09-01T16:16:42+00:00"
},
{
"name": "google/grpc-gcp",
@@ -3700,16 +3925,16 @@
},
{
"name": "google/protobuf",
- "version": "v3.14.0",
+ "version": "v3.18.0",
"source": {
"type": "git",
"url": "https://github.com/protocolbuffers/protobuf-php.git",
- "reference": "03f132a66f09f96064309e81c5fac8d35b7474e1"
+ "reference": "24fed401306c943be38a1371ca2f3db2cd8137fb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/03f132a66f09f96064309e81c5fac8d35b7474e1",
- "reference": "03f132a66f09f96064309e81c5fac8d35b7474e1",
+ "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/24fed401306c943be38a1371ca2f3db2cd8137fb",
+ "reference": "24fed401306c943be38a1371ca2f3db2cd8137fb",
"shasum": ""
},
"require": {
@@ -3737,20 +3962,20 @@
"keywords": [
"proto"
],
- "time": "2020-11-13T23:41:35+00:00"
+ "time": "2021-09-15T17:41:56+00:00"
},
{
"name": "grpc/grpc",
- "version": "1.35.0",
+ "version": "1.39.0",
"source": {
"type": "git",
"url": "https://github.com/grpc/grpc-php.git",
- "reference": "cf75367acfcf154331f97d1525f9f46383b7891d"
+ "reference": "101485614283d1ecb6b2ad1d5b95dc82495931db"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/grpc/grpc-php/zipball/cf75367acfcf154331f97d1525f9f46383b7891d",
- "reference": "cf75367acfcf154331f97d1525f9f46383b7891d",
+ "url": "https://api.github.com/repos/grpc/grpc-php/zipball/101485614283d1ecb6b2ad1d5b95dc82495931db",
+ "reference": "101485614283d1ecb6b2ad1d5b95dc82495931db",
"shasum": ""
},
"require": {
@@ -3778,7 +4003,7 @@
"keywords": [
"rpc"
],
- "time": "2021-01-20T20:15:34+00:00"
+ "time": "2021-07-23T23:04:53+00:00"
},
{
"name": "guzzle/guzzle",
@@ -3945,16 +4170,16 @@
},
{
"name": "guzzlehttp/promises",
- "version": "1.4.0",
+ "version": "1.4.1",
"source": {
"type": "git",
"url": "https://github.com/guzzle/promises.git",
- "reference": "60d379c243457e073cff02bc323a2a86cb355631"
+ "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
- "reference": "60d379c243457e073cff02bc323a2a86cb355631",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
+ "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
"shasum": ""
},
"require": {
@@ -3992,20 +4217,20 @@
"keywords": [
"promise"
],
- "time": "2020-09-30T07:37:28+00:00"
+ "time": "2021-03-07T09:25:29+00:00"
},
{
"name": "guzzlehttp/psr7",
- "version": "1.7.0",
+ "version": "1.8.2",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
- "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
+ "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
- "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
+ "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
"shasum": ""
},
"require": {
@@ -4063,7 +4288,7 @@
"uri",
"url"
],
- "time": "2020-09-30T07:37:11+00:00"
+ "time": "2021-04-26T09:17:50+00:00"
},
{
"name": "illuminate/html",
@@ -4118,22 +4343,22 @@
"source": {
"type": "git",
"url": "https://github.com/Intervention/image.git",
- "reference": "032263954ca2a5258fb5fe7492962c1a16ca9f3c"
+ "reference": "1d22091590183fc48b3811ada0800b9b4e365dfd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Intervention/image/zipball/032263954ca2a5258fb5fe7492962c1a16ca9f3c",
- "reference": "032263954ca2a5258fb5fe7492962c1a16ca9f3c",
+ "url": "https://api.github.com/repos/Intervention/image/zipball/1d22091590183fc48b3811ada0800b9b4e365dfd",
+ "reference": "1d22091590183fc48b3811ada0800b9b4e365dfd",
"shasum": ""
},
"require": {
"ext-fileinfo": "*",
- "guzzlehttp/psr7": "~1.1",
+ "guzzlehttp/psr7": "~1.1 || ^2.0",
"php": ">=5.4.0"
},
"require-dev": {
"mockery/mockery": "~0.9.2",
- "phpunit/phpunit": "^4.8 || ^5.7"
+ "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
},
"suggest": {
"ext-gd": "to use GD library based image processing.",
@@ -4190,7 +4415,7 @@
"type": "github"
}
],
- "time": "2020-11-06T15:12:52+00:00"
+ "time": "2021-08-26T14:16:35+00:00"
},
{
"name": "jakoch/phantomjs-installer",
@@ -4325,23 +4550,23 @@
},
{
"name": "jaybizzle/crawler-detect",
- "version": "v1.2.103",
+ "version": "v1.2.106",
"source": {
"type": "git",
"url": "https://github.com/JayBizzle/Crawler-Detect.git",
- "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3"
+ "reference": "78bf6792cbf9c569dc0bf2465481978fd2ed0de9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/3efa2860959cc971f17624b40bf0699823f9d0f3",
- "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3",
+ "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/78bf6792cbf9c569dc0bf2465481978fd2ed0de9",
+ "reference": "78bf6792cbf9c569dc0bf2465481978fd2ed0de9",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.8|^5.5|^6.5"
+ "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
},
"type": "library",
"autoload": {
@@ -4369,7 +4594,7 @@
"crawlerdetect",
"php crawler detect"
],
- "time": "2020-11-23T19:49:25+00:00"
+ "time": "2021-05-24T20:30:32+00:00"
},
{
"name": "jaybizzle/laravel-crawler-detect",
@@ -4662,16 +4887,16 @@
},
{
"name": "justinrainbow/json-schema",
- "version": "5.2.10",
+ "version": "5.2.11",
"source": {
"type": "git",
"url": "https://github.com/justinrainbow/json-schema.git",
- "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
+ "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
- "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
+ "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ab6744b7296ded80f8cc4f9509abbff393399aa",
+ "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa",
"shasum": ""
},
"require": {
@@ -4724,7 +4949,7 @@
"json",
"schema"
],
- "time": "2020-05-27T16:41:55+00:00"
+ "time": "2021-07-22T09:24:00+00:00"
},
{
"name": "kylekatarnls/update-helper",
@@ -4769,20 +4994,6 @@
}
],
"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"
},
{
@@ -5074,22 +5285,22 @@
},
{
"name": "league/csv",
- "version": "9.6.2",
+ "version": "9.7.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/csv.git",
- "reference": "f28da6e483bf979bac10e2add384c90ae9983e4e"
+ "reference": "0ec57e8264ec92565974ead0d1724cf1026e10c1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/csv/zipball/f28da6e483bf979bac10e2add384c90ae9983e4e",
- "reference": "f28da6e483bf979bac10e2add384c90ae9983e4e",
+ "url": "https://api.github.com/repos/thephpleague/csv/zipball/0ec57e8264ec92565974ead0d1724cf1026e10c1",
+ "reference": "0ec57e8264ec92565974ead0d1724cf1026e10c1",
"shasum": ""
},
"require": {
"ext-json": "*",
"ext-mbstring": "*",
- "php": ">=7.2.5"
+ "php": "^7.3 || ^8.0"
},
"require-dev": {
"ext-curl": "*",
@@ -5098,7 +5309,7 @@
"phpstan/phpstan": "^0.12.0",
"phpstan/phpstan-phpunit": "^0.12.0",
"phpstan/phpstan-strict-rules": "^0.12.0",
- "phpunit/phpunit": "^8.5"
+ "phpunit/phpunit": "^9.5"
},
"suggest": {
"ext-dom": "Required to use the XMLConverter and or the HTMLConverter classes",
@@ -5148,20 +5359,20 @@
"type": "github"
}
],
- "time": "2020-12-10T19:40:30+00:00"
+ "time": "2021-04-17T16:32:08+00:00"
},
{
"name": "league/flysystem",
- "version": "1.1.4",
+ "version": "1.1.5",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32"
+ "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
- "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea",
+ "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea",
"shasum": ""
},
"require": {
@@ -5238,7 +5449,7 @@
"type": "other"
}
],
- "time": "2021-06-23T21:56:05+00:00"
+ "time": "2021-08-17T13:49:42+00:00"
},
{
"name": "league/flysystem-aws-s3-v3",
@@ -5437,36 +5648,27 @@
}
],
"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": "2021-01-18T20:58:21+00:00"
},
{
"name": "league/oauth1-client",
- "version": "v1.9.0",
+ "version": "v1.10.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/oauth1-client.git",
- "reference": "1e7e6be2dc543bf466236fb171e5b20e1b06aee6"
+ "reference": "88dd16b0cff68eb9167bfc849707d2c40ad91ddc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/1e7e6be2dc543bf466236fb171e5b20e1b06aee6",
- "reference": "1e7e6be2dc543bf466236fb171e5b20e1b06aee6",
+ "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/88dd16b0cff68eb9167bfc849707d2c40ad91ddc",
+ "reference": "88dd16b0cff68eb9167bfc849707d2c40ad91ddc",
"shasum": ""
},
"require": {
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^6.0|^7.0",
+ "guzzlehttp/psr7": "^1.7|^2.0",
"php": ">=7.1||>=8.0"
},
"require-dev": {
@@ -5518,7 +5720,7 @@
"tumblr",
"twitter"
],
- "time": "2021-01-20T01:40:53+00:00"
+ "time": "2021-08-15T23:05:49+00:00"
},
{
"name": "league/url",
@@ -5704,16 +5906,16 @@
},
{
"name": "mashape/unirest-php",
- "version": "v3.0.4",
+ "version": "v3.0.5",
"source": {
"type": "git",
- "url": "https://github.com/Mashape/unirest-php.git",
- "reference": "842c0f242dfaaf85f16b72e217bf7f7c19ab12cb"
+ "url": "https://github.com/loverg-c/unirest-php.git",
+ "reference": "45e63d680c4d7258b2cf45bfa28d42ee024b7fee"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Mashape/unirest-php/zipball/842c0f242dfaaf85f16b72e217bf7f7c19ab12cb",
- "reference": "842c0f242dfaaf85f16b72e217bf7f7c19ab12cb",
+ "url": "https://api.github.com/repos/loverg-c/unirest-php/zipball/45e63d680c4d7258b2cf45bfa28d42ee024b7fee",
+ "reference": "45e63d680c4d7258b2cf45bfa28d42ee024b7fee",
"shasum": ""
},
"require": {
@@ -5733,7 +5935,6 @@
"Unirest\\": "src/"
}
},
- "notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
@@ -5746,7 +5947,11 @@
"https",
"rest"
],
- "time": "2016-08-11T17:49:21+00:00"
+ "support": {
+ "email": "opensource@mashape.com",
+ "source": "https://github.com/loverg-c/unirest-php/tree/v3.0.5"
+ },
+ "time": "2020-02-25T11:14:07+00:00"
},
{
"name": "maximebf/debugbar",
@@ -6009,16 +6214,16 @@
},
{
"name": "monolog/monolog",
- "version": "1.26.0",
+ "version": "1.26.1",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/monolog.git",
- "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33"
+ "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/2209ddd84e7ef1256b7af205d0717fb62cfc9c33",
- "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c6b00f05152ae2c9b04a448f99c7590beb6042f5",
+ "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5",
"shasum": ""
},
"require": {
@@ -6087,36 +6292,37 @@
"type": "tidelift"
}
],
- "time": "2020-12-14T12:56:38+00:00"
+ "time": "2021-05-28T08:32:12+00:00"
},
{
"name": "mpdf/mpdf",
- "version": "v7.1.7",
+ "version": "v8.0.13",
"source": {
"type": "git",
"url": "https://github.com/mpdf/mpdf.git",
- "reference": "ac60286a7dc5250c293afebd2bd9414e58a02466"
+ "reference": "42f145615cfe830fd432474da1d2e1f927efe402"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/mpdf/mpdf/zipball/ac60286a7dc5250c293afebd2bd9414e58a02466",
- "reference": "ac60286a7dc5250c293afebd2bd9414e58a02466",
+ "url": "https://api.github.com/repos/mpdf/mpdf/zipball/42f145615cfe830fd432474da1d2e1f927efe402",
+ "reference": "42f145615cfe830fd432474da1d2e1f927efe402",
"shasum": ""
},
"require": {
"ext-gd": "*",
"ext-mbstring": "*",
"myclabs/deep-copy": "^1.7",
- "paragonie/random_compat": "^1.4|^2.0|9.99.99",
- "php": "^5.6 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0",
+ "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
+ "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0",
"psr/log": "^1.0",
- "setasign/fpdi": "1.6.*"
+ "setasign/fpdi": "^2.1"
},
"require-dev": {
- "mockery/mockery": "^0.9.5",
- "phpunit/phpunit": "^5.0",
- "squizlabs/php_codesniffer": "^2.7.0",
- "tracy/tracy": "^2.4"
+ "mockery/mockery": "^1.3.0",
+ "mpdf/qrcode": "^1.1.0",
+ "squizlabs/php_codesniffer": "^3.5.0",
+ "tracy/tracy": "^2.4",
+ "yoast/phpunit-polyfills": "^1.0"
},
"suggest": {
"ext-bcmath": "Needed for generation of some types of barcodes",
@@ -6124,11 +6330,6 @@
"ext-zlib": "Needed for compression of embedded resources, such as fonts"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-development": "7.x-dev"
- }
- },
"autoload": {
"psr-4": {
"Mpdf\\": "src/"
@@ -6155,7 +6356,13 @@
"php",
"utf-8"
],
- "time": "2018-11-29T18:21:32+00:00"
+ "funding": [
+ {
+ "url": "https://www.paypal.me/mpdf",
+ "type": "custom"
+ }
+ ],
+ "time": "2021-09-10T10:09:59+00:00"
},
{
"name": "mtdowling/cron-expression",
@@ -6204,16 +6411,16 @@
},
{
"name": "mtdowling/jmespath.php",
- "version": "2.6.0",
+ "version": "2.6.1",
"source": {
"type": "git",
"url": "https://github.com/jmespath/jmespath.php.git",
- "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb"
+ "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/42dae2cbd13154083ca6d70099692fef8ca84bfb",
- "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb",
+ "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
+ "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
"shasum": ""
},
"require": {
@@ -6221,7 +6428,7 @@
"symfony/polyfill-mbstring": "^1.17"
},
"require-dev": {
- "composer/xdebug-handler": "^1.4",
+ "composer/xdebug-handler": "^1.4 || ^2.0",
"phpunit/phpunit": "^4.8.36 || ^7.5.15"
},
"bin": [
@@ -6257,7 +6464,7 @@
"json",
"jsonpath"
],
- "time": "2020-07-31T21:01:56+00:00"
+ "time": "2021-06-14T00:11:39+00:00"
},
{
"name": "myclabs/deep-copy",
@@ -6305,12 +6512,6 @@
"object",
"object graph"
],
- "funding": [
- {
- "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
- "type": "tidelift"
- }
- ],
"time": "2020-11-13T09:40:50+00:00"
},
{
@@ -6376,16 +6577,16 @@
},
{
"name": "nikic/php-parser",
- "version": "v4.10.4",
+ "version": "v4.13.0",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
+ "reference": "50953a2691a922aa1769461637869a0a2faa3f53"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
- "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/50953a2691a922aa1769461637869a0a2faa3f53",
+ "reference": "50953a2691a922aa1769461637869a0a2faa3f53",
"shasum": ""
},
"require": {
@@ -6424,7 +6625,7 @@
"parser",
"php"
],
- "time": "2020-12-20T10:01:03+00:00"
+ "time": "2021-09-20T12:20:58+00:00"
},
{
"name": "nwidart/laravel-modules",
@@ -8375,16 +8576,16 @@
},
{
"name": "paragonie/random_compat",
- "version": "v2.0.19",
+ "version": "v2.0.20",
"source": {
"type": "git",
"url": "https://github.com/paragonie/random_compat.git",
- "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241"
+ "reference": "0f1f60250fccffeaf5dda91eea1c018aed1adc2a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/446fc9faa5c2a9ddf65eb7121c0af7e857295241",
- "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241",
+ "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0f1f60250fccffeaf5dda91eea1c018aed1adc2a",
+ "reference": "0f1f60250fccffeaf5dda91eea1c018aed1adc2a",
"shasum": ""
},
"require": {
@@ -8420,7 +8621,7 @@
"pseudorandom",
"random"
],
- "time": "2020-10-15T10:06:57+00:00"
+ "time": "2021-04-17T09:33:01+00:00"
},
{
"name": "patricktalmadge/bootstrapper",
@@ -8566,16 +8767,16 @@
},
{
"name": "phpdocumentor/type-resolver",
- "version": "1.4.0",
+ "version": "1.5.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
+ "reference": "30f38bffc6f24293dadd1823936372dfa9e86e2f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
- "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/30f38bffc6f24293dadd1823936372dfa9e86e2f",
+ "reference": "30f38bffc6f24293dadd1823936372dfa9e86e2f",
"shasum": ""
},
"require": {
@@ -8583,7 +8784,8 @@
"phpdocumentor/reflection-common": "^2.0"
},
"require-dev": {
- "ext-tokenizer": "*"
+ "ext-tokenizer": "*",
+ "psalm/phar": "^4.8"
},
"type": "library",
"extra": {
@@ -8607,7 +8809,7 @@
}
],
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
- "time": "2020-09-17T18:55:26+00:00"
+ "time": "2021-09-17T15:28:14+00:00"
},
{
"name": "phpoffice/phpexcel",
@@ -8674,21 +8876,21 @@
},
{
"name": "phpseclib/phpseclib",
- "version": "3.0.3",
+ "version": "3.0.10",
"source": {
"type": "git",
"url": "https://github.com/phpseclib/phpseclib.git",
- "reference": "97a5a270e4a9ebfc1a7e2f462e917cbce1a8e6d9"
+ "reference": "62fcc5a94ac83b1506f52d7558d828617fac9187"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/97a5a270e4a9ebfc1a7e2f462e917cbce1a8e6d9",
- "reference": "97a5a270e4a9ebfc1a7e2f462e917cbce1a8e6d9",
+ "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/62fcc5a94ac83b1506f52d7558d828617fac9187",
+ "reference": "62fcc5a94ac83b1506f52d7558d828617fac9187",
"shasum": ""
},
"require": {
"paragonie/constant_time_encoding": "^1|^2",
- "paragonie/random_compat": "^1.4|^2.0",
+ "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
"php": ">=5.6.1"
},
"require-dev": {
@@ -8777,7 +8979,7 @@
"type": "tidelift"
}
],
- "time": "2021-01-16T17:35:19+00:00"
+ "time": "2021-08-16T04:24:45+00:00"
},
{
"name": "pragmarx/google2fa",
@@ -8842,23 +9044,22 @@
},
{
"name": "predis/predis",
- "version": "v1.1.6",
+ "version": "v1.1.7",
"source": {
"type": "git",
"url": "https://github.com/predis/predis.git",
- "reference": "9930e933c67446962997b05201c69c2319bf26de"
+ "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/predis/predis/zipball/9930e933c67446962997b05201c69c2319bf26de",
- "reference": "9930e933c67446962997b05201c69c2319bf26de",
+ "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
+ "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
"shasum": ""
},
"require": {
"php": ">=5.3.9"
},
"require-dev": {
- "cweagans/composer-patches": "^1.6",
"phpunit/phpunit": "~4.8"
},
"suggest": {
@@ -8866,18 +9067,6 @@
"ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
},
"type": "library",
- "extra": {
- "composer-exit-on-patch-failure": true,
- "patches": {
- "phpunit/phpunit-mock-objects": {
- "Fix PHP 7 and 8 compatibility": "./tests/phpunit_mock_objects.patch"
- },
- "phpunit/phpunit": {
- "Fix PHP 7 compatibility": "./tests/phpunit_php7.patch",
- "Fix PHP 8 compatibility": "./tests/phpunit_php8.patch"
- }
- }
- },
"autoload": {
"psr-4": {
"Predis\\": "src/"
@@ -8913,7 +9102,7 @@
"type": "github"
}
],
- "time": "2020-09-11T19:18:05+00:00"
+ "time": "2021-04-04T19:34:46+00:00"
},
{
"name": "psr/cache",
@@ -8963,27 +9152,22 @@
},
{
"name": "psr/container",
- "version": "1.0.0",
+ "version": "1.1.1",
"source": {
"type": "git",
"url": "https://github.com/php-fig/container.git",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
+ "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
+ "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
"shasum": ""
},
"require": {
- "php": ">=5.3.0"
+ "php": ">=7.2.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
"autoload": {
"psr-4": {
"Psr\\Container\\": "src/"
@@ -8996,7 +9180,7 @@
"authors": [
{
"name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "homepage": "https://www.php-fig.org/"
}
],
"description": "Common Container Interface (PHP FIG PSR-11)",
@@ -9008,7 +9192,7 @@
"container-interop",
"psr"
],
- "time": "2017-02-14T16:28:37+00:00"
+ "time": "2021-03-05T17:36:06+00:00"
},
{
"name": "psr/http-message",
@@ -9062,16 +9246,16 @@
},
{
"name": "psr/log",
- "version": "1.1.3",
+ "version": "1.1.4",
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
- "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
+ "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
- "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
+ "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
"shasum": ""
},
"require": {
@@ -9095,7 +9279,7 @@
"authors": [
{
"name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for logging libraries",
@@ -9105,7 +9289,7 @@
"psr",
"psr-3"
],
- "time": "2020-03-23T09:12:05+00:00"
+ "time": "2021-05-03T11:20:27+00:00"
},
{
"name": "psr/simple-cache",
@@ -9328,21 +9512,21 @@
},
{
"name": "ramsey/uuid",
- "version": "3.9.3",
+ "version": "3.9.4",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
- "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
+ "reference": "be2451bef8147b7352a28fb4cddb08adc497ada3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
- "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/be2451bef8147b7352a28fb4cddb08adc497ada3",
+ "reference": "be2451bef8147b7352a28fb4cddb08adc497ada3",
"shasum": ""
},
"require": {
"ext-json": "*",
- "paragonie/random_compat": "^1 | ^2 | 9.99.99",
+ "paragonie/random_compat": "^1 | ^2 | ^9.99.99",
"php": "^5.4 | ^7 | ^8",
"symfony/polyfill-ctype": "^1.8"
},
@@ -9411,7 +9595,17 @@
"identifier",
"uuid"
],
- "time": "2020-02-21T04:36:14+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/ramsey",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-08-06T20:32:15+00:00"
},
{
"name": "react/promise",
@@ -9461,28 +9655,28 @@
},
{
"name": "rize/uri-template",
- "version": "0.3.2",
+ "version": "0.3.3",
"source": {
"type": "git",
"url": "https://github.com/rize/UriTemplate.git",
- "reference": "9e5fdd5c47147aa5adf7f760002ee591ed37b9ca"
+ "reference": "6e0b97e00e0f36c652dd3c37b194ef07de669b82"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/rize/UriTemplate/zipball/9e5fdd5c47147aa5adf7f760002ee591ed37b9ca",
- "reference": "9e5fdd5c47147aa5adf7f760002ee591ed37b9ca",
+ "url": "https://api.github.com/repos/rize/UriTemplate/zipball/6e0b97e00e0f36c652dd3c37b194ef07de669b82",
+ "reference": "6e0b97e00e0f36c652dd3c37b194ef07de669b82",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.0.0"
+ "phpunit/phpunit": "~4.8.36"
},
"type": "library",
"autoload": {
- "psr-0": {
- "Rize\\UriTemplate": "src/"
+ "psr-4": {
+ "Rize\\": "src/Rize"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -9501,7 +9695,7 @@
"template",
"uri"
],
- "time": "2017-06-14T03:57:53+00:00"
+ "time": "2021-02-22T15:03:38+00:00"
},
{
"name": "sabre/uri",
@@ -9665,30 +9859,20 @@
"parser",
"validator"
],
- "funding": [
- {
- "url": "https://github.com/Seldaek",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
- "type": "tidelift"
- }
- ],
"time": "2020-11-11T09:19:24+00:00"
},
{
"name": "seld/phar-utils",
- "version": "1.1.1",
+ "version": "1.1.2",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/phar-utils.git",
- "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
+ "reference": "749042a2315705d2dfbbc59234dd9ceb22bf3ff0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
- "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
+ "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/749042a2315705d2dfbbc59234dd9ceb22bf3ff0",
+ "reference": "749042a2315705d2dfbbc59234dd9ceb22bf3ff0",
"shasum": ""
},
"require": {
@@ -9719,36 +9903,44 @@
"keywords": [
"phar"
],
- "time": "2020-07-07T18:42:57+00:00"
+ "time": "2021-08-19T21:01:38+00:00"
},
{
"name": "setasign/fpdi",
- "version": "1.6.2",
+ "version": "v2.3.6",
"source": {
"type": "git",
"url": "https://github.com/Setasign/FPDI.git",
- "reference": "a6ad58897a6d97cc2d2cd2adaeda343b25a368ea"
+ "reference": "6231e315f73e4f62d72b73f3d6d78ff0eed93c31"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Setasign/FPDI/zipball/a6ad58897a6d97cc2d2cd2adaeda343b25a368ea",
- "reference": "a6ad58897a6d97cc2d2cd2adaeda343b25a368ea",
+ "url": "https://api.github.com/repos/Setasign/FPDI/zipball/6231e315f73e4f62d72b73f3d6d78ff0eed93c31",
+ "reference": "6231e315f73e4f62d72b73f3d6d78ff0eed93c31",
"shasum": ""
},
+ "require": {
+ "ext-zlib": "*",
+ "php": "^5.6 || ^7.0 || ^8.0"
+ },
+ "conflict": {
+ "setasign/tfpdf": "<1.31"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~5.7",
+ "setasign/fpdf": "~1.8",
+ "setasign/tfpdf": "1.31",
+ "squizlabs/php_codesniffer": "^3.5",
+ "tecnickcom/tcpdf": "~6.2"
+ },
"suggest": {
- "setasign/fpdf": "FPDI will extend this class but as it is also possible to use \"tecnickcom/tcpdf\" as an alternative there's no fixed dependency configured.",
- "setasign/fpdi-fpdf": "Use this package to automatically evaluate dependencies to FPDF.",
- "setasign/fpdi-tcpdf": "Use this package to automatically evaluate dependencies to TCPDF."
+ "setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured."
},
"type": "library",
"autoload": {
- "classmap": [
- "filters/",
- "fpdi.php",
- "fpdf_tpl.php",
- "fpdi_pdf_parser.php",
- "pdf_context.php"
- ]
+ "psr-4": {
+ "setasign\\Fpdi\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -9759,6 +9951,11 @@
"name": "Jan Slabon",
"email": "jan.slabon@setasign.com",
"homepage": "https://www.setasign.com"
+ },
+ {
+ "name": "Maximilian Kresse",
+ "email": "maximilian.kresse@setasign.com",
+ "homepage": "https://www.setasign.com"
}
],
"description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.",
@@ -9768,7 +9965,13 @@
"fpdi",
"pdf"
],
- "time": "2017-05-11T14:25:49+00:00"
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2021-02-11T11:37:01+00:00"
},
{
"name": "simshaun/recurr",
@@ -9776,20 +9979,21 @@
"source": {
"type": "git",
"url": "https://github.com/simshaun/recurr.git",
- "reference": "d8bc5d3101f885f5d26ded12861ce9efbc987194"
+ "reference": "b5aa5b07a595023b67a558b810390dfa7160e3f5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/simshaun/recurr/zipball/d8bc5d3101f885f5d26ded12861ce9efbc987194",
- "reference": "d8bc5d3101f885f5d26ded12861ce9efbc987194",
+ "url": "https://api.github.com/repos/simshaun/recurr/zipball/b5aa5b07a595023b67a558b810390dfa7160e3f5",
+ "reference": "b5aa5b07a595023b67a558b810390dfa7160e3f5",
"shasum": ""
},
"require": {
- "doctrine/collections": "~1.3",
- "php": ">=5.5.0"
+ "doctrine/collections": "~1.6",
+ "php": "^7.2||^8.0"
},
"require-dev": {
- "phpunit/phpunit": "~5.7"
+ "phpunit/phpunit": "^8.5.16",
+ "symfony/yaml": "^5.3"
},
"type": "library",
"extra": {
@@ -9822,7 +10026,7 @@
"recurring",
"rrule"
],
- "time": "2020-05-12T16:11:41+00:00"
+ "time": "2021-09-09T03:42:57+00:00"
},
{
"name": "softcommerce/omnipay-paytrace",
@@ -9934,20 +10138,20 @@
},
{
"name": "swiftmailer/swiftmailer",
- "version": "v6.2.5",
+ "version": "v6.2.7",
"source": {
"type": "git",
"url": "https://github.com/swiftmailer/swiftmailer.git",
- "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7"
+ "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/698a6a9f54d7eb321274de3ad19863802c879fb7",
- "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7",
+ "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
+ "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
"shasum": ""
},
"require": {
- "egulias/email-validator": "^2.0",
+ "egulias/email-validator": "^2.0|^3.1",
"php": ">=7.0.0",
"symfony/polyfill-iconv": "^1.0",
"symfony/polyfill-intl-idn": "^1.10",
@@ -10001,7 +10205,7 @@
"type": "tidelift"
}
],
- "time": "2021-01-12T09:35:59+00:00"
+ "time": "2021-03-09T12:30:35+00:00"
},
{
"name": "symfony/config",
@@ -10060,20 +10264,6 @@
],
"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-10-24T10:57:07+00:00"
},
{
@@ -10141,20 +10331,6 @@
],
"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-10-24T10:57:07+00:00"
},
{
@@ -10203,20 +10379,6 @@
],
"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-10-24T10:57:07+00:00"
},
{
@@ -10268,20 +10430,6 @@
],
"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-10-24T10:57:07+00:00"
},
{
@@ -10348,20 +10496,6 @@
],
"description": "Symfony DependencyInjection 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-10-24T10:57:07+00:00"
},
{
@@ -10467,20 +10601,6 @@
],
"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-10-24T10:57:07+00:00"
},
{
@@ -10525,20 +10645,6 @@
],
"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-11-16T17:02:08+00:00"
},
{
@@ -10588,34 +10694,20 @@
],
"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-10-24T10:57:07+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v3.4.47",
+ "version": "v3.4.49",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "a98a4c30089e6a2d52a9fa236f718159b539f6f5"
+ "reference": "5aa72405f5bd5583c36ed6e756acb17d3f98ac40"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a98a4c30089e6a2d52a9fa236f718159b539f6f5",
- "reference": "a98a4c30089e6a2d52a9fa236f718159b539f6f5",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5aa72405f5bd5583c36ed6e756acb17d3f98ac40",
+ "reference": "5aa72405f5bd5583c36ed6e756acb17d3f98ac40",
"shasum": ""
},
"require": {
@@ -10701,7 +10793,7 @@
"type": "tidelift"
}
],
- "time": "2020-11-27T08:42:42+00:00"
+ "time": "2021-05-19T12:06:59+00:00"
},
{
"name": "symfony/options-resolver",
@@ -10750,34 +10842,20 @@
"configuration",
"options"
],
- "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-10-24T10:57:07+00:00"
},
{
"name": "symfony/polyfill-ctype",
- "version": "v1.22.0",
+ "version": "v1.23.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
+ "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
- "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
+ "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
"shasum": ""
},
"require": {
@@ -10789,7 +10867,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.22-dev"
+ "dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -10840,20 +10918,20 @@
"type": "tidelift"
}
],
- "time": "2021-01-07T16:49:33+00:00"
+ "time": "2021-02-19T12:13:01+00:00"
},
{
"name": "symfony/polyfill-iconv",
- "version": "v1.22.0",
+ "version": "v1.23.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-iconv.git",
- "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6"
+ "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
- "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
+ "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
+ "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
"shasum": ""
},
"require": {
@@ -10865,7 +10943,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.22-dev"
+ "dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -10917,20 +10995,20 @@
"type": "tidelift"
}
],
- "time": "2021-01-07T16:49:33+00:00"
+ "time": "2021-05-27T09:27:20+00:00"
},
{
"name": "symfony/polyfill-intl-idn",
- "version": "v1.22.0",
+ "version": "v1.23.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-idn.git",
- "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44"
+ "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
- "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
+ "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
"shasum": ""
},
"require": {
@@ -10944,7 +11022,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.22-dev"
+ "dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -11001,20 +11079,20 @@
"type": "tidelift"
}
],
- "time": "2021-01-07T16:49:33+00:00"
+ "time": "2021-05-27T09:27:20+00:00"
},
{
"name": "symfony/polyfill-intl-normalizer",
- "version": "v1.22.0",
+ "version": "v1.23.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "6e971c891537eb617a00bb07a43d182a6915faba"
+ "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba",
- "reference": "6e971c891537eb617a00bb07a43d182a6915faba",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
+ "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
"shasum": ""
},
"require": {
@@ -11026,7 +11104,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.22-dev"
+ "dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -11082,20 +11160,20 @@
"type": "tidelift"
}
],
- "time": "2021-01-07T17:09:11+00:00"
+ "time": "2021-02-19T12:13:01+00:00"
},
{
"name": "symfony/polyfill-mbstring",
- "version": "v1.22.0",
+ "version": "v1.23.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
+ "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
- "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
+ "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
"shasum": ""
},
"require": {
@@ -11107,7 +11185,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.22-dev"
+ "dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -11159,7 +11237,7 @@
"type": "tidelift"
}
],
- "time": "2021-01-07T16:49:33+00:00"
+ "time": "2021-05-27T12:26:48+00:00"
},
{
"name": "symfony/polyfill-php56",
@@ -11210,20 +11288,6 @@
"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-10-23T14:02:19+00:00"
},
{
@@ -11275,34 +11339,20 @@
"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-10-23T14:02:19+00:00"
},
{
"name": "symfony/polyfill-php72",
- "version": "v1.22.0",
+ "version": "v1.23.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php72.git",
- "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
+ "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
- "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
+ "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
+ "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
"shasum": ""
},
"require": {
@@ -11311,7 +11361,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.22-dev"
+ "dev-main": "1.23-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -11362,7 +11412,7 @@
"type": "tidelift"
}
],
- "time": "2021-01-07T16:49:33+00:00"
+ "time": "2021-05-27T09:17:38+00:00"
},
{
"name": "symfony/process",
@@ -11406,20 +11456,6 @@
],
"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-10-24T10:57:07+00:00"
},
{
@@ -11491,20 +11527,6 @@
"uri",
"url"
],
- "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-10-24T10:57:07+00:00"
},
{
@@ -11642,20 +11664,6 @@
"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-09-02T16:08:58+00:00"
},
{
@@ -11720,20 +11728,6 @@
"debug",
"dump"
],
- "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-10-24T10:57:07+00:00"
},
{
@@ -11788,20 +11782,6 @@
],
"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-10-24T10:57:07+00:00"
},
{
@@ -12262,16 +12242,16 @@
},
{
"name": "twig/twig",
- "version": "v1.44.2",
+ "version": "v1.44.5",
"source": {
"type": "git",
"url": "https://github.com/twigphp/Twig.git",
- "reference": "138c493c5b8ee7cff3821f80b8896d371366b5fe"
+ "reference": "dd4353357c5a116322e92a00d16043a31881a81e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/twigphp/Twig/zipball/138c493c5b8ee7cff3821f80b8896d371366b5fe",
- "reference": "138c493c5b8ee7cff3821f80b8896d371366b5fe",
+ "url": "https://api.github.com/repos/twigphp/Twig/zipball/dd4353357c5a116322e92a00d16043a31881a81e",
+ "reference": "dd4353357c5a116322e92a00d16043a31881a81e",
"shasum": ""
},
"require": {
@@ -12332,7 +12312,7 @@
"type": "tidelift"
}
],
- "time": "2021-01-05T10:10:05+00:00"
+ "time": "2021-09-17T08:35:19+00:00"
},
{
"name": "vink/omnipay-komoju",
@@ -12442,16 +12422,6 @@
"env",
"environment"
],
- "funding": [
- {
- "url": "https://github.com/GrahamCampbell",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
- "type": "tidelift"
- }
- ],
"time": "2021-01-20T14:39:13+00:00"
},
{
@@ -12521,12 +12491,12 @@
"version": "dev-master",
"source": {
"type": "git",
- "url": "https://github.com/websightgmbh/l5-google-cloud-storage.git",
+ "url": "https://github.com/hillelcoren/l5-google-cloud-storage.git",
"reference": "ca2023b646b4b3e318b8945d023af14120c2c117"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/websightgmbh/l5-google-cloud-storage/zipball/ca2023b646b4b3e318b8945d023af14120c2c117",
+ "url": "https://api.github.com/repos/hillelcoren/l5-google-cloud-storage/zipball/ca2023b646b4b3e318b8945d023af14120c2c117",
"reference": "ca2023b646b4b3e318b8945d023af14120c2c117",
"shasum": ""
},
@@ -13120,27 +13090,27 @@
},
{
"name": "zircote/swagger-php",
- "version": "3.1.0",
+ "version": "3.2.3",
"source": {
"type": "git",
"url": "https://github.com/zircote/swagger-php.git",
- "reference": "9d172471e56433b5c7061006b9a766f262a3edfd"
+ "reference": "41ed0eb1dacebe2c365623b3f9ab13d1531a03da"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/zircote/swagger-php/zipball/9d172471e56433b5c7061006b9a766f262a3edfd",
- "reference": "9d172471e56433b5c7061006b9a766f262a3edfd",
+ "url": "https://api.github.com/repos/zircote/swagger-php/zipball/41ed0eb1dacebe2c365623b3f9ab13d1531a03da",
+ "reference": "41ed0eb1dacebe2c365623b3f9ab13d1531a03da",
"shasum": ""
},
"require": {
- "doctrine/annotations": "*",
+ "doctrine/annotations": "^1.7",
"ext-json": "*",
"php": ">=7.2",
"symfony/finder": ">=2.2",
"symfony/yaml": ">=3.3"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "^2.16",
+ "friendsofphp/php-cs-fixer": "^2.17 || ^3.0",
"phpunit/phpunit": ">=8"
},
"bin": [
@@ -13183,31 +13153,32 @@
"rest",
"service discovery"
],
- "time": "2020-09-03T20:18:43+00:00"
+ "time": "2021-06-25T04:08:57+00:00"
}
],
"packages-dev": [
{
"name": "behat/gherkin",
- "version": "v4.6.2",
+ "version": "v4.8.0",
"source": {
"type": "git",
"url": "https://github.com/Behat/Gherkin.git",
- "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31"
+ "reference": "2391482cd003dfdc36b679b27e9f5326bd656acd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Behat/Gherkin/zipball/51ac4500c4dc30cbaaabcd2f25694299df666a31",
- "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31",
+ "url": "https://api.github.com/repos/Behat/Gherkin/zipball/2391482cd003dfdc36b679b27e9f5326bd656acd",
+ "reference": "2391482cd003dfdc36b679b27e9f5326bd656acd",
"shasum": ""
},
"require": {
- "php": ">=5.3.1"
+ "php": "~7.2|~8.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.5|~5",
- "symfony/phpunit-bridge": "~2.7|~3|~4",
- "symfony/yaml": "~2.3|~3|~4"
+ "cucumber/cucumber": "dev-gherkin-16.0.0",
+ "phpunit/phpunit": "~8|~9",
+ "symfony/phpunit-bridge": "~3|~4|~5",
+ "symfony/yaml": "~3|~4|~5"
},
"suggest": {
"symfony/yaml": "If you want to parse features, represented in YAML files"
@@ -13234,7 +13205,7 @@
"homepage": "http://everzet.com"
}
],
- "description": "Gherkin DSL parser for PHP 5.3",
+ "description": "Gherkin DSL parser for PHP",
"homepage": "http://behat.org/",
"keywords": [
"BDD",
@@ -13244,27 +13215,29 @@
"gherkin",
"parser"
],
- "time": "2020-03-17T14:03:26+00:00"
+ "time": "2021-02-04T12:44:21+00:00"
},
{
"name": "codeception/c3",
- "version": "2.6.1",
+ "version": "2.6.4",
"source": {
"type": "git",
"url": "https://github.com/Codeception/c3.git",
- "reference": "88e1c138d092c1e300df46f78f40bf32ca45f99e"
+ "reference": "625318168ecdeedc5162e74435c26320128c4434"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Codeception/c3/zipball/88e1c138d092c1e300df46f78f40bf32ca45f99e",
- "reference": "88e1c138d092c1e300df46f78f40bf32ca45f99e",
+ "url": "https://api.github.com/repos/Codeception/c3/zipball/625318168ecdeedc5162e74435c26320128c4434",
+ "reference": "625318168ecdeedc5162e74435c26320128c4434",
"shasum": ""
},
"require": {
"composer-plugin-api": "^1.0 || ^2.0",
- "composer/composer": "^1.0 || ^2.0",
"php": ">=5.4.0"
},
+ "require-dev": {
+ "composer/composer": "^1.0 || ^2.0"
+ },
"type": "composer-plugin",
"extra": {
"class": "Codeception\\c3\\Installer"
@@ -13295,7 +13268,7 @@
"code coverage",
"codecoverage"
],
- "time": "2020-10-30T18:21:23+00:00"
+ "time": "2021-05-18T16:41:09+00:00"
},
{
"name": "codeception/codeception",
@@ -13514,20 +13487,6 @@
"constructor",
"instantiate"
],
- "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%2Finstantiator",
- "type": "tidelift"
- }
- ],
"time": "2020-11-10T18:47:58+00:00"
},
{
@@ -13670,7 +13629,8 @@
"authors": [
{
"name": "Chris Boulton",
- "homepage": "http://github.com/chrisboulton"
+ "homepage": "http://github.com/chrisboulton",
+ "role": "Original developer"
}
],
"description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
@@ -14252,12 +14212,6 @@
],
"description": "Looks up which function or method a line of code belongs to",
"homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
"time": "2020-11-30T08:15:22+00:00"
},
{
@@ -14730,21 +14684,22 @@
},
{
"name": "symfony/browser-kit",
- "version": "v4.4.18",
+ "version": "v4.4.27",
"source": {
"type": "git",
"url": "https://github.com/symfony/browser-kit.git",
- "reference": "85efcc33545ed472653eb2d00a4ab36e6258a5b6"
+ "reference": "9629d1524d8ced5a4ec3e94abdbd638b4ec8319b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/browser-kit/zipball/85efcc33545ed472653eb2d00a4ab36e6258a5b6",
- "reference": "85efcc33545ed472653eb2d00a4ab36e6258a5b6",
+ "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9629d1524d8ced5a4ec3e94abdbd638b4ec8319b",
+ "reference": "9629d1524d8ced5a4ec3e94abdbd638b4ec8319b",
"shasum": ""
},
"require": {
"php": ">=7.1.3",
- "symfony/dom-crawler": "^3.4|^4.0|^5.0"
+ "symfony/dom-crawler": "^3.4|^4.0|^5.0",
+ "symfony/polyfill-php80": "^1.16"
},
"require-dev": {
"symfony/css-selector": "^3.4|^4.0|^5.0",
@@ -14778,7 +14733,7 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony BrowserKit Component",
+ "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
"homepage": "https://symfony.com",
"funding": [
{
@@ -14794,7 +14749,7 @@
"type": "tidelift"
}
],
- "time": "2020-12-18T07:41:31+00:00"
+ "time": "2021-07-21T12:19:41+00:00"
},
{
"name": "symfony/dom-crawler",
@@ -14846,6 +14801,72 @@
],
"description": "Symfony DomCrawler Component",
"homepage": "https://symfony.com",
+ "time": "2020-10-24T10:57:07+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php80",
+ "version": "v1.23.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
+ "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.23-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",
@@ -14860,34 +14881,39 @@
"type": "tidelift"
}
],
- "time": "2020-10-24T10:57:07+00:00"
+ "time": "2021-07-28T13:41:28+00:00"
},
{
"name": "webmozart/assert",
- "version": "1.9.1",
+ "version": "1.10.0",
"source": {
"type": "git",
"url": "https://github.com/webmozarts/assert.git",
- "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
+ "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
- "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
+ "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
+ "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
"shasum": ""
},
"require": {
- "php": "^5.3.3 || ^7.0 || ^8.0",
+ "php": "^7.2 || ^8.0",
"symfony/polyfill-ctype": "^1.8"
},
"conflict": {
"phpstan/phpstan": "<0.12.20",
- "vimeo/psalm": "<3.9.1"
+ "vimeo/psalm": "<4.6.1 || 4.6.2"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.36 || ^7.5.13"
+ "phpunit/phpunit": "^8.5.13"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.10-dev"
+ }
+ },
"autoload": {
"psr-4": {
"Webmozart\\Assert\\": "src/"
@@ -14909,7 +14935,7 @@
"check",
"validate"
],
- "time": "2020-07-08T17:02:28+00:00"
+ "time": "2021-03-09T10:59:23+00:00"
}
],
"aliases": [