diff --git a/.gitignore b/.gitignore index 1c4c85e..051d7b3 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ Homestead.json /.vagrant .phpunit.result.cache .idea/* +.idea/php.xml .DS_Store .env.local .env.prod diff --git a/.idea/php.xml b/.idea/php.xml index a763934..0858904 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -183,9 +183,11 @@ + + - + diff --git a/app/Console/Commands/InstagramScrape.php b/app/Console/Commands/InstagramScrape.php index 71786d0..ce2ab56 100644 --- a/app/Console/Commands/InstagramScrape.php +++ b/app/Console/Commands/InstagramScrape.php @@ -49,6 +49,7 @@ class InstagramScrape extends Command // // $userList = ['1992.ai_']; // print_r($userList);exit; $ins = new InstagramService(); + exit; // $ins->getUserNameById('4156629214');exit; // $ins->scrapeUsersInFile("/Users/shixuesen/OneDrive/Pictures/instagram/user_0.txt");exit; diff --git a/app/Console/Commands/QueueFfmpegCommand.php b/app/Console/Commands/QueueFfmpegCommand.php index dbf3aa5..aa91488 100644 --- a/app/Console/Commands/QueueFfmpegCommand.php +++ b/app/Console/Commands/QueueFfmpegCommand.php @@ -46,6 +46,7 @@ class QueueFfmpegCommand extends Command if ($command == "add") { $queuedFfmpegService->processDir($path); } else { + $queuedFfmpegService->setDestinationDirectory("/mnt/e/rec_encode/"); $queuedFfmpegService->processQueue(); // $ffmpeg = new FfmpegService(); // $ffmpeg->setNeedRemoveExistFiles(false); diff --git a/app/Http/Controllers/WeiboController.php b/app/Http/Controllers/WeiboController.php index 9c090a6..f88be27 100644 --- a/app/Http/Controllers/WeiboController.php +++ b/app/Http/Controllers/WeiboController.php @@ -64,14 +64,14 @@ class WeiboController extends Controller // $url[] = 'https://m.weibo.cn/api/container/getIndex?containerid=1076035893812490&openApp=0&page='.$i; // for( $i = 100; $i >= 1 ; $i-- ) // $url[] = 'https://m.weibo.cn/api/container/getIndex?containerid=2304133907143723&openApp=0&page='.$i; - for ($i = 100; $i >= 1; $i--) { - $url[] = 'https://m.weibo.cn/feed/group?gid=4423532052076817&&page=' . $i; - } - // foreach ($list as $key => $value) { - // for ($i = $size; $i >= 1; $i--) { - // $url[] = "https://m.weibo.cn/api/container/getIndex?containerid=$value&page=" . $i; - // } - // } + for ($i = 100; $i >= 1; $i--) { + $url[] = 'https://m.weibo.cn/feed/group?gid=4423532052076817&&page=' . $i; + } + // foreach ($list as $key => $value) { + // for ($i = $size; $i >= 1; $i--) { + // $url[] = "https://m.weibo.cn/api/container/getIndex?containerid=$value&page=" . $i; + // } + // } // for ($i = $size; $i >= 1; $i--) { // $url[] = 'https://m.weibo.cn/api/container/getIndex?containerid=230259&page=' . $i; // } @@ -111,8 +111,8 @@ class WeiboController extends Controller // die(); // Log::info($request->input()); $weibo = new WeiboService(); - // $result = $weibo->scrapeWeiboPicAndVideo($request->input("content")); - $result = $weibo->scrapeGroupWeiboPicAndVideo($request->input("content")); + // $result = $weibo->scrapeWeiboPicAndVideo($request->input("content")); + $result = $weibo->scrapeGroupWeiboPicAndVideo($request->input("content")); return response()->json($result); } diff --git a/app/Services/BilibiliServiceV2.php b/app/Services/BilibiliServiceV2.php index 6ef854e..ff5b0a8 100644 --- a/app/Services/BilibiliServiceV2.php +++ b/app/Services/BilibiliServiceV2.php @@ -664,11 +664,20 @@ class BilibiliServiceV2 while ($list->isNotEmpty()) { foreach ($list->items() as $item) { // dump("current item", [$item->getAttributes()]); + if ($item->is_download == 0) { + // 不需要下载 + continue; + } $response = $this->requestVideoParts($item->aid); dump($response); $responseJson = json_decode($response, true); if ($responseJson["code"] !== 0) { Log::error("response is error, aid: " . $item->aid . " response: " . $response); + if ($responseJson["code"] == -404 || $responseJson["code"] == "-404" || $responseJson["message"] == "啥都木有") { + Log::error("response is error and save is_download = 0, aid: " . $item->aid . " response: " . $response); + $item->is_download = 0; + $item->save(); + } continue; } $partList = Arr::get($responseJson, "data"); diff --git a/app/Services/FfmpegService.php b/app/Services/FfmpegService.php index 9934b78..5f0b93f 100644 --- a/app/Services/FfmpegService.php +++ b/app/Services/FfmpegService.php @@ -7,7 +7,7 @@ use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Redis; use Mhor\MediaInfo\MediaInfo; use FFMpeg\FFProbe; - +use Throwable; class FfmpegService @@ -125,8 +125,13 @@ class FfmpegService public function processVideo($pathFile) { + Log::info("current process pathFile " . $pathFile); + try { $mime = mime_content_type($pathFile); - $mediaInfo = new MediaInfo(); + } catch (Throwable $e) { + Log::error("mime_content_type has exception " . $e->getMessage()); + } + $mediaInfo = new MediaInfo(); $mediaInfo->setConfig('use_oldxml_mediainfo_output_format', true); if (strstr($mime, "video/") || strstr($mime, "application/octet-stream")) { if (is_file($pathFile)) { @@ -303,7 +308,7 @@ class FfmpegService ->videos() // filters video streams ->first() // returns the first video stream ->get('codec_name'); - } catch (\Throwable $e) { + } catch (Throwable $e) { echo "error $file \n"; Log::error("ffprobe has error just return false for test, exception: ". $e->getMessage()); return false; diff --git a/app/Services/FileService.php b/app/Services/FileService.php index 9ad8984..264539c 100644 --- a/app/Services/FileService.php +++ b/app/Services/FileService.php @@ -1268,6 +1268,11 @@ class FileService { } } + public function mvFile($file, $destDirectory): bool + { + return rename($file, $destDirectory . DIRECTORY_SEPARATOR . basename($file)); + } + public function queryNewerFilesInDirectory($dir, $lastTime) { $list = []; diff --git a/app/Services/InstagramService.php b/app/Services/InstagramService.php index aeb6d56..1252966 100644 --- a/app/Services/InstagramService.php +++ b/app/Services/InstagramService.php @@ -17,11 +17,12 @@ use InstagramAPI\Response\Model\Item; class InstagramService { private $username = "nicksxs"; + // private $password = '949sxs949@S'; private $password = 'mff@5201314'; // private $username = "sili1024"; // private $password = 'Qwer2020'; - private $debug = false; - private $truncatedDebug = false; + private $debug = true; + private $truncatedDebug = true; private $ig; public function __construct() diff --git a/app/Services/QueuedFfmpegService.php b/app/Services/QueuedFfmpegService.php index 6239e38..4b1f1a3 100644 --- a/app/Services/QueuedFfmpegService.php +++ b/app/Services/QueuedFfmpegService.php @@ -15,13 +15,36 @@ class QueuedFfmpegService { private $ffmpegService; + private $fileService; + + private $destinationDirectory; + public function __construct() { $this->ffmpegService = new FfmpegService(); $this->ffmpegService->setNeedRemoveAfterEncode(true); $this->ffmpegService->setNeedRemoveExistFiles(false); + $this->fileService = new FileService(); } + /** + * @return mixed + */ + public function getDestinationDirectory() + { + return $this->destinationDirectory; + } + + /** + * @param mixed $destinationDirectory + */ + public function setDestinationDirectory($destinationDirectory): void + { + $this->destinationDirectory = $destinationDirectory; + } + + + public function processDir($path) { $files = scandir($path); @@ -43,7 +66,7 @@ class QueuedFfmpegService { { // BilibiliEncode::dispatch($file); Log::info("add $file to ffmpeg process queue"); - Redis::connection()->rpush("file_to_encode", $file); + Redis::connection()->lpush("file_to_encode", $file); // $result = Redis::publish("file_to_process", $file); // echo $result; } @@ -57,8 +80,10 @@ class QueuedFfmpegService { while ($item != null) { echo $item . "\n"; $empty = false; - $item = Redis::connection()->rpop("file_to_encode"); $this->ffmpegService->processVideo($item); + $this->fileService->mvFile($item, $this->getDestinationDirectory()); + $item = Redis::connection()->rpop("file_to_encode"); + } if ($empty) { Log::info("process end sleep 300 seconds"); diff --git a/composer.json b/composer.json index 612ff88..4b71650 100644 --- a/composer.json +++ b/composer.json @@ -10,9 +10,11 @@ "require": { "php": "^7.1.3", "ext-curl": "^7.1", + "ext-fileinfo": "*", "ext-json": "*", "albertofem/rsync-lib": "1.0.0", "barryvdh/laravel-ide-helper": "^2.5", + "brianholle/mgp25": "^1.0", "doctrine/dbal": "^2.9", "encore/laravel-admin": "^1.7", "fideloper/proxy": "^4.0", @@ -24,7 +26,6 @@ "laravel/framework": "5.7.*", "laravel/tinker": "^1.0", "league/oauth2-client": "dev-master", - "mgp25/instagram-php": "dev-master", "mhor/php-mediainfo": "^4.1", "microsoft/microsoft-graph": "^1.6", "mnapoli/front-yaml": "^1.8", diff --git a/composer.lock b/composer.lock index 901fd08..39a5798 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": "783aef1da9b015e3f7e49b63fac3fc55", + "content-hash": "e564bd5867f33dc3698a2ed63ad80663", "packages": [ { "name": "albertofem/rsync-lib", @@ -412,6 +412,93 @@ }, "time": "2017-08-20T08:06:53+00:00" }, + { + "name": "brianholle/mgp25", + "version": "1.0", + "source": { + "type": "git", + "url": "https://github.com/brianholle/mgp25.git", + "reference": "c5ecd574bbf4d0bca02184193b0e68fabd93e0f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brianholle/mgp25/zipball/c5ecd574bbf4d0bca02184193b0e68fabd93e0f6", + "reference": "c5ecd574bbf4d0bca02184193b0e68fabd93e0f6", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "binsoul/net-mqtt-client-react": "^0.3.2", + "clue/http-proxy-react": "^1.1.0", + "clue/socks-react": "^0.8.2", + "ext-bcmath": "*", + "ext-curl": "*", + "ext-exif": "*", + "ext-gd": "*", + "ext-mbstring": "*", + "ext-zlib": "*", + "guzzlehttp/guzzle": "^6.2", + "lazyjsonmapper/lazyjsonmapper": "^1.6.1", + "php": ">=5.6", + "psr/log": "^1.0", + "react/event-loop": "^0.4.3", + "react/promise": "^2.5", + "react/socket": "^0.8", + "symfony/process": "^3.4|^4.0", + "valga/fbns-react": "^0.1.8", + "winbox/args": "1.0.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.11.0", + "monolog/monolog": "^1.23", + "phpunit/phpunit": "^5.7 || ^6.2", + "react/http": "^0.7.2" + }, + "suggest": { + "ext-event": "Installing PHP's native Event extension enables faster Realtime class event handling." + }, + "type": "library", + "autoload": { + "psr-4": { + "InstagramAPI\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "RPL-1.5", + "proprietary" + ], + "authors": [ + { + "name": "mgp25", + "email": "me@mgp25.com", + "role": "Founder" + }, + { + "name": "SteveJobzniak", + "homepage": "https://github.com/SteveJobzniak", + "role": "Developer" + } + ], + "description": "Instagram's private API for PHP", + "keywords": [ + "api", + "instagram", + "php", + "private" + ], + "support": { + "issues": "https://github.com/mgp25/Instagram-API/issues", + "source": "https://github.com/brianholle/mgp25/", + "wiki": "https://github.com/mgp25/Instagram-API/wiki" + }, + "time": "2020-11-06T17:57:45+00:00" + }, { "name": "cache/adapter-common", "version": "1.3.0", @@ -754,16 +841,16 @@ }, { "name": "composer/ca-bundle", - "version": "1.3.1", + "version": "1.3.3", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b" + "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b", - "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/30897edbfb15e784fe55587b4f73ceefd3c4d98c", + "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c", "shasum": "", "mirrors": [ { @@ -816,7 +903,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.3.1" + "source": "https://github.com/composer/ca-bundle/tree/1.3.3" }, "funding": [ { @@ -832,20 +919,20 @@ "type": "tidelift" } ], - "time": "2021-10-28T20:44:15+00:00" + "time": "2022-07-20T07:14:26+00:00" }, { "name": "composer/composer", - "version": "2.2.12", + "version": "2.2.17", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "ba61e768b410736efe61df01b61f1ec44f51474f" + "reference": "a8ab5070fb99396e4710baee286478ad697724c2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/ba61e768b410736efe61df01b61f1ec44f51474f", - "reference": "ba61e768b410736efe61df01b61f1ec44f51474f", + "url": "https://api.github.com/repos/composer/composer/zipball/a8ab5070fb99396e4710baee286478ad697724c2", + "reference": "a8ab5070fb99396e4710baee286478ad697724c2", "shasum": "", "mirrors": [ { @@ -921,7 +1008,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/composer/issues", - "source": "https://github.com/composer/composer/tree/2.2.12" + "source": "https://github.com/composer/composer/tree/2.2.17" }, "funding": [ { @@ -937,7 +1024,7 @@ "type": "tidelift" } ], - "time": "2022-04-13T14:42:25+00:00" + "time": "2022-07-13T13:27:38+00:00" }, { "name": "composer/metadata-minifier", @@ -1093,16 +1180,16 @@ }, { "name": "composer/semver", - "version": "3.3.1", + "version": "3.3.2", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "5d8e574bb0e69188786b8ef77d43341222a41a71" + "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/5d8e574bb0e69188786b8ef77d43341222a41a71", - "reference": "5d8e574bb0e69188786b8ef77d43341222a41a71", + "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9", + "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9", "shasum": "", "mirrors": [ { @@ -1160,7 +1247,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.3.1" + "source": "https://github.com/composer/semver/tree/3.3.2" }, "funding": [ { @@ -1176,20 +1263,20 @@ "type": "tidelift" } ], - "time": "2022-03-16T11:22:07+00:00" + "time": "2022-04-01T19:23:25+00:00" }, { "name": "composer/spdx-licenses", - "version": "1.5.6", + "version": "1.5.7", "source": { "type": "git", "url": "https://github.com/composer/spdx-licenses.git", - "reference": "a30d487169d799745ca7280bc90fdfa693536901" + "reference": "c848241796da2abf65837d51dce1fae55a960149" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/a30d487169d799745ca7280bc90fdfa693536901", - "reference": "a30d487169d799745ca7280bc90fdfa693536901", + "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149", + "reference": "c848241796da2abf65837d51dce1fae55a960149", "shasum": "", "mirrors": [ { @@ -1246,7 +1333,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/spdx-licenses/issues", - "source": "https://github.com/composer/spdx-licenses/tree/1.5.6" + "source": "https://github.com/composer/spdx-licenses/tree/1.5.7" }, "funding": [ { @@ -1262,7 +1349,7 @@ "type": "tidelift" } ], - "time": "2021-11-18T10:14:14+00:00" + "time": "2022-05-23T07:37:50+00:00" }, { "name": "composer/xdebug-handler", @@ -1433,16 +1520,16 @@ }, { "name": "doctrine/cache", - "version": "1.12.1", + "version": "1.13.0", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8" + "reference": "56cd022adb5514472cb144c087393c1821911d09" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/4cf401d14df219fa6f38b671f5493449151c9ad8", - "reference": "4cf401d14df219fa6f38b671f5493449151c9ad8", + "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09", + "reference": "56cd022adb5514472cb144c087393c1821911d09", "shasum": "", "mirrors": [ { @@ -1460,13 +1547,13 @@ "require-dev": { "alcaeus/mongo-php-adapter": "^1.1", "cache/integration-tests": "dev-master", - "doctrine/coding-standard": "^8.0", + "doctrine/coding-standard": "^9", "mongodb/mongodb": "^1.1", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", "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" + "symfony/cache": "^4.4 || ^5.4 || ^6", + "symfony/var-exporter": "^4.4 || ^5.4 || ^6" }, "suggest": { "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" @@ -1518,7 +1605,7 @@ ], "support": { "issues": "https://github.com/doctrine/cache/issues", - "source": "https://github.com/doctrine/cache/tree/1.12.1" + "source": "https://github.com/doctrine/cache/tree/1.13.0" }, "funding": [ { @@ -1534,20 +1621,20 @@ "type": "tidelift" } ], - "time": "2021-07-17T14:39:21+00:00" + "time": "2022-05-20T20:06:54+00:00" }, { "name": "doctrine/dbal", - "version": "2.13.8", + "version": "2.13.9", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "dc9b3c3c8592c935a6e590441f9abc0f9eba335b" + "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/dc9b3c3c8592c935a6e590441f9abc0f9eba335b", - "reference": "dc9b3c3c8592c935a6e590441f9abc0f9eba335b", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8", + "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8", "shasum": "", "mirrors": [ { @@ -1558,7 +1645,7 @@ }, "require": { "doctrine/cache": "^1.0|^2.0", - "doctrine/deprecations": "^0.5.3", + "doctrine/deprecations": "^0.5.3|^1", "doctrine/event-manager": "^1.0", "ext-pdo": "*", "php": "^7.1 || ^8" @@ -1633,7 +1720,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/2.13.8" + "source": "https://github.com/doctrine/dbal/tree/2.13.9" }, "funding": [ { @@ -1649,20 +1736,20 @@ "type": "tidelift" } ], - "time": "2022-03-09T15:25:46+00:00" + "time": "2022-05-02T20:28:55+00:00" }, { "name": "doctrine/deprecations", - "version": "v0.5.3", + "version": "v1.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "9504165960a1f83cc1480e2be1dd0a0478561314" + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314", - "reference": "9504165960a1f83cc1480e2be1dd0a0478561314", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", "shasum": "", "mirrors": [ { @@ -1675,9 +1762,9 @@ "php": "^7.1|^8.0" }, "require-dev": { - "doctrine/coding-standard": "^6.0|^7.0|^8.0", - "phpunit/phpunit": "^7.0|^8.0|^9.0", - "psr/log": "^1.0" + "doctrine/coding-standard": "^9", + "phpunit/phpunit": "^7.5|^8.5|^9.5", + "psr/log": "^1|^2|^3" }, "suggest": { "psr/log": "Allows logging deprecations via PSR-3 logger implementation" @@ -1696,9 +1783,9 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/v0.5.3" + "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" }, - "time": "2021-03-21T12:59:47+00:00" + "time": "2022-05-02T15:47:09+00:00" }, { "name": "doctrine/event-manager", @@ -2056,16 +2143,16 @@ }, { "name": "egulias/email-validator", - "version": "3.1.2", + "version": "3.2.1", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "ee0db30118f661fb166bcffbf5d82032df484697" + "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ee0db30118f661fb166bcffbf5d82032df484697", - "reference": "ee0db30118f661fb166bcffbf5d82032df484697", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f88dcf4b14af14a98ad96b14b2b317969eab6715", + "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715", "shasum": "", "mirrors": [ { @@ -2118,7 +2205,7 @@ ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/3.1.2" + "source": "https://github.com/egulias/EmailValidator/tree/3.2.1" }, "funding": [ { @@ -2126,20 +2213,20 @@ "type": "github" } ], - "time": "2021-10-11T09:18:27+00:00" + "time": "2022-06-18T20:57:19+00:00" }, { "name": "encore/laravel-admin", - "version": "v1.8.17", + "version": "v1.8.19", "source": { "type": "git", "url": "https://github.com/z-song/laravel-admin.git", - "reference": "45c58c656fcc6a8c57423d2256f3b7a73e783441" + "reference": "6c292ebb5efa886fa4776d86e975180608505946" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/z-song/laravel-admin/zipball/45c58c656fcc6a8c57423d2256f3b7a73e783441", - "reference": "45c58c656fcc6a8c57423d2256f3b7a73e783441", + "url": "https://api.github.com/repos/z-song/laravel-admin/zipball/6c292ebb5efa886fa4776d86e975180608505946", + "reference": "6c292ebb5efa886fa4776d86e975180608505946", "shasum": "", "mirrors": [ { @@ -2204,9 +2291,9 @@ ], "support": { "issues": "https://github.com/z-song/laravel-admin/issues", - "source": "https://github.com/z-song/laravel-admin/tree/v1.8.17" + "source": "https://github.com/z-song/laravel-admin/tree/v1.8.19" }, - "time": "2021-12-31T08:36:33+00:00" + "time": "2022-05-24T03:49:38+00:00" }, { "name": "erusev/parsedown", @@ -2319,16 +2406,16 @@ }, { "name": "fideloper/proxy", - "version": "4.4.1", + "version": "4.4.2", "source": { "type": "git", "url": "https://github.com/fideloper/TrustedProxy.git", - "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0" + "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0", - "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0", + "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750", + "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750", "shasum": "", "mirrors": [ { @@ -2344,7 +2431,7 @@ "require-dev": { "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0", "mockery/mockery": "^1.0", - "phpunit/phpunit": "^6.0" + "phpunit/phpunit": "^8.5.8|^9.3.3" }, "type": "library", "extra": { @@ -2377,22 +2464,22 @@ ], "support": { "issues": "https://github.com/fideloper/TrustedProxy/issues", - "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1" + "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2" }, - "time": "2020-10-22T13:48:01+00:00" + "time": "2022-02-09T13:33:34+00:00" }, { "name": "firebase/php-jwt", - "version": "v5.5.1", + "version": "v6.2.0", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "83b609028194aa042ea33b5af2d41a7427de80e6" + "reference": "d28e6df83830252650da4623c78aaaf98fb385f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6", - "reference": "83b609028194aa042ea33b5af2d41a7427de80e6", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d28e6df83830252650da4623c78aaaf98fb385f3", + "reference": "d28e6df83830252650da4623c78aaaf98fb385f3", "shasum": "", "mirrors": [ { @@ -2402,10 +2489,15 @@ ] }, "require": { - "php": ">=5.3.0" + "php": "^7.1||^8.0" }, "require-dev": { - "phpunit/phpunit": ">=4.8 <=9" + "guzzlehttp/guzzle": "^6.5||^7.4", + "phpspec/prophecy-phpunit": "^1.1", + "phpunit/phpunit": "^7.5||^9.5", + "psr/cache": "^1.0||^2.0", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0" }, "suggest": { "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present" @@ -2440,22 +2532,22 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v5.5.1" + "source": "https://github.com/firebase/php-jwt/tree/v6.2.0" }, - "time": "2021-11-08T20:18:51+00:00" + "time": "2022-05-13T20:54:50+00:00" }, { "name": "google/apiclient", - "version": "v2.12.2", + "version": "v2.12.6", "source": { "type": "git", "url": "https://github.com/googleapis/google-api-php-client.git", - "reference": "a18b0e1ef5618523c607c01a41ec137c7f9af3b1" + "reference": "f92aa126903a9e2da5bd41a280d9633cb249e79e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/a18b0e1ef5618523c607c01a41ec137c7f9af3b1", - "reference": "a18b0e1ef5618523c607c01a41ec137c7f9af3b1", + "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/f92aa126903a9e2da5bd41a280d9633cb249e79e", + "reference": "f92aa126903a9e2da5bd41a280d9633cb249e79e", "shasum": "", "mirrors": [ { @@ -2470,18 +2562,17 @@ "google/auth": "^1.10", "guzzlehttp/guzzle": "~5.3.3||~6.0||~7.0", "guzzlehttp/psr7": "^1.8.4||^2.2.1", - "monolog/monolog": "^1.17||^2.0", + "monolog/monolog": "^1.17||^2.0||^3.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.22", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7", "phpcompatibility/php-compatibility": "^9.2", "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", + "squizlabs/php_codesniffer": "^3.0", "symfony/css-selector": "~2.1", "symfony/dom-crawler": "~2.1", "yoast/phpunit-polyfills": "^1.0" @@ -2517,22 +2608,22 @@ ], "support": { "issues": "https://github.com/googleapis/google-api-php-client/issues", - "source": "https://github.com/googleapis/google-api-php-client/tree/v2.12.2" + "source": "https://github.com/googleapis/google-api-php-client/tree/v2.12.6" }, - "time": "2022-04-05T16:19:05+00:00" + "time": "2022-06-06T20:00:19+00:00" }, { "name": "google/apiclient-services", - "version": "v0.242.0", + "version": "v0.262.0", "source": { "type": "git", "url": "https://github.com/googleapis/google-api-php-client-services.git", - "reference": "73d4c0ed4b241e7396699e0ee1d1cdebabac25e8" + "reference": "c2e1408ba2b9e31df2d1c0b136f3247e8818874d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/73d4c0ed4b241e7396699e0ee1d1cdebabac25e8", - "reference": "73d4c0ed4b241e7396699e0ee1d1cdebabac25e8", + "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/c2e1408ba2b9e31df2d1c0b136f3247e8818874d", + "reference": "c2e1408ba2b9e31df2d1c0b136f3247e8818874d", "shasum": "", "mirrors": [ { @@ -2567,22 +2658,22 @@ ], "support": { "issues": "https://github.com/googleapis/google-api-php-client-services/issues", - "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.242.0" + "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.262.0" }, - "time": "2022-04-03T01:24:10+00:00" + "time": "2022-08-14T01:06:11+00:00" }, { "name": "google/auth", - "version": "v1.20.1", + "version": "v1.21.1", "source": { "type": "git", "url": "https://github.com/googleapis/google-auth-library-php.git", - "reference": "3a1a5c5b5a3006b3d05256d5df7066f37252112c" + "reference": "aa3b9ca29258ac6347ce3c8937a2418c5d78f840" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/3a1a5c5b5a3006b3d05256d5df7066f37252112c", - "reference": "3a1a5c5b5a3006b3d05256d5df7066f37252112c", + "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/aa3b9ca29258ac6347ce3c8937a2418c5d78f840", + "reference": "aa3b9ca29258ac6347ce3c8937a2418c5d78f840", "shasum": "", "mirrors": [ { @@ -2592,7 +2683,7 @@ ] }, "require": { - "firebase/php-jwt": "~5.0", + "firebase/php-jwt": "^5.5||^6.0", "guzzlehttp/guzzle": "^6.2.1|^7.0", "guzzlehttp/psr7": "^1.7|^2.0", "php": "^7.1||^8.0", @@ -2631,22 +2722,22 @@ "support": { "docs": "https://googleapis.github.io/google-auth-library-php/main/", "issues": "https://github.com/googleapis/google-auth-library-php/issues", - "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.20.1" + "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.21.1" }, - "time": "2022-04-12T15:24:52+00:00" + "time": "2022-05-16T19:34:15+00:00" }, { "name": "google/common-protos", - "version": "2.0.0", + "version": "v3.0.0", "source": { "type": "git", "url": "https://github.com/googleapis/common-protos-php.git", - "reference": "a1bcb7b37f1fa1c92d65c3c6339fc701a65916ee" + "reference": "168393c1d19297fde8d5c875a540ba92c5aa970c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/a1bcb7b37f1fa1c92d65c3c6339fc701a65916ee", - "reference": "a1bcb7b37f1fa1c92d65c3c6339fc701a65916ee", + "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/168393c1d19297fde8d5c875a540ba92c5aa970c", + "reference": "168393c1d19297fde8d5c875a540ba92c5aa970c", "shasum": "", "mirrors": [ { @@ -2659,7 +2750,7 @@ "google/protobuf": "^3.6.1" }, "require-dev": { - "phpunit/phpunit": "^4.8.36", + "phpunit/phpunit": "^4.8.36||^8.5", "sami/sami": "*" }, "type": "library", @@ -2680,22 +2771,22 @@ ], "support": { "issues": "https://github.com/googleapis/common-protos-php/issues", - "source": "https://github.com/googleapis/common-protos-php/tree/2.0.0" + "source": "https://github.com/googleapis/common-protos-php/tree/v3.0.0" }, - "time": "2022-01-13T20:17:53+00:00" + "time": "2022-07-29T20:50:18+00:00" }, { "name": "google/gax", - "version": "v1.11.4", + "version": "v1.16.1", "source": { "type": "git", "url": "https://github.com/googleapis/gax-php.git", - "reference": "bf32dd04b5a31e6616f18bf62f49873ff16a340d" + "reference": "e879d2b0d9b42397c67e47880d40549e993d06ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/gax-php/zipball/bf32dd04b5a31e6616f18bf62f49873ff16a340d", - "reference": "bf32dd04b5a31e6616f18bf62f49873ff16a340d", + "url": "https://api.github.com/repos/googleapis/gax-php/zipball/e879d2b0d9b42397c67e47880d40549e993d06ab", + "reference": "e879d2b0d9b42397c67e47880d40549e993d06ab", "shasum": "", "mirrors": [ { @@ -2706,20 +2797,22 @@ }, "require": { "google/auth": "^1.18.0", - "google/common-protos": "^1.0||^2.0", + "google/common-protos": "^1.3.1||^2.0||^3.0", "google/grpc-gcp": "^0.2", - "google/protobuf": "^3.12.2", + "google/longrunning": "^0.2", + "google/protobuf": "^3.21.4", "grpc/grpc": "^1.13", "guzzlehttp/promises": "^1.3", "guzzlehttp/psr7": "^1.7.0||^2", - "php": ">=5.5" + "php": ">=7.0" }, "conflict": { "ext-protobuf": "<3.7.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.36", - "squizlabs/php_codesniffer": "3.*" + "phpunit/phpunit": "^5.5||^8.5", + "squizlabs/php_codesniffer": "3.*", + "yoast/phpunit-polyfills": "^1.0" }, "type": "library", "autoload": { @@ -2739,9 +2832,9 @@ ], "support": { "issues": "https://github.com/googleapis/gax-php/issues", - "source": "https://github.com/googleapis/gax-php/tree/v1.11.4" + "source": "https://github.com/googleapis/gax-php/tree/v1.16.1" }, - "time": "2022-01-26T19:06:45+00:00" + "time": "2022-08-11T17:26:22+00:00" }, { "name": "google/grpc-gcp", @@ -2794,6 +2887,56 @@ }, "time": "2021-09-27T22:57:18+00:00" }, + { + "name": "google/longrunning", + "version": "v0.2.0", + "source": { + "type": "git", + "url": "https://github.com/googleapis/php-longrunning.git", + "reference": "5b7500eede9d6b18ef038bef0b5449cbf085e1d6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/5b7500eede9d6b18ef038bef0b5449cbf085e1d6", + "reference": "5b7500eede9d6b18ef038bef0b5449cbf085e1d6", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require-dev": { + "google/gax": "^1.13.0", + "phpunit/phpunit": "^4.8|^5.0|^8.0" + }, + "type": "library", + "extra": { + "component": { + "id": "longrunning", + "path": "LongRunning", + "entry": null, + "target": "googleapis/php-longrunning" + } + }, + "autoload": { + "psr-4": { + "Google\\LongRunning\\": "src/LongRunning", + "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning", + "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "description": "Google LongRunning Client for PHP", + "support": { + "source": "https://github.com/googleapis/php-longrunning/tree/v0.2.0" + }, + "time": "2022-08-05T00:41:21+00:00" + }, { "name": "google/photos-library", "version": "v1.7.0", @@ -2851,16 +2994,16 @@ }, { "name": "google/protobuf", - "version": "v3.20.0", + "version": "v3.21.5", "source": { "type": "git", "url": "https://github.com/protocolbuffers/protobuf-php.git", - "reference": "c2fa02b7b39786ff9f76e3b3c1bb28a022987278" + "reference": "70649d33d2b6e8fd0db6d9b6fffc7f46f01f1438" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/c2fa02b7b39786ff9f76e3b3c1bb28a022987278", - "reference": "c2fa02b7b39786ff9f76e3b3c1bb28a022987278", + "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/70649d33d2b6e8fd0db6d9b6fffc7f46f01f1438", + "reference": "70649d33d2b6e8fd0db6d9b6fffc7f46f01f1438", "shasum": "", "mirrors": [ { @@ -2870,10 +3013,10 @@ ] }, "require": { - "php": ">=5.5.0" + "php": ">=7.0.0" }, "require-dev": { - "phpunit/phpunit": ">=4.8.0" + "phpunit/phpunit": ">=5.0.0" }, "suggest": { "ext-bcmath": "Need to support JSON deserialization" @@ -2895,10 +3038,9 @@ "proto" ], "support": { - "issues": "https://github.com/protocolbuffers/protobuf-php/issues", - "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.20.0" + "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.21.5" }, - "time": "2022-04-01T18:03:16+00:00" + "time": "2022-08-09T19:53:56+00:00" }, { "name": "grpc/grpc", @@ -3015,16 +3157,16 @@ }, { "name": "guzzlehttp/guzzle", - "version": "6.5.5", + "version": "6.5.8", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e" + "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", - "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981", + "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981", "shasum": "", "mirrors": [ { @@ -3036,9 +3178,9 @@ "require": { "ext-json": "*", "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.6.1", + "guzzlehttp/psr7": "^1.9", "php": ">=5.5", - "symfony/polyfill-intl-idn": "^1.17.0" + "symfony/polyfill-intl-idn": "^1.17" }, "require-dev": { "ext-curl": "*", @@ -3067,10 +3209,40 @@ "MIT" ], "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], "description": "Guzzle is a PHP HTTP client library", @@ -3086,9 +3258,23 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/6.5" + "source": "https://github.com/guzzle/guzzle/tree/6.5.8" }, - "time": "2020-06-16T21:01:06+00:00" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2022-06-20T22:16:07+00:00" }, { "name": "guzzlehttp/guzzle-services", @@ -3252,16 +3438,16 @@ }, { "name": "guzzlehttp/psr7", - "version": "1.x-dev", + "version": "1.9.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85" + "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85", - "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", + "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", "shasum": "", "mirrors": [ { @@ -3288,7 +3474,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.7-dev" + "dev-master": "1.9-dev" } }, "autoload": { @@ -3348,7 +3534,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.x" + "source": "https://github.com/guzzle/psr7/tree/1.9.0" }, "funding": [ { @@ -3364,7 +3550,7 @@ "type": "tidelift" } ], - "time": "2021-10-05T13:56:00+00:00" + "time": "2022-06-20T21:43:03+00:00" }, { "name": "jaeger/g-http", @@ -3415,16 +3601,16 @@ }, { "name": "jaeger/phpquery-single", - "version": "1.0.1", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/jae-jae/phpQuery-single.git", - "reference": "fb80b4a0e5a337438d26e061ec3fb725c9f2a116" + "reference": "39a650ade692a6b480c22220dce0c198d6a946fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/fb80b4a0e5a337438d26e061ec3fb725c9f2a116", - "reference": "fb80b4a0e5a337438d26e061ec3fb725c9f2a116", + "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb", + "reference": "39a650ade692a6b480c22220dce0c198d6a946fb", "shasum": "", "mirrors": [ { @@ -3462,9 +3648,9 @@ "homepage": "http://code.google.com/p/phpquery/", "support": { "issues": "https://github.com/jae-jae/phpQuery-single/issues", - "source": "https://github.com/jae-jae/phpQuery-single/tree/master" + "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1" }, - "time": "2019-11-05T01:50:34+00:00" + "time": "2022-03-26T15:01:16+00:00" }, { "name": "jaeger/querylist", @@ -4469,16 +4655,16 @@ }, { "name": "league/mime-type-detection", - "version": "1.10.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "3e4a35d756eedc67096f30240a68a3149120dae7" + "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3e4a35d756eedc67096f30240a68a3149120dae7", - "reference": "3e4a35d756eedc67096f30240a68a3149120dae7", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", + "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", "shasum": "", "mirrors": [ { @@ -4515,7 +4701,7 @@ "description": "Mime-type detection for Flysystem", "support": { "issues": "https://github.com/thephpleague/mime-type-detection/issues", - "source": "https://github.com/thephpleague/mime-type-detection/tree/1.10.0" + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" }, "funding": [ { @@ -4527,7 +4713,7 @@ "type": "tidelift" } ], - "time": "2022-04-11T12:49:04+00:00" + "time": "2022-04-17T13:12:02+00:00" }, { "name": "league/oauth2-client", @@ -4663,96 +4849,6 @@ }, "time": "2016-08-11T17:49:21+00:00" }, - { - "name": "mgp25/instagram-php", - "version": "dev-master", - "source": { - "type": "git", - "url": "https://github.com/mgp25/Instagram-API.git", - "reference": "441e025ccac8443ec7960d32837c5e5658817dae" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mgp25/Instagram-API/zipball/441e025ccac8443ec7960d32837c5e5658817dae", - "reference": "441e025ccac8443ec7960d32837c5e5658817dae", - "shasum": "", - "mirrors": [ - { - "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", - "preferred": true - } - ] - }, - "require": { - "binsoul/net-mqtt-client-react": "^0.3.2", - "clue/http-proxy-react": "^1.1.0", - "clue/socks-react": "^0.8.2", - "ext-bcmath": "*", - "ext-curl": "*", - "ext-exif": "*", - "ext-gd": "*", - "ext-mbstring": "*", - "ext-zlib": "*", - "guzzlehttp/guzzle": "^6.2", - "lazyjsonmapper/lazyjsonmapper": "^1.6.1", - "php": ">=5.6", - "psr/log": "^1.0", - "react/event-loop": "^0.4.3", - "react/promise": "^2.5", - "react/socket": "^0.8", - "symfony/process": "^3.4|^4.0", - "valga/fbns-react": "^0.1.8", - "winbox/args": "1.0.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^2.11.0", - "monolog/monolog": "^1.23", - "phpunit/phpunit": "^5.7 || ^6.2", - "react/http": "^0.7.2" - }, - "suggest": { - "ext-event": "Installing PHP's native Event extension enables faster Realtime class event handling.", - "ext-pdo": "Installing ext-pdo allows for Postgres settings storage.", - "ext-redis": "Installing ext-pdo allows for Redis settings storage." - }, - "type": "library", - "autoload": { - "psr-4": { - "InstagramAPI\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "RPL-1.5", - "proprietary" - ], - "authors": [ - { - "name": "mgp25", - "email": "me@mgp25.com", - "role": "Founder" - }, - { - "name": "SteveJobzniak", - "homepage": "https://github.com/SteveJobzniak", - "role": "Developer" - } - ], - "description": "Instagram's private API for PHP", - "keywords": [ - "api", - "instagram", - "php", - "private" - ], - "support": { - "issues": "https://github.com/mgp25/Instagram-API/issues", - "source": "https://github.com/mgp25/Instagram-API/", - "wiki": "https://github.com/mgp25/Instagram-API/wiki" - }, - "abandoned": true, - "time": "2020-01-15T00:52:05+00:00" - }, { "name": "mhor/php-mediainfo", "version": "4.1.3", @@ -4811,16 +4907,16 @@ }, { "name": "microsoft/microsoft-graph", - "version": "1.60.0", + "version": "1.72.0", "source": { "type": "git", "url": "https://github.com/microsoftgraph/msgraph-sdk-php.git", - "reference": "301a0b4e238abb4c2d1cbd4cb4c9656826d772f1" + "reference": "2cf18e6f3e4519a2a749ce4656b6d3bcae1e1ac4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/microsoftgraph/msgraph-sdk-php/zipball/301a0b4e238abb4c2d1cbd4cb4c9656826d772f1", - "reference": "301a0b4e238abb4c2d1cbd4cb4c9656826d772f1", + "url": "https://api.github.com/repos/microsoftgraph/msgraph-sdk-php/zipball/2cf18e6f3e4519a2a749ce4656b6d3bcae1e1ac4", + "reference": "2cf18e6f3e4519a2a749ce4656b6d3bcae1e1ac4", "shasum": "", "mirrors": [ { @@ -4862,9 +4958,9 @@ "homepage": "https://developer.microsoft.com/en-us/graph", "support": { "issues": "https://github.com/microsoftgraph/msgraph-sdk-php/issues", - "source": "https://github.com/microsoftgraph/msgraph-sdk-php/tree/1.60.0" + "source": "https://github.com/microsoftgraph/msgraph-sdk-php/tree/1.72.0" }, - "time": "2022-04-11T09:46:10+00:00" + "time": "2022-07-12T16:45:29+00:00" }, { "name": "mnapoli/front-yaml", @@ -4913,16 +5009,16 @@ }, { "name": "monolog/monolog", - "version": "1.27.0", + "version": "1.27.1", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "52ebd235c1f7e0d5e1b16464b695a28335f8e44a" + "reference": "904713c5929655dc9b97288b69cfeedad610c9a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/52ebd235c1f7e0d5e1b16464b695a28335f8e44a", - "reference": "52ebd235c1f7e0d5e1b16464b695a28335f8e44a", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/904713c5929655dc9b97288b69cfeedad610c9a1", + "reference": "904713c5929655dc9b97288b69cfeedad610c9a1", "shasum": "", "mirrors": [ { @@ -4989,7 +5085,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/1.27.0" + "source": "https://github.com/Seldaek/monolog/tree/1.27.1" }, "funding": [ { @@ -5001,7 +5097,7 @@ "type": "tidelift" } ], - "time": "2022-03-13T20:29:46+00:00" + "time": "2022-06-09T08:53:42+00:00" }, { "name": "nesbot/carbon", @@ -5296,16 +5392,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.13.2", + "version": "v4.14.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "210577fe3cf7badcc5814d99455df46564f3c077" + "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077", - "reference": "210577fe3cf7badcc5814d99455df46564f3c077", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1", + "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1", "shasum": "", "mirrors": [ { @@ -5352,9 +5448,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0" }, - "time": "2021-11-30T19:35:32+00:00" + "time": "2022-05-31T20:59:12+00:00" }, { "name": "norkunas/youtube-dl-php", @@ -5490,16 +5586,16 @@ }, { "name": "paragonie/constant_time_encoding", - "version": "v2.5.0", + "version": "v2.6.3", "source": { "type": "git", "url": "https://github.com/paragonie/constant_time_encoding.git", - "reference": "9229e15f2e6ba772f0c55dd6986c563b937170a8" + "reference": "58c3f47f650c94ec05a151692652a868995d2938" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/9229e15f2e6ba772f0c55dd6986c563b937170a8", - "reference": "9229e15f2e6ba772f0c55dd6986c563b937170a8", + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938", + "reference": "58c3f47f650c94ec05a151692652a868995d2938", "shasum": "", "mirrors": [ { @@ -5559,7 +5655,7 @@ "issues": "https://github.com/paragonie/constant_time_encoding/issues", "source": "https://github.com/paragonie/constant_time_encoding" }, - "time": "2022-01-17T05:32:27+00:00" + "time": "2022-06-14T06:56:20+00:00" }, { "name": "paragonie/random_compat", @@ -7061,16 +7157,16 @@ }, { "name": "qcloud/cos-sdk-v5", - "version": "v2.5.1", + "version": "v2.5.6", "source": { "type": "git", "url": "https://github.com/tencentyun/cos-php-sdk-v5.git", - "reference": "85d5cb660574a3de6f4a83b76e8b0506e03b9e9a" + "reference": "607ee49d372a799964206b6ae0a9eb2816201c42" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/85d5cb660574a3de6f4a83b76e8b0506e03b9e9a", - "reference": "85d5cb660574a3de6f4a83b76e8b0506e03b9e9a", + "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/607ee49d372a799964206b6ae0a9eb2816201c42", + "reference": "607ee49d372a799964206b6ae0a9eb2816201c42", "shasum": "", "mirrors": [ { @@ -7128,9 +7224,9 @@ ], "support": { "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues", - "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.5.1" + "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.5.6" }, - "time": "2022-02-16T02:38:37+00:00" + "time": "2022-06-07T14:49:19+00:00" }, { "name": "raiym/instagram-php-scraper", @@ -8142,16 +8238,16 @@ }, { "name": "symfony/console", - "version": "v4.4.40", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "bdcc66f3140421038f495e5b50e3ca6ffa14c773" + "reference": "c35fafd7f12ebd6f9e29c95a370df7f1fb171a40" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/bdcc66f3140421038f495e5b50e3ca6ffa14c773", - "reference": "bdcc66f3140421038f495e5b50e3ca6ffa14c773", + "url": "https://api.github.com/repos/symfony/console/zipball/c35fafd7f12ebd6f9e29c95a370df7f1fb171a40", + "reference": "c35fafd7f12ebd6f9e29c95a370df7f1fb171a40", "shasum": "", "mirrors": [ { @@ -8218,7 +8314,7 @@ "description": "Eases the creation of beautiful and testable command line interfaces", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/console/tree/v4.4.40" + "source": "https://github.com/symfony/console/tree/v4.4.44" }, "funding": [ { @@ -8234,20 +8330,20 @@ "type": "tidelift" } ], - "time": "2022-03-26T22:12:04+00:00" + "time": "2022-07-20T09:59:04+00:00" }, { "name": "symfony/css-selector", - "version": "v5.4.3", + "version": "v5.4.11", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "b0a190285cd95cb019237851205b8140ef6e368e" + "reference": "c1681789f059ab756001052164726ae88512ae3d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e", - "reference": "b0a190285cd95cb019237851205b8140ef6e368e", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/c1681789f059ab756001052164726ae88512ae3d", + "reference": "c1681789f059ab756001052164726ae88512ae3d", "shasum": "", "mirrors": [ { @@ -8290,7 +8386,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v5.4.3" + "source": "https://github.com/symfony/css-selector/tree/v5.4.11" }, "funding": [ { @@ -8306,20 +8402,20 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:53:40+00:00" + "time": "2022-06-27T16:58:25+00:00" }, { "name": "symfony/debug", - "version": "v4.4.37", + "version": "v4.4.41", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "5de6c6e7f52b364840e53851c126be4d71e60470" + "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/5de6c6e7f52b364840e53851c126be4d71e60470", - "reference": "5de6c6e7f52b364840e53851c126be4d71e60470", + "url": "https://api.github.com/repos/symfony/debug/zipball/6637e62480b60817b9a6984154a533e8e64c6bd5", + "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5", "shasum": "", "mirrors": [ { @@ -8364,7 +8460,7 @@ "description": "Provides tools to ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/debug/tree/v4.4.37" + "source": "https://github.com/symfony/debug/tree/v4.4.41" }, "funding": [ { @@ -8380,11 +8476,12 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:41:36+00:00" + "abandoned": "symfony/error-handler", + "time": "2022-04-12T15:19:55+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v2.5.1", + "version": "v2.5.2", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", @@ -8437,7 +8534,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2" }, "funding": [ { @@ -8457,16 +8554,16 @@ }, { "name": "symfony/dom-crawler", - "version": "v5.4.6", + "version": "v5.4.11", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "c0bda97480d96337bd3866026159a8b358665457" + "reference": "0b900ca5576ecd59e08c76127e616667cfe427a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c0bda97480d96337bd3866026159a8b358665457", - "reference": "c0bda97480d96337bd3866026159a8b358665457", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/0b900ca5576ecd59e08c76127e616667cfe427a7", + "reference": "0b900ca5576ecd59e08c76127e616667cfe427a7", "shasum": "", "mirrors": [ { @@ -8518,7 +8615,7 @@ "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v5.4.6" + "source": "https://github.com/symfony/dom-crawler/tree/v5.4.11" }, "funding": [ { @@ -8534,20 +8631,20 @@ "type": "tidelift" } ], - "time": "2022-03-02T12:42:23+00:00" + "time": "2022-06-27T16:58:25+00:00" }, { "name": "symfony/error-handler", - "version": "v4.4.40", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "2d0c9c229d995bef5e87fe4e83b717541832b448" + "reference": "be731658121ef2d8be88f3a1ec938148a9237291" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/2d0c9c229d995bef5e87fe4e83b717541832b448", - "reference": "2d0c9c229d995bef5e87fe4e83b717541832b448", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291", + "reference": "be731658121ef2d8be88f3a1ec938148a9237291", "shasum": "", "mirrors": [ { @@ -8592,7 +8689,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v4.4.40" + "source": "https://github.com/symfony/error-handler/tree/v4.4.44" }, "funding": [ { @@ -8608,20 +8705,20 @@ "type": "tidelift" } ], - "time": "2022-03-07T13:29:34+00:00" + "time": "2022-07-28T16:29:46+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.4.37", + "version": "v4.4.42", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "3ccfcfb96ecce1217d7b0875a0736976bc6e63dc" + "reference": "708e761740c16b02c86e3f0c932018a06b895d40" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3ccfcfb96ecce1217d7b0875a0736976bc6e63dc", - "reference": "3ccfcfb96ecce1217d7b0875a0736976bc6e63dc", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/708e761740c16b02c86e3f0c932018a06b895d40", + "reference": "708e761740c16b02c86e3f0c932018a06b895d40", "shasum": "", "mirrors": [ { @@ -8682,7 +8779,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.37" + "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.42" }, "funding": [ { @@ -8698,11 +8795,11 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:41:36+00:00" + "time": "2022-05-05T15:33:49+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v1.1.12", + "version": "v1.1.13", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", @@ -8767,7 +8864,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.12" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13" }, "funding": [ { @@ -8787,16 +8884,16 @@ }, { "name": "symfony/filesystem", - "version": "v4.4.39", + "version": "v4.4.42", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "72a5b35fecaa670b13954e6eaf414acbe2a67b35" + "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/72a5b35fecaa670b13954e6eaf414acbe2a67b35", - "reference": "72a5b35fecaa670b13954e6eaf414acbe2a67b35", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5", + "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5", "shasum": "", "mirrors": [ { @@ -8836,7 +8933,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.39" + "source": "https://github.com/symfony/filesystem/tree/v4.4.42" }, "funding": [ { @@ -8852,20 +8949,20 @@ "type": "tidelift" } ], - "time": "2022-02-25T10:38:15+00:00" + "time": "2022-05-20T08:49:14+00:00" }, { "name": "symfony/finder", - "version": "v4.4.37", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "b17d76d7ed179f017aad646e858c90a2771af15d" + "reference": "66bd787edb5e42ff59d3523f623895af05043e4f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/b17d76d7ed179f017aad646e858c90a2771af15d", - "reference": "b17d76d7ed179f017aad646e858c90a2771af15d", + "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f", + "reference": "66bd787edb5e42ff59d3523f623895af05043e4f", "shasum": "", "mirrors": [ { @@ -8904,7 +9001,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v4.4.37" + "source": "https://github.com/symfony/finder/tree/v4.4.44" }, "funding": [ { @@ -8920,20 +9017,20 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:41:36+00:00" + "time": "2022-07-29T07:35:46+00:00" }, { "name": "symfony/http-client-contracts", - "version": "v2.5.1", + "version": "v2.5.2", "source": { "type": "git", "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "1a4f708e4e87f335d1b1be6148060739152f0bd5" + "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1a4f708e4e87f335d1b1be6148060739152f0bd5", - "reference": "1a4f708e4e87f335d1b1be6148060739152f0bd5", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70", + "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70", "shasum": "", "mirrors": [ { @@ -8988,7 +9085,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.1" + "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2" }, "funding": [ { @@ -9004,20 +9101,20 @@ "type": "tidelift" } ], - "time": "2022-03-13T20:07:29+00:00" + "time": "2022-04-12T15:48:08+00:00" }, { "name": "symfony/http-foundation", - "version": "v4.4.39", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "60e8e42a4579551e5ec887d04380e2ab9e4cc314" + "reference": "9bc83c2f78949fc64503134a3139a7b055890d06" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/60e8e42a4579551e5ec887d04380e2ab9e4cc314", - "reference": "60e8e42a4579551e5ec887d04380e2ab9e4cc314", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9bc83c2f78949fc64503134a3139a7b055890d06", + "reference": "9bc83c2f78949fc64503134a3139a7b055890d06", "shasum": "", "mirrors": [ { @@ -9062,7 +9159,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v4.4.39" + "source": "https://github.com/symfony/http-foundation/tree/v4.4.44" }, "funding": [ { @@ -9078,20 +9175,20 @@ "type": "tidelift" } ], - "time": "2022-03-04T07:06:13+00:00" + "time": "2022-07-20T09:59:04+00:00" }, { "name": "symfony/http-kernel", - "version": "v4.4.40", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "330a859a7ec9d7e7d82f2569b1c0700a26ffb1e3" + "reference": "9e444442334fae9637ef3209bc2abddfef49e714" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/330a859a7ec9d7e7d82f2569b1c0700a26ffb1e3", - "reference": "330a859a7ec9d7e7d82f2569b1c0700a26ffb1e3", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9e444442334fae9637ef3209bc2abddfef49e714", + "reference": "9e444442334fae9637ef3209bc2abddfef49e714", "shasum": "", "mirrors": [ { @@ -9172,7 +9269,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v4.4.40" + "source": "https://github.com/symfony/http-kernel/tree/v4.4.44" }, "funding": [ { @@ -9188,20 +9285,20 @@ "type": "tidelift" } ], - "time": "2022-04-02T05:55:50+00:00" + "time": "2022-07-29T12:23:38+00:00" }, { "name": "symfony/mime", - "version": "v5.4.7", + "version": "v5.4.11", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "92d27a34dea2e199fa9b687e3fff3a7d169b7b1c" + "reference": "3cd175cdcdb6db2e589e837dd46aff41027d9830" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/92d27a34dea2e199fa9b687e3fff3a7d169b7b1c", - "reference": "92d27a34dea2e199fa9b687e3fff3a7d169b7b1c", + "url": "https://api.github.com/repos/symfony/mime/zipball/3cd175cdcdb6db2e589e837dd46aff41027d9830", + "reference": "3cd175cdcdb6db2e589e837dd46aff41027d9830", "shasum": "", "mirrors": [ { @@ -9261,7 +9358,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v5.4.7" + "source": "https://github.com/symfony/mime/tree/v5.4.11" }, "funding": [ { @@ -9277,20 +9374,20 @@ "type": "tidelift" } ], - "time": "2022-03-11T16:08:05+00:00" + "time": "2022-07-20T11:34:24+00:00" }, { "name": "symfony/options-resolver", - "version": "v4.4.37", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "41d1e741a292574887629369400820c9645e8a87" + "reference": "583f56160f716dd435f1cd721fd14b548f4bb510" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/41d1e741a292574887629369400820c9645e8a87", - "reference": "41d1e741a292574887629369400820c9645e8a87", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/583f56160f716dd435f1cd721fd14b548f4bb510", + "reference": "583f56160f716dd435f1cd721fd14b548f4bb510", "shasum": "", "mirrors": [ { @@ -9334,7 +9431,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v4.4.37" + "source": "https://github.com/symfony/options-resolver/tree/v4.4.44" }, "funding": [ { @@ -9350,20 +9447,20 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:41:36+00:00" + "time": "2022-07-20T09:59:04+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.25.0", + "version": "v1.26.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "30885182c981ab175d4d034db0f6f469898070ab" + "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab", - "reference": "30885182c981ab175d4d034db0f6f469898070ab", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4", + "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4", "shasum": "", "mirrors": [ { @@ -9384,7 +9481,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.26-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9422,7 +9519,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0" }, "funding": [ { @@ -9438,20 +9535,20 @@ "type": "tidelift" } ], - "time": "2021-10-20T20:35:02+00:00" + "time": "2022-05-24T11:49:31+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.25.0", + "version": "v1.26.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40" + "reference": "143f1881e655bebca1312722af8068de235ae5dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f1aed619e28cb077fc83fac8c4c0383578356e40", - "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc", + "reference": "143f1881e655bebca1312722af8068de235ae5dc", "shasum": "", "mirrors": [ { @@ -9472,7 +9569,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.26-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9511,7 +9608,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0" }, "funding": [ { @@ -9527,20 +9624,20 @@ "type": "tidelift" } ], - "time": "2022-01-04T09:04:05+00:00" + "time": "2022-05-24T11:49:31+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.25.0", + "version": "v1.26.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "749045c69efb97c70d25d7463abba812e91f3a44" + "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44", - "reference": "749045c69efb97c70d25d7463abba812e91f3a44", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8", + "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8", "shasum": "", "mirrors": [ { @@ -9560,7 +9657,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.26-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9604,7 +9701,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0" }, "funding": [ { @@ -9620,20 +9717,20 @@ "type": "tidelift" } ], - "time": "2021-09-14T14:02:44+00:00" + "time": "2022-05-24T11:49:31+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.25.0", + "version": "v1.26.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" + "reference": "219aa369ceff116e673852dce47c3a41794c14bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", - "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd", + "reference": "219aa369ceff116e673852dce47c3a41794c14bd", "shasum": "", "mirrors": [ { @@ -9651,7 +9748,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.26-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9694,7 +9791,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0" }, "funding": [ { @@ -9710,20 +9807,20 @@ "type": "tidelift" } ], - "time": "2021-02-19T12:13:01+00:00" + "time": "2022-05-24T11:49:31+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.25.0", + "version": "v1.26.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825" + "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825", - "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e", + "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e", "shasum": "", "mirrors": [ { @@ -9744,7 +9841,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.26-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9783,7 +9880,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0" }, "funding": [ { @@ -9799,20 +9896,20 @@ "type": "tidelift" } ], - "time": "2021-11-30T18:21:41+00:00" + "time": "2022-05-24T11:49:31+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.25.0", + "version": "v1.26.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "9a142215a36a3888e30d0a9eeea9766764e96976" + "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976", - "reference": "9a142215a36a3888e30d0a9eeea9766764e96976", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2", + "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2", "shasum": "", "mirrors": [ { @@ -9827,7 +9924,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.26-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9865,7 +9962,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0" }, "funding": [ { @@ -9881,20 +9978,20 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:17:38+00:00" + "time": "2022-05-24T11:49:31+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.25.0", + "version": "v1.26.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5" + "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5", - "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85", + "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85", "shasum": "", "mirrors": [ { @@ -9909,7 +10006,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.26-dev" }, "thanks": { "name": "symfony/polyfill", @@ -9950,7 +10047,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0" }, "funding": [ { @@ -9966,20 +10063,20 @@ "type": "tidelift" } ], - "time": "2021-06-05T21:20:04+00:00" + "time": "2022-05-24T11:49:31+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.25.0", + "version": "v1.26.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c" + "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c", - "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace", + "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace", "shasum": "", "mirrors": [ { @@ -9994,7 +10091,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" + "dev-main": "1.26-dev" }, "thanks": { "name": "symfony/polyfill", @@ -10039,7 +10136,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0" }, "funding": [ { @@ -10055,20 +10152,20 @@ "type": "tidelift" } ], - "time": "2022-03-04T08:16:47+00:00" + "time": "2022-05-10T07:21:04+00:00" }, { "name": "symfony/process", - "version": "v4.4.40", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "54e9d763759268e07eb13b921d8631fc2816206f" + "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/54e9d763759268e07eb13b921d8631fc2816206f", - "reference": "54e9d763759268e07eb13b921d8631fc2816206f", + "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2", + "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2", "shasum": "", "mirrors": [ { @@ -10107,7 +10204,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v4.4.40" + "source": "https://github.com/symfony/process/tree/v4.4.44" }, "funding": [ { @@ -10123,20 +10220,20 @@ "type": "tidelift" } ], - "time": "2022-03-18T16:18:39+00:00" + "time": "2022-06-27T13:16:42+00:00" }, { "name": "symfony/routing", - "version": "v4.4.37", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "324f7f73b89cd30012575119430ccfb1dfbc24be" + "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/324f7f73b89cd30012575119430ccfb1dfbc24be", - "reference": "324f7f73b89cd30012575119430ccfb1dfbc24be", + "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae", + "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae", "shasum": "", "mirrors": [ { @@ -10202,7 +10299,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v4.4.37" + "source": "https://github.com/symfony/routing/tree/v4.4.44" }, "funding": [ { @@ -10218,20 +10315,20 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:41:36+00:00" + "time": "2022-07-20T09:59:04+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.5.1", + "version": "v2.5.2", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c" + "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c", - "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c", + "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c", "shasum": "", "mirrors": [ { @@ -10291,7 +10388,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v2.5.1" + "source": "https://github.com/symfony/service-contracts/tree/v2.5.2" }, "funding": [ { @@ -10307,20 +10404,20 @@ "type": "tidelift" } ], - "time": "2022-03-13T20:07:29+00:00" + "time": "2022-05-30T19:17:29+00:00" }, { "name": "symfony/translation", - "version": "v4.4.37", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "4ce00d6875230b839f5feef82e51971f6c886e00" + "reference": "af947fefc306cec6ea5a1f6160c7e305a71f2493" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/4ce00d6875230b839f5feef82e51971f6c886e00", - "reference": "4ce00d6875230b839f5feef82e51971f6c886e00", + "url": "https://api.github.com/repos/symfony/translation/zipball/af947fefc306cec6ea5a1f6160c7e305a71f2493", + "reference": "af947fefc306cec6ea5a1f6160c7e305a71f2493", "shasum": "", "mirrors": [ { @@ -10386,7 +10483,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v4.4.37" + "source": "https://github.com/symfony/translation/tree/v4.4.44" }, "funding": [ { @@ -10402,20 +10499,20 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:41:36+00:00" + "time": "2022-07-20T09:59:04+00:00" }, { "name": "symfony/translation-contracts", - "version": "v2.5.1", + "version": "v2.5.2", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "1211df0afa701e45a04253110e959d4af4ef0f07" + "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1211df0afa701e45a04253110e959d4af4ef0f07", - "reference": "1211df0afa701e45a04253110e959d4af4ef0f07", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe", + "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe", "shasum": "", "mirrors": [ { @@ -10470,7 +10567,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v2.5.1" + "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2" }, "funding": [ { @@ -10486,20 +10583,20 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:53:40+00:00" + "time": "2022-06-27T16:58:25+00:00" }, { "name": "symfony/var-dumper", - "version": "v4.4.39", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "35237c5e5dcb6593a46a860ba5b29c1d4683d80e" + "reference": "f19951007dae942cc79b979c1fe26bfdfbeb54ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/35237c5e5dcb6593a46a860ba5b29c1d4683d80e", - "reference": "35237c5e5dcb6593a46a860ba5b29c1d4683d80e", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f19951007dae942cc79b979c1fe26bfdfbeb54ed", + "reference": "f19951007dae942cc79b979c1fe26bfdfbeb54ed", "shasum": "", "mirrors": [ { @@ -10565,7 +10662,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v4.4.39" + "source": "https://github.com/symfony/var-dumper/tree/v4.4.44" }, "funding": [ { @@ -10581,7 +10678,7 @@ "type": "tidelift" } ], - "time": "2022-02-25T10:38:15+00:00" + "time": "2022-07-20T09:59:04+00:00" }, { "name": "symfony/yaml", @@ -10666,16 +10763,16 @@ }, { "name": "tightenco/collect", - "version": "v8.83.6", + "version": "v8.83.15", "source": { "type": "git", "url": "https://github.com/tighten/collect.git", - "reference": "e29832b2a3f20e7de307d3c69bf257693c07ce2c" + "reference": "7275c1b5f6bfc539d72bb5984d3b9a89e47e27c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tighten/collect/zipball/e29832b2a3f20e7de307d3c69bf257693c07ce2c", - "reference": "e29832b2a3f20e7de307d3c69bf257693c07ce2c", + "url": "https://api.github.com/repos/tighten/collect/zipball/7275c1b5f6bfc539d72bb5984d3b9a89e47e27c9", + "reference": "7275c1b5f6bfc539d72bb5984d3b9a89e47e27c9", "shasum": "", "mirrors": [ { @@ -10720,9 +10817,9 @@ ], "support": { "issues": "https://github.com/tighten/collect/issues", - "source": "https://github.com/tighten/collect/tree/v8.83.6" + "source": "https://github.com/tighten/collect/tree/v8.83.15" }, - "time": "2022-04-01T16:23:12+00:00" + "time": "2022-04-15T20:31:14+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -13152,16 +13249,16 @@ }, { "name": "webmozart/assert", - "version": "1.10.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://github.com/webmozarts/assert.git", - "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25" + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25", - "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", "shasum": "", "mirrors": [ { @@ -13171,8 +13268,8 @@ ] }, "require": { - "php": "^7.2 || ^8.0", - "symfony/polyfill-ctype": "^1.8" + "ext-ctype": "*", + "php": "^7.2 || ^8.0" }, "conflict": { "phpstan/phpstan": "<0.12.20", @@ -13210,16 +13307,15 @@ ], "support": { "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.10.0" + "source": "https://github.com/webmozarts/assert/tree/1.11.0" }, - "time": "2021-03-09T10:59:23+00:00" + "time": "2022-06-03T18:03:27+00:00" } ], "aliases": [], "minimum-stability": "dev", "stability-flags": { "league/oauth2-client": 20, - "mgp25/instagram-php": 20, "prettus/l5-repository": 20 }, "prefer-stable": true, @@ -13227,8 +13323,9 @@ "platform": { "php": "^7.1.3", "ext-curl": "^7.1", + "ext-fileinfo": "*", "ext-json": "*" }, "platform-dev": [], - "plugin-api-version": "2.2.0" + "plugin-api-version": "2.3.0" } diff --git a/mgp25.zip b/mgp25.zip new file mode 100644 index 0000000..37a6127 Binary files /dev/null and b/mgp25.zip differ