diff --git a/Bootstrap.php b/Bootstrap.php index 8b16824f..a877447e 100644 --- a/Bootstrap.php +++ b/Bootstrap.php @@ -86,7 +86,7 @@ class Shopware_Plugins_Frontend_NostoTagging_Bootstrap extends Shopware_Components_Plugin_Bootstrap { const PLATFORM_NAME = 'shopware'; - const PLUGIN_VERSION = '2.4.4'; + const PLUGIN_VERSION = '2.4.5'; const MENU_PARENT_ID = 23; // Configuration const NEW_ENTITY_MANAGER_VERSION = '5.0.0'; const NEW_ATTRIBUTE_MANAGER_VERSION = '5.2.0'; @@ -382,7 +382,7 @@ private function addMyAttribute(array $attribute) $attribute['type'] ); } else { - /** @noinspection PhpDeprecationInspection */ + /** @phan-suppress-next-line PhanUndeclaredMethod */ Shopware()->Models()->addAttribute( $attribute['table'], $attribute['prefix'], @@ -462,6 +462,7 @@ protected function createMyMenu() * @return mixed|string * @throws InvalidArgumentException * @throws NostoException in case version cannot be determined + * @suppress PhanUndeclaredConstantOfClass */ public function getShopwareVersion() { @@ -604,6 +605,7 @@ protected function registerMyEvents() */ public function getAllActiveShops() { + /** @phan-suppress-next-line UndeclaredTypeInInlineVar */ /** @var \Shopware_Proxies_ShopwareModelsShopRepositoryProxy $repository */ $repository = Shopware()->Container()->get('models')->getRepository('Shopware\Models\Shop\Shop'); return $repository->getActiveShops(); @@ -779,7 +781,7 @@ private function removeMyAttribute(array $attribute) $fieldName ); } else { - /** @noinspection PhpDeprecationInspection */ + /** @phan-suppress-next-line PhanUndeclaredMethod */ Shopware()->Models()->removeAttribute( $attribute['table'], $attribute['prefix'], @@ -1300,6 +1302,7 @@ protected function addOrderTagging(Enlight_View_Default $view) // number was not present in the order variables. // This will be the case for Shopware <= 4.2. $customerId = Shopware()->Session()->offsetGet('sUserId'); + /** @phan-suppress-next-line PhanParamTooMany */ $order = Shopware() ->Models() ->getRepository('\Shopware\Models\Order\Order') diff --git a/CHANGELOG.md b/CHANGELOG.md index 801b98d9..34f28148 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.4.5 +- Update dependencies +- Upgrade Phan and fix inspections +- Bump minimal PHP version for require dev packages to 7.2 + ## 2.4.4 - Update composer dependencies diff --git a/Components/Account.php b/Components/Account.php index 687843a3..bf20f0dc 100644 --- a/Components/Account.php +++ b/Components/Account.php @@ -68,7 +68,7 @@ class Shopware_Plugins_Frontend_NostoTagging_Components_Account * @param Locale|null $locale the locale or null. * @param stdClass|null $identity the user identity. * @param string|null $email (optional) the account owner email if different than the active admin user. - * @param array|stdClass $details (optional) the account details. + * @param array|stdClass|null $details (optional) the account details. * @return AccountCustomModel the newly created account. * @throws NostoException if the account cannot be created for any reason. * @suppress PhanTypeMismatchArgument diff --git a/Components/Helper/Image.php b/Components/Helper/Image.php index bd273a27..2444eedb 100644 --- a/Components/Helper/Image.php +++ b/Components/Helper/Image.php @@ -98,14 +98,15 @@ public static function getAlternativeImageUrls(Article $article, Shop $shop) * Assembles the product image url based on article. * * @param Image $image - * @param MediaServiceInterface|null $mediaService * @param Shop $shop + * @param MediaServiceInterface|null $mediaService * @return null|?string the url of the Image or null if image not found. + * @suppress PhanUndeclaredMethod $shop getters */ private static function buildUrl( Image $image, - MediaServiceInterface $mediaService = null, - Shop $shop + Shop $shop, + MediaServiceInterface $mediaService = null ) { $url = null; @@ -160,7 +161,7 @@ private static function getImageUrls(Article $article, Shop $shop) /** @var Shopware\Models\Article\Image $image */ foreach ($article->getImages() as $image) { - $imageUrl = self::buildUrl($image, $mediaService, $shop); + $imageUrl = self::buildUrl($image, $shop, $mediaService); if ($imageUrl !== null) { $imageUrls[] = $imageUrl; if ($mainImageUrl === null || $image->getMain() === 1) { diff --git a/Components/Helper/Price.php b/Components/Helper/Price.php index 9d916a33..6692fcee 100644 --- a/Components/Helper/Price.php +++ b/Components/Helper/Price.php @@ -84,7 +84,7 @@ public static function generatePricePerUnit(Article $article, Shop $shop) { $mainDetail = $article->getMainDetail(); $unit = $mainDetail->getUnit(); - $price = self::calcArticlePriceInclTax( + $price = (double)self::calcArticlePriceInclTax( $article, $shop, self::PRICE_TYPE_NORMAL @@ -339,7 +339,7 @@ private static function getProductPriceRateAfterDiscountForArticle(Article $arti /** * Get a price rate after discount * - * @param ArrayCollection|[] $discounts + * @param ArrayCollection $discounts | [] $discounts * @param Shop $shop * @return float|int price rate after discount */ diff --git a/Components/Meta/Account/Owner.php b/Components/Meta/Account/Owner.php index 5e35bdd5..a993120e 100644 --- a/Components/Meta/Account/Owner.php +++ b/Components/Meta/Account/Owner.php @@ -51,7 +51,7 @@ class Shopware_Plugins_Frontend_NostoTagging_Components_Meta_Account_Owner /** * Loads the data for the account owner. * - * @param stdClass|null the user identity. + * @param stdClass $identity|null $identity the user identity. */ public function loadData($identity = null) { diff --git a/Components/Model/Order/Buyer.php b/Components/Model/Order/Buyer.php index 309e51e3..197a725c 100644 --- a/Components/Model/Order/Buyer.php +++ b/Components/Model/Order/Buyer.php @@ -59,6 +59,9 @@ class Shopware_Plugins_Frontend_NostoTagging_Components_Model_Order_Buyer extend * * @param Customer $customer the customer model. * @throws Enlight_Event_Exception + * @suppress PhanUndeclaredClassInstanceof + * @suppress PhanUndeclaredClassMethod + */ public function loadData(Customer $customer) { @@ -81,9 +84,10 @@ public function loadData(Customer $customer) $this->setCountry($address->getCountry()->getName()); } } else { + /** @phan-suppress-next-line UndeclaredTypeInInlineVar */ /** @var Billing $address */ /** @noinspection PhpDeprecationInspection */ - $address = $customer->getBilling(); + $address = $customer->getBilling(); /** @phan-suppress-current-line PhanUndeclaredMethod */ /** @noinspection PhpDeprecationInspection */ if ($address instanceof Billing) { $this->setFirstName($address->getFirstName()); diff --git a/Components/Model/Order/Status.php b/Components/Model/Order/Status.php index 1fcd302b..a8420dda 100644 --- a/Components/Model/Order/Status.php +++ b/Components/Model/Order/Status.php @@ -63,7 +63,7 @@ public function loadData(Order $order) $description = $status->getName(); } else { /** @noinspection PhpDeprecationInspection */ - $description = $status->getDescription(); + $description = $status->getDescription(); /** @phan-suppress-current-line PhanUndeclaredMethod */ } $this->setCode($this->convertDescriptionToCode($description)); $this->setLabel($description); diff --git a/Components/Model/Sku.php b/Components/Model/Sku.php index c549a9d7..707e2b18 100644 --- a/Components/Model/Sku.php +++ b/Components/Model/Sku.php @@ -54,13 +54,13 @@ class Shopware_Plugins_Frontend_NostoTagging_Components_Model_Sku extends NostoS * * @param Detail $detail Article Detail to load the SKU information * @param Shop|null $shop the shop the product belongs to + * @suppress PhanTypeMismatchArgumentNullable */ public function loadData(Detail $detail, Shop $shop = null) { if ($shop === null) { $shop = Shopware()->Shop(); } - $this->setUrl( Product::assembleProductUrl( $detail->getArticle(), diff --git a/Components/Operation/Product.php b/Components/Operation/Product.php index e85a7fce..37650f62 100644 --- a/Components/Operation/Product.php +++ b/Components/Operation/Product.php @@ -125,7 +125,7 @@ protected function getAccounts(Article $article, $allStores = false) /** * Sends info to Nosto about a newly updated product. * - * @param \Shopware\Models\Article\Article $article the product. + * @param Article $article the product. * @throws Exception * @suppress PhanDeprecatedFunction */ @@ -139,7 +139,7 @@ public function update(Article $article) continue; } /** @noinspection PhpDeprecationInspection */ - $shop->registerResources(Shopware()->Bootstrap()); + $shop->registerResources(Shopware()->Bootstrap()); /** @phan-suppress-current-line PhanParamTooMany */ $model = new Product(); $model->loadData($article, $shop); if ($model->getProductId()) { diff --git a/Controllers/backend/NostoTagging.php b/Controllers/backend/NostoTagging.php index f7bd9887..105c686d 100644 --- a/Controllers/backend/NostoTagging.php +++ b/Controllers/backend/NostoTagging.php @@ -147,7 +147,7 @@ public function getAccountsAction() continue; } /** @noinspection PhpDeprecationInspection */ - $shop->registerResources(Shopware()->Bootstrap()); + $shop->registerResources(Shopware()->Bootstrap()); /** @phan-suppress-current-line PhanParamTooMany */ $account = NostoComponentAccount::findAccount($shop); if (isset($oauthParams[$shop->getId()])) { /** @noinspection PhpUndefinedVariableInspection */ diff --git a/Controllers/frontend/NostoTagging.php b/Controllers/frontend/NostoTagging.php index b2eb24d1..c38dc693 100644 --- a/Controllers/frontend/NostoTagging.php +++ b/Controllers/frontend/NostoTagging.php @@ -92,13 +92,15 @@ class Shopware_Controllers_Frontend_NostoTagging extends Enlight_Controller_Acti * Shopware_Controllers_Frontend_NostoTagging constructor. * @param Enlight_Controller_Request_Request|null $request * @param Enlight_Controller_Response_Response|null $response + * @throws Enlight_Event_Exception + * @throws Enlight_Exception */ public function __construct( Enlight_Controller_Request_Request $request = null, Enlight_Controller_Response_Response $response = null ) { if ($request && $response) { - parent::__construct($request, $response); + parent::__construct($request, $response); /** @phan-suppress-current-line PhanParamTooMany */ } $this->productRepository = new ProductRepository(); $this->accountRepository = new AccountRepository(); @@ -185,6 +187,7 @@ public function oauthAction() $this->redirect($redirectParams, array('code' => 302)); } else { /** @noinspection PhpUndefinedClassInspection */ + /** @phan-suppress-next-line PhanUndeclaredClassMethod */ throw new Zend_Controller_Action_Exception('Not Found', 404); } } diff --git a/Dockerfile b/Dockerfile index 933a4e1d..e86b0c43 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,20 +51,22 @@ RUN apt-get update && apt-get -y -q install zip unzip wget libfreetype6- apt-get -y clean # Install Apache, MySQL and all the required development and prod PHP modules -RUN apt-get -y -qq install apache2 php7.1 php7.1-common default-mysql-client-core \ - default-mysql-server-core default-mysql-server php7.1-dev \ - php7.1-mcrypt php7.1-xsl php7.1-zip php7.1-bcmath php7.1-intl php7.1-gd \ - php7.1-curl php7.1-mbstring php7.1-mysql php7.1-soap php-xml php7.1-xml && \ +RUN apt-get -y -qq install apache2 php7.2 php7.2-common default-mysql-client-core \ + default-mysql-server-core default-mysql-server php7.2-dev \ + php7.2-xsl php7.2-zip php7.2-bcmath php7.2-intl php7.2-gd \ + php7.2-curl php7.2-mbstring php7.2-mysql php7.2-soap php-xml php7.2-xml && \ apt-get -y clean -# Upgrade AST extension +# Upgrade AST & mcrypt extensions RUN apt-get -y -qq install build-essential php-pear && \ - pecl install ast-0.1.6 && \ + pecl install ast && \ + pecl install mcrypt-1.0.1 && \ apt-get purge -y build-essential && \ apt-get -y clean -# Enable AST extension -RUN echo "extension=ast.so" >> /etc/php/7.1/cli/php.ini +# Enable AST & mcrypt extensions +RUN echo "extension=ast.so" >> /etc/php/7.2/cli/php.ini +RUN echo "extension=mcrypt.so" >> /etc/php/7.2/cli/php.ini RUN a2enmod rewrite && phpenmod ast soap && \ a2dissite 000-default.conf diff --git a/composer.json b/composer.json index b1e7949a..2eb34dc5 100644 --- a/composer.json +++ b/composer.json @@ -4,20 +4,21 @@ "license": [ "BSD-3-Clause" ], - "version": "2.4.4", + "version": "2.4.5", "require": { "php": ">=5.4.0", "nosto/php-sdk": "3.15.0" }, "require-dev": { - "php": ">=7.1.0", + "php": ">=7.2.0", "squizlabs/php_codesniffer": "2.8.1", - "phan/phan": "0.8.9", + "phan/phan": "2.6.*", "phpmd/phpmd": "^2.6", "sebastian/phpcpd": "4.1.0", "phing/phing": "2.*", - "shopware/shopware": "5.5.*", - "wimg/php-compatibility": "^9.0" + "shopware/shopware": "~5.6", + "wimg/php-compatibility": "^9.0", + "drenso/phan-extensions": "^2.5" }, "autoload": { "psr-4": { diff --git a/composer.lock b/composer.lock index 0d44b19a..3dd939c3 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": "7240e52fbe866bb9499ee6a82818c986", + "content-hash": "900236d550b95c110001fe2fe55c9aaa", "packages": [ { "name": "nosto/php-sdk", @@ -55,33 +55,34 @@ }, { "name": "phpoption/phpoption", - "version": "1.5.2", + "version": "1.7.3", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "2ba2586380f8d2b44ad1b9feb61c371020b27793" + "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/2ba2586380f8d2b44ad1b9feb61c371020b27793", - "reference": "2ba2586380f8d2b44ad1b9feb61c371020b27793", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/4acfd6a4b33a509d8c88f50e5222f734b6aeebae", + "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": "^5.5.9 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^4.7|^5.0" + "bamarni/composer-bin-plugin": "^1.3", + "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.5-dev" + "dev-master": "1.7-dev" } }, "autoload": { - "psr-0": { - "PhpOption\\": "src/" + "psr-4": { + "PhpOption\\": "src/PhpOption/" } }, "notification-url": "https://packagist.org/downloads/", @@ -92,6 +93,10 @@ { "name": "Johannes M. Schmitt", "email": "schmittjoh@gmail.com" + }, + { + "name": "Graham Campbell", + "email": "graham@alt-three.com" } ], "description": "Option Type for PHP", @@ -101,20 +106,20 @@ "php", "type" ], - "time": "2019-11-06T22:27:00+00:00" + "time": "2020-03-21T18:07:53+00:00" }, { "name": "phpseclib/phpseclib", - "version": "2.0.23", + "version": "2.0.26", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "c78eb5058d5bb1a183133c36d4ba5b6675dfa099" + "reference": "09655fcc1f8bab65727be036b28f6f20311c126c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c78eb5058d5bb1a183133c36d4ba5b6675dfa099", - "reference": "c78eb5058d5bb1a183133c36d4ba5b6675dfa099", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/09655fcc1f8bab65727be036b28f6f20311c126c", + "reference": "09655fcc1f8bab65727be036b28f6f20311c126c", "shasum": "" }, "require": { @@ -193,7 +198,7 @@ "x.509", "x509" ], - "time": "2019-09-17T03:41:22+00:00" + "time": "2020-03-13T04:15:39+00:00" }, { "name": "vlucas/phpdotenv", @@ -250,26 +255,26 @@ "packages-dev": [ { "name": "aws/aws-sdk-php", - "version": "3.122.0", + "version": "3.133.47", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "43b4af8179c91d220f6e4bbe1e57588ed5ad4f27" + "reference": "706082d6a0e53c7656eca61866b456178112daf6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/43b4af8179c91d220f6e4bbe1e57588ed5ad4f27", - "reference": "43b4af8179c91d220f6e4bbe1e57588ed5ad4f27", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/706082d6a0e53c7656eca61866b456178112daf6", + "reference": "706082d6a0e53c7656eca61866b456178112daf6", "shasum": "" }, "require": { "ext-json": "*", "ext-pcre": "*", "ext-simplexml": "*", - "guzzlehttp/guzzle": "^5.3.3|^6.2.1", - "guzzlehttp/promises": "~1.0", + "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0", + "guzzlehttp/promises": "^1.0", "guzzlehttp/psr7": "^1.4.1", - "mtdowling/jmespath.php": "~2.2", + "mtdowling/jmespath.php": "^2.5", "php": ">=5.5" }, "require-dev": { @@ -284,7 +289,8 @@ "nette/neon": "^2.3", "phpunit/phpunit": "^4.8.35|^5.4.3", "psr/cache": "^1.0", - "psr/simple-cache": "^1.0" + "psr/simple-cache": "^1.0", + "sebastian/comparator": "^1.2.3" }, "suggest": { "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", @@ -329,7 +335,7 @@ "s3", "sdk" ], - "time": "2019-11-25T19:13:38+00:00" + "time": "2020-03-30T18:15:57+00:00" }, { "name": "bcremer/line-reader", @@ -373,16 +379,16 @@ }, { "name": "beberlei/assert", - "version": "v2.9.2", + "version": "v2.9.9", "source": { "type": "git", "url": "https://github.com/beberlei/assert.git", - "reference": "2d555f72f3f4ff9e72a7bc17cb8a53c86737c8a0" + "reference": "124317de301b7c91d5fce34c98bba2c6925bec95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/beberlei/assert/zipball/2d555f72f3f4ff9e72a7bc17cb8a53c86737c8a0", - "reference": "2d555f72f3f4ff9e72a7bc17cb8a53c86737c8a0", + "url": "https://api.github.com/repos/beberlei/assert/zipball/124317de301b7c91d5fce34c98bba2c6925bec95", + "reference": "124317de301b7c91d5fce34c98bba2c6925bec95", "shasum": "" }, "require": { @@ -424,7 +430,61 @@ "assertion", "validation" ], - "time": "2018-01-25T13:33:16+00:00" + "time": "2019-05-28T15:27:37+00:00" + }, + { + "name": "beberlei/doctrineextensions", + "version": "v1.2.6", + "source": { + "type": "git", + "url": "https://github.com/beberlei/DoctrineExtensions.git", + "reference": "af72c4a136b744f1268ca8bb4da47a2f8af78f86" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/beberlei/DoctrineExtensions/zipball/af72c4a136b744f1268ca8bb4da47a2f8af78f86", + "reference": "af72c4a136b744f1268ca8bb4da47a2f8af78f86", + "shasum": "" + }, + "require": { + "doctrine/orm": "^2.6", + "php": "^7.1" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.14", + "nesbot/carbon": "*", + "phpunit/phpunit": "^7.0 || ^8.0", + "symfony/yaml": "^4.2", + "zf1/zend-date": "^1.12", + "zf1/zend-registry": "^1.12" + }, + "type": "library", + "autoload": { + "psr-4": { + "DoctrineExtensions\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Steve Lacey", + "email": "steve@stevelacey.net" + } + ], + "description": "A set of extensions to Doctrine 2 that add support for additional query functions available in MySQL and Oracle.", + "keywords": [ + "database", + "doctrine", + "orm" + ], + "time": "2019-12-05T09:49:04+00:00" }, { "name": "clue/stream-filter", @@ -543,6 +603,111 @@ ], "time": "2018-01-22T09:00:48+00:00" }, + { + "name": "composer/semver", + "version": "1.5.1", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.5 || ^5.0.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ], + "time": "2020-01-13T12:06:48+00:00" + }, + { + "name": "composer/xdebug-handler", + "version": "1.4.1", + "source": { + "type": "git", + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/1ab9842d69e64fb3a01be6b656501032d1b78cb7", + "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0", + "psr/log": "^1.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8" + }, + "type": "library", + "autoload": { + "psr-4": { + "Composer\\XdebugHandler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" + } + ], + "description": "Restarts a process without Xdebug.", + "keywords": [ + "Xdebug", + "performance" + ], + "time": "2020-03-01T12:26:26+00:00" + }, { "name": "doctrine/annotations", "version": "v1.8.0", @@ -613,33 +778,38 @@ }, { "name": "doctrine/cache", - "version": "v1.6.2", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b" + "reference": "cf73f063172f4ec18b6cbb293e30363e11e8d30a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b", - "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b", + "url": "https://api.github.com/repos/doctrine/cache/zipball/cf73f063172f4ec18b6cbb293e30363e11e8d30a", + "reference": "cf73f063172f4ec18b6cbb293e30363e11e8d30a", "shasum": "" }, "require": { - "php": "~5.5|~7.0" + "php": "~7.1" }, "conflict": { "doctrine/common": ">2.2,<2.4" }, "require-dev": { - "phpunit/phpunit": "~4.8|~5.0", - "predis/predis": "~1.0", - "satooshi/php-coveralls": "~0.6" + "alcaeus/mongo-php-adapter": "^1.1", + "doctrine/coding-standard": "^4.0", + "mongodb/mongodb": "^1.1", + "phpunit/phpunit": "^7.0", + "predis/predis": "~1.0" + }, + "suggest": { + "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6.x-dev" + "dev-master": "1.8.x-dev" } }, "autoload": { @@ -652,6 +822,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -660,10 +834,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -674,43 +844,45 @@ } ], "description": "Caching library offering an object-oriented API for many cache backends", - "homepage": "http://www.doctrine-project.org", + "homepage": "https://www.doctrine-project.org", "keywords": [ "cache", "caching" ], - "time": "2017-07-22T12:49:21+00:00" + "time": "2019-11-11T01:40:42+00:00" }, { "name": "doctrine/collections", - "version": "v1.4.0", + "version": "1.6.4", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba" + "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba", + "url": "https://api.github.com/repos/doctrine/collections/zipball/6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", + "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.1.3" }, "require-dev": { - "doctrine/coding-standard": "~0.1@dev", - "phpunit/phpunit": "^5.7" + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan-shim": "^0.9.2", + "phpunit/phpunit": "^7.0", + "vimeo/psalm": "^3.2.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "1.6.x-dev" } }, "autoload": { - "psr-0": { - "Doctrine\\Common\\Collections\\": "lib/" + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" } }, "notification-url": "https://packagist.org/downloads/", @@ -718,6 +890,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -726,10 +902,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -739,44 +911,53 @@ "email": "schmittjoh@gmail.com" } ], - "description": "Collections Abstraction library", - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", "keywords": [ "array", "collections", - "iterator" + "iterators", + "php" ], - "time": "2017-01-03T10:49:41+00:00" + "time": "2019-11-13T13:07:11+00:00" }, { "name": "doctrine/common", - "version": "v2.7.3", + "version": "v2.11.0", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", - "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9" + "reference": "b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9", - "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9", + "url": "https://api.github.com/repos/doctrine/common/zipball/b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff", + "reference": "b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff", "shasum": "" }, "require": { - "doctrine/annotations": "1.*", - "doctrine/cache": "1.*", - "doctrine/collections": "1.*", - "doctrine/inflector": "1.*", - "doctrine/lexer": "1.*", - "php": "~5.6|~7.0" + "doctrine/annotations": "^1.0", + "doctrine/cache": "^1.0", + "doctrine/collections": "^1.0", + "doctrine/event-manager": "^1.0", + "doctrine/inflector": "^1.0", + "doctrine/lexer": "^1.0", + "doctrine/persistence": "^1.1", + "doctrine/reflection": "^1.0", + "php": "^7.1" }, "require-dev": { - "phpunit/phpunit": "^5.4.6" + "doctrine/coding-standard": "^1.0", + "phpstan/phpstan": "^0.11", + "phpstan/phpstan-phpunit": "^0.11", + "phpunit/phpunit": "^7.0", + "squizlabs/php_codesniffer": "^3.0", + "symfony/phpunit-bridge": "^4.0.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.7.x-dev" + "dev-master": "2.11.x-dev" } }, "autoload": { @@ -789,6 +970,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -797,10 +982,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -808,39 +989,43 @@ { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" } ], - "description": "Common Library for Doctrine projects", - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.", + "homepage": "https://www.doctrine-project.org/projects/common.html", "keywords": [ - "annotations", - "collections", - "eventmanager", - "persistence", - "spl" + "common", + "doctrine", + "php" ], - "time": "2017-07-22T08:35:12+00:00" + "time": "2019-09-10T10:10:14+00:00" }, { "name": "doctrine/dbal", - "version": "v2.5.13", + "version": "v2.6.3", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "729340d8d1eec8f01bff708e12e449a3415af873" + "reference": "e3eed9b1facbb0ced3a0995244843a189e7d1b13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/729340d8d1eec8f01bff708e12e449a3415af873", - "reference": "729340d8d1eec8f01bff708e12e449a3415af873", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/e3eed9b1facbb0ced3a0995244843a189e7d1b13", + "reference": "e3eed9b1facbb0ced3a0995244843a189e7d1b13", "shasum": "" }, "require": { - "doctrine/common": ">=2.4,<2.8-dev", - "php": ">=5.3.2" + "doctrine/common": "^2.7.1", + "ext-pdo": "*", + "php": "^7.1" }, "require-dev": { - "phpunit/phpunit": "4.*", + "phpunit/phpunit": "^5.4.6", + "phpunit/phpunit-mock-objects": "!=3.2.4,!=3.2.5", "symfony/console": "2.*||^3.0" }, "suggest": { @@ -852,7 +1037,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.5.x-dev" + "dev-master": "2.6.x-dev" } }, "autoload": { @@ -890,7 +1075,83 @@ "persistence", "queryobject" ], - "time": "2017-07-22T20:44:48+00:00" + "time": "2017-11-19T13:38:54+00:00" + }, + { + "name": "doctrine/event-manager", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/event-manager.git", + "reference": "629572819973f13486371cb611386eb17851e85c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c", + "reference": "629572819973f13486371cb611386eb17851e85c", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "conflict": { + "doctrine/common": "<2.9@dev" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "lib/Doctrine/Common" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.", + "homepage": "https://www.doctrine-project.org/projects/event-manager.html", + "keywords": [ + "event", + "event dispatcher", + "event manager", + "event system", + "events" + ], + "time": "2019-11-10T09:48:07+00:00" }, { "name": "doctrine/inflector", @@ -915,12 +1176,213 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "1.3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Common String Manipulations with regard to casing and singular/plural rules.", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "inflection", + "pluralize", + "singularize", + "string" + ], + "time": "2019-10-30T19:59:35+00:00" + }, + { + "name": "doctrine/instantiator", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", + "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.13", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-shim": "^0.11", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.com/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "constructor", + "instantiate" + ], + "time": "2019-10-21T16:45:58+00:00" + }, + { + "name": "doctrine/lexer", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6", + "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6", + "shasum": "" + }, + "require": { + "php": "^7.2" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "time": "2019-10-30T14:39:59+00:00" + }, + { + "name": "doctrine/orm", + "version": "v2.6.6", + "source": { + "type": "git", + "url": "https://github.com/doctrine/orm.git", + "reference": "2d9b9351831d1230881c52f006011cbf72fe944e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/orm/zipball/2d9b9351831d1230881c52f006011cbf72fe944e", + "reference": "2d9b9351831d1230881c52f006011cbf72fe944e", + "shasum": "" + }, + "require": { + "doctrine/annotations": "~1.5", + "doctrine/cache": "~1.6", + "doctrine/collections": "^1.4", + "doctrine/common": "^2.7.1", + "doctrine/dbal": "^2.6", + "doctrine/instantiator": "~1.1", + "ext-pdo": "*", + "php": "^7.1", + "symfony/console": "~3.0|~4.0" + }, + "require-dev": { + "doctrine/coding-standard": "^5.0", + "phpunit/phpunit": "^7.5", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "symfony/yaml": "If you want to use YAML Metadata Mapping Driver" + }, + "bin": [ + "bin/doctrine" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.6.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" + "Doctrine\\ORM\\": "lib/Doctrine/ORM" } }, "notification-url": "https://packagist.org/downloads/", @@ -945,44 +1407,46 @@ "email": "jonwage@gmail.com" }, { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" } ], - "description": "Common String Manipulations with regard to casing and singular/plural rules.", + "description": "Object-Relational-Mapper for PHP", "homepage": "http://www.doctrine-project.org", "keywords": [ - "inflection", - "pluralize", - "singularize", - "string" + "database", + "orm" ], - "time": "2019-10-30T19:59:35+00:00" + "time": "2019-11-18T22:01:21+00:00" }, { - "name": "doctrine/instantiator", - "version": "1.3.0", + "name": "doctrine/persistence", + "version": "1.2.0", "source": { "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" + "url": "https://github.com/doctrine/persistence.git", + "reference": "43526ae63312942e5316100bb3ed589ba1aba491" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/43526ae63312942e5316100bb3ed589ba1aba491", + "reference": "43526ae63312942e5316100bb3ed589ba1aba491", "shasum": "" }, "require": { + "doctrine/annotations": "^1.0", + "doctrine/cache": "^1.0", + "doctrine/collections": "^1.0", + "doctrine/event-manager": "^1.0", + "doctrine/reflection": "^1.0", "php": "^7.1" }, + "conflict": { + "doctrine/common": "<2.10@dev" + }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^0.13", - "phpstan/phpstan-phpunit": "^0.11", - "phpstan/phpstan-shim": "^0.11", + "doctrine/coding-standard": "^5.0", + "phpstan/phpstan": "^0.8", "phpunit/phpunit": "^7.0" }, "type": "library", @@ -993,7 +1457,7 @@ }, "autoload": { "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + "Doctrine\\Common\\": "lib/Doctrine/Common" } }, "notification-url": "https://packagist.org/downloads/", @@ -1001,49 +1465,80 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, { "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "http://ocramius.github.com/" + "email": "ocramius@gmail.com" } ], - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.", + "homepage": "https://doctrine-project.org/projects/persistence.html", "keywords": [ - "constructor", - "instantiate" + "mapper", + "object", + "odm", + "orm", + "persistence" ], - "time": "2019-10-21T16:45:58+00:00" + "time": "2019-04-23T12:39:21+00:00" }, { - "name": "doctrine/lexer", - "version": "1.0.2", + "name": "doctrine/reflection", + "version": "1.2.1", "source": { "type": "git", - "url": "https://github.com/doctrine/lexer.git", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" + "url": "https://github.com/doctrine/reflection.git", + "reference": "55e71912dfcd824b2fdd16f2d9afe15684cfce79" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "url": "https://api.github.com/repos/doctrine/reflection/zipball/55e71912dfcd824b2fdd16f2d9afe15684cfce79", + "reference": "55e71912dfcd824b2fdd16f2d9afe15684cfce79", "shasum": "" }, "require": { - "php": ">=5.3.2" + "doctrine/annotations": "^1.0", + "ext-tokenizer": "*", + "php": "^7.1" + }, + "conflict": { + "doctrine/common": "<2.9" }, "require-dev": { - "phpunit/phpunit": "^4.5" + "doctrine/coding-standard": "^5.0", + "doctrine/common": "^2.10", + "phpstan/phpstan": "^0.11.0", + "phpstan/phpstan-phpunit": "^0.11.0", + "phpunit/phpunit": "^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + "Doctrine\\Common\\": "lib/Doctrine/Common" } }, "notification-url": "https://packagist.org/downloads/", @@ -1051,133 +1546,106 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" }, { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" } ], - "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", - "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.", + "homepage": "https://www.doctrine-project.org/projects/reflection.html", "keywords": [ - "annotations", - "docblock", - "lexer", - "parser", - "php" + "reflection", + "static" ], - "time": "2019-06-08T11:03:04+00:00" + "time": "2020-03-27T11:06:43+00:00" }, { - "name": "doctrine/orm", - "version": "v2.5.14", + "name": "drenso/phan-extensions", + "version": "v2.5.0", "source": { "type": "git", - "url": "https://github.com/doctrine/orm.git", - "reference": "810a7baf81462a5ddf10e8baa8cb94b6eec02754" + "url": "https://github.com/Drenso/PhanExtensions.git", + "reference": "cedef1c214c259bfaab0652256abf931b00c2781" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/orm/zipball/810a7baf81462a5ddf10e8baa8cb94b6eec02754", - "reference": "810a7baf81462a5ddf10e8baa8cb94b6eec02754", + "url": "https://api.github.com/repos/Drenso/PhanExtensions/zipball/cedef1c214c259bfaab0652256abf931b00c2781", + "reference": "cedef1c214c259bfaab0652256abf931b00c2781", "shasum": "" }, - "require": { - "doctrine/cache": "~1.4", - "doctrine/collections": "~1.2", - "doctrine/common": ">=2.5-dev,<2.9-dev", - "doctrine/dbal": ">=2.5-dev,<2.7-dev", - "doctrine/instantiator": "^1.0.1", - "ext-pdo": "*", - "php": ">=5.4", - "symfony/console": "~2.5|~3.0|~4.0" - }, "require-dev": { - "phpunit/phpunit": "~4.0", - "symfony/yaml": "~2.3|~3.0|~4.0" - }, - "suggest": { - "symfony/yaml": "If you want to use YAML Metadata Mapping Driver" - }, - "bin": [ - "bin/doctrine", - "bin/doctrine.php" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.6.x-dev" - } - }, - "autoload": { - "psr-0": { - "Doctrine\\ORM\\": "lib/" - } + "phan/phan": "~1|~2" }, + "type": "project", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" + "name": "Bob van de Vijver", + "email": "bob@drenso.nl" }, { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" + "name": "Tobias Feijten", + "email": "tobias@drenso.nl" } ], - "description": "Object-Relational-Mapper for PHP", - "homepage": "http://www.doctrine-project.org", + "description": "This project contains several extensions (stubs/plugins) to be used with Phan for static PHP analysis", + "homepage": "https://github.com/Drenso/PhanExtensions", "keywords": [ - "database", - "orm" + "phan", + "plugin", + "plugins", + "stub", + "stubs", + "symfony" ], - "time": "2017-12-17T02:57:51+00:00" + "time": "2019-05-31T15:22:44+00:00" }, { "name": "egulias/email-validator", - "version": "1.2.14", + "version": "1.2.16", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9" + "reference": "92fd7ea285f1edd1503d78f75b8d8992b0fb3941" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5642614492f0ca2064c01d60cc33284cc2f731a9", - "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92fd7ea285f1edd1503d78f75b8d8992b0fb3941", + "reference": "92fd7ea285f1edd1503d78f75b8d8992b0fb3941", "shasum": "" }, "require": { "doctrine/lexer": "^1.0.1", - "php": ">= 5.3.3" + "php": ">=5.3.3" }, "require-dev": { - "phpunit/phpunit": "^4.8.24" + "phpunit/phpunit": "^4.8.36|^7.5.15", + "satooshi/php-coveralls": "^1.0.1" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, "autoload": { "psr-0": { "Egulias\\": "src/" @@ -1201,34 +1669,37 @@ "validation", "validator" ], - "time": "2017-02-03T22:48:59+00:00" + "time": "2019-12-30T08:17:06+00:00" }, { "name": "elasticsearch/elasticsearch", - "version": "v2.3.2", + "version": "v6.7.2", "source": { "type": "git", "url": "https://github.com/elastic/elasticsearch-php.git", - "reference": "c57db9da04f4c54c2ca69a52bc618d9120b96d4d" + "reference": "9ba89f905ebf699e72dacffa410331c7fecc8255" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/c57db9da04f4c54c2ca69a52bc618d9120b96d4d", - "reference": "c57db9da04f4c54c2ca69a52bc618d9120b96d4d", + "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/9ba89f905ebf699e72dacffa410331c7fecc8255", + "reference": "9ba89f905ebf699e72dacffa410331c7fecc8255", "shasum": "" }, "require": { + "ext-json": ">=1.3.7", "guzzlehttp/ringphp": "~1.0", - "php": ">=5.4", + "php": "^7.0", "psr/log": "~1.0" }, "require-dev": { - "cpliakas/git-wrapper": "~1.0", - "mockery/mockery": "0.9.4", - "phpunit/phpunit": "~4.7", - "sami/sami": "~3.2", - "symfony/yaml": "2.4.3 as 2.4.2", - "twig/twig": "1.*" + "cpliakas/git-wrapper": "^1.7 || ^2.1", + "doctrine/inflector": "^1.1", + "mockery/mockery": "^1.2", + "phpstan/phpstan-shim": "^0.9 || ^0.11", + "phpunit/phpunit": "^5.7 || ^6.5", + "squizlabs/php_codesniffer": "^3.4", + "symfony/finder": "^2.8", + "symfony/yaml": "^2.8" }, "suggest": { "ext-curl": "*", @@ -1247,6 +1718,9 @@ "authors": [ { "name": "Zachary Tong" + }, + { + "name": "Enrico Zimuel" } ], "description": "PHP Client for Elasticsearch", @@ -1255,29 +1729,29 @@ "elasticsearch", "search" ], - "time": "2017-12-05T14:05:24+00:00" + "time": "2019-07-19T14:48:24+00:00" }, { "name": "felixfbecker/advanced-json-rpc", - "version": "v2.0.3", + "version": "v3.1.1", "source": { "type": "git", "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git", - "reference": "543ffb38b9af47f16404ab2daec5aaf225dcb531" + "reference": "0ed363f8de17d284d479ec813c9ad3f6834b5c40" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/543ffb38b9af47f16404ab2daec5aaf225dcb531", - "reference": "543ffb38b9af47f16404ab2daec5aaf225dcb531", + "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/0ed363f8de17d284d479ec813c9ad3f6834b5c40", + "reference": "0ed363f8de17d284d479ec813c9ad3f6834b5c40", "shasum": "" }, "require": { - "netresearch/jsonmapper": "^1.0", + "netresearch/jsonmapper": "^1.0 || ^2.0", "php": ">=7.0", - "phpdocumentor/reflection-docblock": "^3.1" + "phpdocumentor/reflection-docblock": "^4.0.0 || ^5.0.0" }, "require-dev": { - "phpunit/phpunit": "^5.5" + "phpunit/phpunit": "^6.0.0" }, "type": "library", "autoload": { @@ -1296,27 +1770,81 @@ } ], "description": "A more advanced JSONRPC implementation", - "time": "2017-06-22T12:18:44+00:00" + "time": "2020-03-11T15:21:41+00:00" + }, + { + "name": "fig/link-util", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/link-util.git", + "reference": "1a07821801a148be4add11ab0603e4af55a72fac" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/link-util/zipball/1a07821801a148be4add11ab0603e4af55a72fac", + "reference": "1a07821801a148be4add11ab0603e4af55a72fac", + "shasum": "" + }, + "require": { + "php": ">=5.5.0", + "psr/link": "~1.0@dev" + }, + "require-dev": { + "phpunit/phpunit": "^5.1", + "squizlabs/php_codesniffer": "^2.3.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Fig\\Link\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common utility implementations for HTTP links", + "keywords": [ + "http", + "http-link", + "link", + "psr", + "psr-13", + "rest" + ], + "time": "2016-10-17T18:31:11+00:00" }, { "name": "firebase/php-jwt", - "version": "v5.0.0", + "version": "v5.2.0", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e" + "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e", - "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/feb0e820b8436873675fd3aca04f3728eb2185cb", + "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb", "shasum": "" }, "require": { "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": " 4.8.35" + "phpunit/phpunit": ">=4.8 <=9" }, "type": "library", "autoload": { @@ -1342,20 +1870,24 @@ ], "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", "homepage": "https://github.com/firebase/php-jwt", - "time": "2017-06-27T22:17:23+00:00" + "keywords": [ + "jwt", + "php" + ], + "time": "2020-03-25T18:49:23+00:00" }, { "name": "google/auth", - "version": "v1.6.1", + "version": "v1.8.0", "source": { "type": "git", "url": "https://github.com/googleapis/google-auth-library-php.git", - "reference": "45635ac69d0b95f38885531d4ebcdfcb2ebb6f36" + "reference": "c7b295feb248f138f462a1e6b7d635e4244204c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/45635ac69d0b95f38885531d4ebcdfcb2ebb6f36", - "reference": "45635ac69d0b95f38885531d4ebcdfcb2ebb6f36", + "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/c7b295feb248f138f462a1e6b7d635e4244204c5", + "reference": "c7b295feb248f138f462a1e6b7d635e4244204c5", "shasum": "" }, "require": { @@ -1369,6 +1901,7 @@ "require-dev": { "friendsofphp/php-cs-fixer": "^1.11", "guzzlehttp/promises": "0.1.1|^1.3", + "kelvinmo/simplejwt": "^0.2.5", "phpseclib/phpseclib": "^2", "phpunit/phpunit": "^4.8.36|^5.7", "sebastian/comparator": ">=1.2.3" @@ -1393,7 +1926,7 @@ "google", "oauth2" ], - "time": "2019-10-29T20:13:04+00:00" + "time": "2020-03-26T19:47:36+00:00" }, { "name": "google/cloud", @@ -1650,16 +2183,16 @@ }, { "name": "grpc/grpc", - "version": "1.25.0", + "version": "1.27.0", "source": { "type": "git", "url": "https://github.com/grpc/grpc-php.git", - "reference": "bdb165d6712db0cfcc35edae2d14fb2b00cabc88" + "reference": "a461cb1a975dde305c73168aa4494b90c3801c62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grpc/grpc-php/zipball/bdb165d6712db0cfcc35edae2d14fb2b00cabc88", - "reference": "bdb165d6712db0cfcc35edae2d14fb2b00cabc88", + "url": "https://api.github.com/repos/grpc/grpc-php/zipball/a461cb1a975dde305c73168aa4494b90c3801c62", + "reference": "a461cb1a975dde305c73168aa4494b90c3801c62", "shasum": "" }, "require": { @@ -1687,20 +2220,20 @@ "keywords": [ "rpc" ], - "time": "2019-11-07T00:47:40+00:00" + "time": "2020-01-23T19:27:18+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "5.3.3", + "version": "5.3.4", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "93bbdb30d59be6cd9839495306c65f2907370eb9" + "reference": "b87eda7a7162f95574032da17e9323c9899cb6b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/93bbdb30d59be6cd9839495306c65f2907370eb9", - "reference": "93bbdb30d59be6cd9839495306c65f2907370eb9", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b87eda7a7162f95574032da17e9323c9899cb6b2", + "reference": "b87eda7a7162f95574032da17e9323c9899cb6b2", "shasum": "" }, "require": { @@ -1740,7 +2273,7 @@ "rest", "web service" ], - "time": "2018-07-31T13:33:10+00:00" + "time": "2019-10-30T09:32:00+00:00" }, { "name": "guzzlehttp/promises", @@ -1907,6 +2440,7 @@ } ], "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.", + "abandoned": true, "time": "2018-07-31T13:22:33+00:00" }, { @@ -1957,30 +2491,31 @@ "Guzzle", "stream" ], + "abandoned": true, "time": "2014-10-12T19:18:40+00:00" }, { "name": "league/flysystem", - "version": "1.0.46", + "version": "1.0.63", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2" + "reference": "8132daec326565036bc8e8d1876f77ec183a7bd6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2", - "reference": "f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8132daec326565036bc8e8d1876f77ec183a7bd6", + "reference": "8132daec326565036bc8e8d1876f77ec183a7bd6", "shasum": "" }, "require": { + "ext-fileinfo": "*", "php": ">=5.5.9" }, "conflict": { "league/flysystem-sftp": "<1.0.6" }, "require-dev": { - "ext-fileinfo": "*", "phpspec/phpspec": "^3.4", "phpunit/phpunit": "^5.7.10" }, @@ -2041,20 +2576,20 @@ "sftp", "storage" ], - "time": "2018-08-22T07:45:22+00:00" + "time": "2020-01-04T16:30:31+00:00" }, { "name": "league/flysystem-aws-s3-v3", - "version": "1.0.19", + "version": "1.0.23", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git", - "reference": "f135691ef6761542af301b7c9880f140fb12dc74" + "reference": "15b0cdeab7240bf8e8bffa85ae5275bbc3692bf4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/f135691ef6761542af301b7c9880f140fb12dc74", - "reference": "f135691ef6761542af301b7c9880f140fb12dc74", + "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/15b0cdeab7240bf8e8bffa85ae5275bbc3692bf4", + "reference": "15b0cdeab7240bf8e8bffa85ae5275bbc3692bf4", "shasum": "" }, "require": { @@ -2088,20 +2623,61 @@ } ], "description": "Flysystem adapter for the AWS S3 SDK v3.x", - "time": "2018-03-27T20:33:59+00:00" + "time": "2019-06-05T17:18:29+00:00" + }, + { + "name": "microsoft/tolerant-php-parser", + "version": "v0.0.20", + "source": { + "type": "git", + "url": "https://github.com/microsoft/tolerant-php-parser.git", + "reference": "c5e2bf5d8c9f4f27eef1370bd39ea2d1f374eeb4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/microsoft/tolerant-php-parser/zipball/c5e2bf5d8c9f4f27eef1370bd39ea2d1f374eeb4", + "reference": "c5e2bf5d8c9f4f27eef1370bd39ea2d1f374eeb4", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Microsoft\\PhpParser\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Rob Lourens", + "email": "roblou@microsoft.com" + } + ], + "description": "Tolerant PHP-to-AST parser designed for IDE usage scenarios", + "time": "2020-02-18T02:57:19+00:00" }, { "name": "monolog/monolog", - "version": "1.23.0", + "version": "1.25.3", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4" + "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4", - "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1", + "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1", "shasum": "" }, "require": { @@ -2166,27 +2742,28 @@ "logging", "psr-3" ], - "time": "2017-06-19T01:22:40+00:00" + "time": "2019-12-20T14:15:16+00:00" }, { "name": "mpdf/mpdf", - "version": "v7.0.3", + "version": "v7.1.9", "source": { "type": "git", "url": "https://github.com/mpdf/mpdf.git", - "reference": "5681a0cae1eea197143d5d27f06e19b0523cd8d6" + "reference": "a0fc1215d2306aa3b4ba6e97bd6ebe4bab6a88fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mpdf/mpdf/zipball/5681a0cae1eea197143d5d27f06e19b0523cd8d6", - "reference": "5681a0cae1eea197143d5d27f06e19b0523cd8d6", + "url": "https://api.github.com/repos/mpdf/mpdf/zipball/a0fc1215d2306aa3b4ba6e97bd6ebe4bab6a88fb", + "reference": "a0fc1215d2306aa3b4ba6e97bd6ebe4bab6a88fb", "shasum": "" }, "require": { "ext-gd": "*", "ext-mbstring": "*", - "paragonie/random_compat": "^1.4|^2.0", - "php": "^5.6 || ~7.0.0 || ~7.1.0 || ~7.2.0", + "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", "psr/log": "^1.0", "setasign/fpdi": "1.6.*" }, @@ -2204,7 +2781,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-development": "7.0-dev" + "dev-development": "7.x-dev" } }, "autoload": { @@ -2214,7 +2791,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0" + "GPL-2.0-only" ], "authors": [ { @@ -2226,34 +2803,36 @@ "role": "Developer (retired)" } ], - "description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support", + "description": "PHP library generating PDF files from UTF-8 encoded HTML", "homepage": "https://mpdf.github.io", "keywords": [ "pdf", "php", "utf-8" ], - "time": "2018-01-03T07:32:36+00:00" + "time": "2019-02-06T13:32:19+00:00" }, { "name": "mtdowling/jmespath.php", - "version": "2.4.0", + "version": "2.5.0", "source": { "type": "git", "url": "https://github.com/jmespath/jmespath.php.git", - "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac" + "reference": "52168cb9472de06979613d365c7f1ab8798be895" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/adcc9531682cf87dfda21e1fd5d0e7a41d292fac", - "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac", + "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/52168cb9472de06979613d365c7f1ab8798be895", + "reference": "52168cb9472de06979613d365c7f1ab8798be895", "shasum": "" }, "require": { - "php": ">=5.4.0" + "php": ">=5.4.0", + "symfony/polyfill-mbstring": "^1.4" }, "require-dev": { - "phpunit/phpunit": "~4.0" + "composer/xdebug-handler": "^1.2", + "phpunit/phpunit": "^4.8.36|^7.5.15" }, "bin": [ "bin/jp.php" @@ -2261,7 +2840,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.5-dev" } }, "autoload": { @@ -2288,20 +2867,68 @@ "json", "jsonpath" ], - "time": "2016-12-03T22:08:25+00:00" + "time": "2019-12-30T18:03:34+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.9.5", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef", + "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "replace": { + "myclabs/deep-copy": "self.version" + }, + "require-dev": { + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + }, + "files": [ + "src/DeepCopy/deep_copy.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "time": "2020-01-17T21:11:47+00:00" }, { "name": "netresearch/jsonmapper", - "version": "v1.6.0", + "version": "v2.0.0", "source": { "type": "git", "url": "https://github.com/cweiske/jsonmapper.git", - "reference": "0d4d1b48d682a93b6bfedf60b88c7750e9cb0b06" + "reference": "e245890383c3ed38b6d202ee373c23ccfebc0f54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/0d4d1b48d682a93b6bfedf60b88c7750e9cb0b06", - "reference": "0d4d1b48d682a93b6bfedf60b88c7750e9cb0b06", + "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/e245890383c3ed38b6d202ee373c23ccfebc0f54", + "reference": "e245890383c3ed38b6d202ee373c23ccfebc0f54", "shasum": "" }, "require": { @@ -2312,8 +2939,8 @@ "php": ">=5.6" }, "require-dev": { - "phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4", - "squizlabs/php_codesniffer": "~1.5" + "phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4 || ~7.0", + "squizlabs/php_codesniffer": "~3.5" }, "type": "library", "autoload": { @@ -2334,93 +2961,99 @@ } ], "description": "Map nested JSON structures onto PHP classes", - "time": "2019-08-15T19:41:25+00:00" + "time": "2020-03-04T17:23:33+00:00" }, { - "name": "nikic/php-parser", - "version": "v3.1.5", + "name": "ocramius/package-versions", + "version": "1.4.2", "source": { "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce" + "url": "https://github.com/Ocramius/PackageVersions.git", + "reference": "44af6f3a2e2e04f2af46bcb302ad9600cba41c7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bb87e28e7d7b8d9a7fda231d37457c9210faf6ce", - "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce", + "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/44af6f3a2e2e04f2af46bcb302ad9600cba41c7d", + "reference": "44af6f3a2e2e04f2af46bcb302ad9600cba41c7d", "shasum": "" }, "require": { - "ext-tokenizer": "*", - "php": ">=5.5" + "composer-plugin-api": "^1.0.0", + "php": "^7.1.0" }, "require-dev": { - "phpunit/phpunit": "~4.0|~5.0" + "composer/composer": "^1.6.3", + "doctrine/coding-standard": "^5.0.1", + "ext-zip": "*", + "infection/infection": "^0.7.1", + "phpunit/phpunit": "^7.5.17" }, - "bin": [ - "bin/php-parse" - ], - "type": "library", + "type": "composer-plugin", "extra": { + "class": "PackageVersions\\Installer", "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { - "PhpParser\\": "lib/PhpParser" + "PackageVersions\\": "src/PackageVersions" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Nikita Popov" + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" } ], - "description": "A PHP parser written in PHP", - "keywords": [ - "parser", - "php" - ], - "time": "2018-02-28T20:30:58+00:00" + "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", + "time": "2019-11-15T16:17:10+00:00" }, { "name": "ocramius/proxy-manager", - "version": "1.0.2", + "version": "2.2.3", "source": { "type": "git", "url": "https://github.com/Ocramius/ProxyManager.git", - "reference": "57e9272ec0e8deccf09421596e0e2252df440e11" + "reference": "4d154742e31c35137d5374c998e8f86b54db2e2f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/57e9272ec0e8deccf09421596e0e2252df440e11", - "reference": "57e9272ec0e8deccf09421596e0e2252df440e11", + "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/4d154742e31c35137d5374c998e8f86b54db2e2f", + "reference": "4d154742e31c35137d5374c998e8f86b54db2e2f", "shasum": "" }, "require": { - "php": ">=5.3.3", - "zendframework/zend-code": ">2.2.5,<3.0" + "ocramius/package-versions": "^1.1.3", + "php": "^7.2.0", + "zendframework/zend-code": "^3.3.0" }, "require-dev": { + "couscous/couscous": "^1.6.1", "ext-phar": "*", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "1.5.*" + "humbug/humbug": "1.0.0-RC.0@RC", + "nikic/php-parser": "^3.1.1", + "padraic/phpunit-accelerator": "dev-master@DEV", + "phpbench/phpbench": "^0.12.2", + "phpstan/phpstan": "dev-master#856eb10a81c1d27c701a83f167dc870fd8f4236a as 0.9.999", + "phpstan/phpstan-phpunit": "dev-master#5629c0a1f4a9c417cb1077cf6693ad9753895761", + "phpunit/phpunit": "^6.4.3", + "squizlabs/php_codesniffer": "^2.9.1" }, "suggest": { "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects", "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)", "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)", - "zendframework/zend-stdlib": "To use the hydrator proxy", "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "3.0.x-dev" } }, "autoload": { @@ -2436,7 +3069,7 @@ { "name": "Marco Pivetta", "email": "ocramius@gmail.com", - "homepage": "http://ocramius.github.com/" + "homepage": "http://ocramius.github.io/" } ], "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies", @@ -2448,37 +3081,40 @@ "proxy pattern", "service proxies" ], - "time": "2015-08-09T04:28:19+00:00" + "time": "2019-08-10T08:37:15+00:00" }, { "name": "ongr/elasticsearch-dsl", - "version": "v2.2.2", + "version": "v6.0.3", "source": { "type": "git", "url": "https://github.com/ongr-io/ElasticsearchDSL.git", - "reference": "a5d77e615efd60acaf55df4e71d69399b712f343" + "reference": "56e59e51cf066f5ee4dff2612b3831b5a7792e67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ongr-io/ElasticsearchDSL/zipball/a5d77e615efd60acaf55df4e71d69399b712f343", - "reference": "a5d77e615efd60acaf55df4e71d69399b712f343", + "url": "https://api.github.com/repos/ongr-io/ElasticsearchDSL/zipball/56e59e51cf066f5ee4dff2612b3831b5a7792e67", + "reference": "56e59e51cf066f5ee4dff2612b3831b5a7792e67", "shasum": "" }, "require": { - "paragonie/random_compat": "^2.0", - "php": ">=5.4", - "symfony/serializer": "~2.7|~3.0" + "paragonie/random_compat": "*", + "php": "^7.0", + "symfony/serializer": "^3.0|^4.0" }, "require-dev": { - "elasticsearch/elasticsearch": "~2.0", - "phpunit/phpunit": "^4.4|^5.6", - "satooshi/php-coveralls": "~1.0", - "squizlabs/php_codesniffer": "~2.0" + "elasticsearch/elasticsearch": "^6.0", + "php-coveralls/php-coveralls": "~2.0", + "phpunit/phpunit": "^6.0", + "squizlabs/php_codesniffer": "^3.0" + }, + "suggest": { + "elasticsearch/elasticsearch": "This library is for elasticsearch/elasticsearch client to enhance it with DSL functionality." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "6.0-dev" } }, "autoload": { @@ -2498,7 +3134,7 @@ ], "description": "Elasticsearch DSL library", "homepage": "http://ongr.io", - "time": "2017-01-27T15:04:31+00:00" + "time": "2019-01-24T21:34:23+00:00" }, { "name": "oyejorge/less.php", @@ -2560,20 +3196,21 @@ "php", "stylesheet" ], + "abandoned": true, "time": "2017-03-28T22:19:25+00:00" }, { "name": "paragonie/random_compat", - "version": "v2.0.11", + "version": "v2.0.18", "source": { "type": "git", "url": "https://github.com/paragonie/random_compat.git", - "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8" + "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8", - "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db", + "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db", "shasum": "" }, "require": { @@ -2605,39 +3242,47 @@ "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", "keywords": [ "csprng", + "polyfill", "pseudorandom", "random" ], - "time": "2017-09-27T21:40:39+00:00" + "time": "2019-01-03T20:59:08+00:00" }, { "name": "pdepend/pdepend", - "version": "2.5.2", + "version": "2.7.1", "source": { "type": "git", "url": "https://github.com/pdepend/pdepend.git", - "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239" + "reference": "daba1cf0a6edaf172fa02a17807ae29f4c1c7471" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pdepend/pdepend/zipball/9daf26d0368d4a12bed1cacae1a9f3a6f0adf239", - "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239", + "url": "https://api.github.com/repos/pdepend/pdepend/zipball/daba1cf0a6edaf172fa02a17807ae29f4c1c7471", + "reference": "daba1cf0a6edaf172fa02a17807ae29f4c1c7471", "shasum": "" }, "require": { "php": ">=5.3.7", - "symfony/config": "^2.3.0|^3|^4", - "symfony/dependency-injection": "^2.3.0|^3|^4", - "symfony/filesystem": "^2.3.0|^3|^4" + "symfony/config": "^2.3.0|^3|^4|^5", + "symfony/dependency-injection": "^2.3.0|^3|^4|^5", + "symfony/filesystem": "^2.3.0|^3|^4|^5" }, "require-dev": { - "phpunit/phpunit": "^4.8|^5.7", + "easy-doc/easy-doc": "0.0.0 || ^1.2.3", + "gregwar/rst": "^1.0", + "phpunit/phpunit": "^4.8.35|^5.7", "squizlabs/php_codesniffer": "^2.0.0" }, "bin": [ "src/bin/pdepend" ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, "autoload": { "psr-4": { "PDepend\\": "src/main/php/PDepend" @@ -2648,32 +3293,46 @@ "BSD-3-Clause" ], "description": "Official version of pdepend to be handled with Composer", - "time": "2017-12-13T13:21:38+00:00" + "time": "2020-02-08T12:06:13+00:00" }, { "name": "phan/phan", - "version": "0.8.9", + "version": "2.6.1", "source": { "type": "git", "url": "https://github.com/phan/phan.git", - "reference": "af93901dba4cb00f7d6a2cd4c2a862d774a8b3b4" + "reference": "184c591e5b31c1f98426ed8e147a61864bd0cc96" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phan/phan/zipball/af93901dba4cb00f7d6a2cd4c2a862d774a8b3b4", - "reference": "af93901dba4cb00f7d6a2cd4c2a862d774a8b3b4", + "url": "https://api.github.com/repos/phan/phan/zipball/184c591e5b31c1f98426ed8e147a61864bd0cc96", + "reference": "184c591e5b31c1f98426ed8e147a61864bd0cc96", "shasum": "" }, "require": { - "ext-ast": "^0.1.4", - "felixfbecker/advanced-json-rpc": "^2.0", - "nikic/php-parser": "~3.1.1", - "php": "~7.0.0 || ~7.1.0 || ~7.2.0", + "composer/semver": "^1.4", + "composer/xdebug-handler": "^1.3.2", + "ext-filter": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "felixfbecker/advanced-json-rpc": "^3.0.4", + "microsoft/tolerant-php-parser": "0.0.20", + "netresearch/jsonmapper": "^1.6.0|^2.0", + "php": "^7.1.0", "sabre/event": "^5.0", - "symfony/console": "~2.3|~3.0" + "symfony/console": "^2.3|^3.0|^4.0|^5.0", + "symfony/polyfill-mbstring": "^1.11.0" }, "require-dev": { - "phpunit/phpunit": "^6.3.0" + "brianium/paratest": "^4.0.0", + "phpunit/phpunit": "^7.5.0" + }, + "suggest": { + "ext-ast": "Needed for parsing ASTs (unless --use-fallback-parser is used). 1.0.1+ is needed, 1.0.6+ is recommended.", + "ext-iconv": "Either iconv or mbstring is needed to ensure issue messages are valid utf-8", + "ext-igbinary": "Improves performance of polyfill when ext-ast is unavailable", + "ext-mbstring": "Either iconv or mbstring is needed to ensure issue messages are valid utf-8", + "ext-tokenizer": "Needed for fallback/polyfill parser support and file/line-based suppressions." }, "bin": [ "phan", @@ -2692,13 +3351,13 @@ ], "authors": [ { - "name": "Rasmus Lerdorf" + "name": "Tyson Andre" }, { - "name": "Andrew S. Morrison" + "name": "Rasmus Lerdorf" }, { - "name": "Tyson Andre" + "name": "Andrew S. Morrison" } ], "description": "A static analyzer for PHP", @@ -2707,25 +3366,24 @@ "php", "static" ], - "time": "2017-10-21T02:26:51+00:00" + "time": "2020-03-13T21:34:53+00:00" }, { "name": "phing/phing", - "version": "2.16.1", + "version": "2.16.3", "source": { "type": "git", "url": "https://github.com/phingofficial/phing.git", - "reference": "cbe0f969e434e269af91b4160b86fe899c6e07c7" + "reference": "b34c2bf9cd6abd39b4287dee31e68673784c8567" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phingofficial/phing/zipball/cbe0f969e434e269af91b4160b86fe899c6e07c7", - "reference": "cbe0f969e434e269af91b4160b86fe899c6e07c7", + "url": "https://api.github.com/repos/phingofficial/phing/zipball/b34c2bf9cd6abd39b4287dee31e68673784c8567", + "reference": "b34c2bf9cd6abd39b4287dee31e68673784c8567", "shasum": "" }, "require": { - "php": ">=5.2.0", - "symfony/yaml": "^3.1 || ^4.0" + "php": ">=5.2.0" }, "require-dev": { "ext-pdo_sqlite": "*", @@ -2745,7 +3403,8 @@ "sebastian/phpcpd": "2.x", "siad007/versioncontrol_hg": "^1.0", "simpletest/simpletest": "^1.1", - "squizlabs/php_codesniffer": "~2.2" + "squizlabs/php_codesniffer": "~2.2", + "symfony/yaml": "^2.8 || ^3.1 || ^4.0" }, "suggest": { "pdepend/pdepend": "PHP version of JDepend", @@ -2780,7 +3439,7 @@ "classes" ], "license": [ - "LGPL-3.0" + "LGPL-3.0-only" ], "authors": [ { @@ -2800,7 +3459,7 @@ "task", "tool" ], - "time": "2018-01-25T13:18:09+00:00" + "time": "2020-02-03T18:50:54+00:00" }, { "name": "php-http/curl-client", @@ -2860,16 +3519,16 @@ }, { "name": "php-http/discovery", - "version": "1.7.0", + "version": "1.7.4", "source": { "type": "git", "url": "https://github.com/php-http/discovery.git", - "reference": "e822f86a6983790aa17ab13aa7e69631e86806b6" + "reference": "82dbef649ccffd8e4f22e1953c3a5265992b83c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/discovery/zipball/e822f86a6983790aa17ab13aa7e69631e86806b6", - "reference": "e822f86a6983790aa17ab13aa7e69631e86806b6", + "url": "https://api.github.com/repos/php-http/discovery/zipball/82dbef649ccffd8e4f22e1953c3a5265992b83c0", + "reference": "82dbef649ccffd8e4f22e1953c3a5265992b83c0", "shasum": "" }, "require": { @@ -2921,7 +3580,7 @@ "message", "psr7" ], - "time": "2019-06-30T09:04:27+00:00" + "time": "2020-01-03T11:25:47+00:00" }, { "name": "php-http/httplug", @@ -3153,35 +3812,33 @@ }, { "name": "phpdocumentor/reflection-common", - "version": "1.0.1", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" + "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", - "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a", + "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a", "shasum": "" }, "require": { - "php": ">=5.5" + "php": ">=7.1" }, "require-dev": { - "phpunit/phpunit": "^4.6" + "phpunit/phpunit": "~6" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src" - ] + "phpDocumentor\\Reflection\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -3203,38 +3860,42 @@ "reflection", "static analysis" ], - "time": "2017-09-11T18:02:19+00:00" + "time": "2018-08-07T13:53:10+00:00" }, { "name": "phpdocumentor/reflection-docblock", - "version": "3.3.2", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2" + "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2", - "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", + "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0", - "phpdocumentor/reflection-common": "^1.0.0", - "phpdocumentor/type-resolver": "^0.4.0", - "webmozart/assert": "^1.0" + "ext-filter": "^7.1", + "php": "^7.2", + "phpdocumentor/reflection-common": "^2.0", + "phpdocumentor/type-resolver": "^1.0", + "webmozart/assert": "^1" }, "require-dev": { - "mockery/mockery": "^0.9.4", - "phpunit/phpunit": "^4.4" + "doctrine/instantiator": "^1", + "mockery/mockery": "^1" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src/" - ] + "phpDocumentor\\Reflection\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -3245,44 +3906,46 @@ { "name": "Mike van Riel", "email": "me@mikevanriel.com" + }, + { + "name": "Jaap van Otterdijk", + "email": "account@ijaap.nl" } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2017-11-10T14:09:06+00:00" + "time": "2020-02-22T12:28:44+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "0.4.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" + "reference": "7462d5f123dfc080dfdf26897032a6513644fc95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", - "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95", + "reference": "7462d5f123dfc080dfdf26897032a6513644fc95", "shasum": "" }, "require": { - "php": "^5.5 || ^7.0", - "phpdocumentor/reflection-common": "^1.0" + "php": "^7.2", + "phpdocumentor/reflection-common": "^2.0" }, "require-dev": { - "mockery/mockery": "^0.9.4", - "phpunit/phpunit": "^5.2||^4.8.24" + "ext-tokenizer": "^7.2", + "mockery/mockery": "~1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src/" - ] + "phpDocumentor\\Reflection\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -3295,28 +3958,31 @@ "email": "me@mikevanriel.com" } ], - "time": "2017-07-14T14:27:02+00:00" + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "time": "2020-02-18T18:59:58+00:00" }, { "name": "phpmd/phpmd", - "version": "2.7.0", + "version": "2.8.2", "source": { "type": "git", "url": "https://github.com/phpmd/phpmd.git", - "reference": "a05a999c644f4bc9a204846017db7bb7809fbe4c" + "reference": "714629ed782537f638fe23c4346637659b779a77" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpmd/phpmd/zipball/a05a999c644f4bc9a204846017db7bb7809fbe4c", - "reference": "a05a999c644f4bc9a204846017db7bb7809fbe4c", + "url": "https://api.github.com/repos/phpmd/phpmd/zipball/714629ed782537f638fe23c4346637659b779a77", + "reference": "714629ed782537f638fe23c4346637659b779a77", "shasum": "" }, "require": { + "composer/xdebug-handler": "^1.0", "ext-xml": "*", - "pdepend/pdepend": "^2.5", + "pdepend/pdepend": "^2.7.1", "php": ">=5.3.9" }, "require-dev": { + "easy-doc/easy-doc": "0.0.0 || ^1.3.2", "gregwar/rst": "^1.0", "mikey179/vfsstream": "^1.6.4", "phpunit/phpunit": "^4.8.36 || ^5.7.27", @@ -3363,7 +4029,7 @@ "phpmd", "pmd" ], - "time": "2019-07-30T21:13:32+00:00" + "time": "2020-02-16T20:15:50+00:00" }, { "name": "phpunit/php-timer", @@ -3559,18 +4225,67 @@ ], "time": "2016-08-06T14:39:51+00:00" }, + { + "name": "psr/link", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/link.git", + "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562", + "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Link\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interfaces for HTTP links", + "keywords": [ + "http", + "http-link", + "link", + "psr", + "psr-13", + "rest" + ], + "time": "2016-10-28T16:06:13+00:00" + }, { "name": "psr/log", - "version": "1.1.2", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801" + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801", - "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801", + "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", "shasum": "" }, "require": { @@ -3604,7 +4319,7 @@ "psr", "psr-3" ], - "time": "2019-11-01T11:05:21+00:00" + "time": "2020-03-23T09:12:05+00:00" }, { "name": "ramsey/uuid", @@ -3665,6 +4380,11 @@ "MIT" ], "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + }, { "name": "Marijn Huizendveld", "email": "marijn.huizendveld@gmail.com" @@ -3672,11 +4392,6 @@ { "name": "Thibaud Fabre", "email": "thibaud@aztech.io" - }, - { - "name": "Ben Ramsey", - "email": "ben@benramsey.com", - "homepage": "https://benramsey.com" } ], "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", @@ -3780,24 +4495,24 @@ }, { "name": "sabre/event", - "version": "5.0.3", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/sabre-io/event.git", - "reference": "f5cf802d240df1257866d8813282b98aee3bc548" + "reference": "d00a17507af0e7544cfe17096372f5d733e3b276" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sabre-io/event/zipball/f5cf802d240df1257866d8813282b98aee3bc548", - "reference": "f5cf802d240df1257866d8813282b98aee3bc548", + "url": "https://api.github.com/repos/sabre-io/event/zipball/d00a17507af0e7544cfe17096372f5d733e3b276", + "reference": "d00a17507af0e7544cfe17096372f5d733e3b276", "shasum": "" }, "require": { - "php": ">=7.0" + "php": "^7.1" }, "require-dev": { - "phpunit/phpunit": ">=6", - "sabre/cs": "~1.0.0" + "friendsofphp/php-cs-fixer": "~2.16.1", + "phpunit/phpunit": "^7 || ^8" }, "type": "library", "autoload": { @@ -3836,27 +4551,31 @@ "reactor", "signal" ], - "time": "2018-03-05T13:55:47+00:00" + "time": "2020-01-31T18:52:29+00:00" }, { "name": "sebastian/finder-facade", - "version": "1.2.2", + "version": "1.2.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/finder-facade.git", - "reference": "4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f" + "reference": "167c45d131f7fc3d159f56f191a0a22228765e16" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/finder-facade/zipball/4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f", - "reference": "4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f", + "url": "https://api.github.com/repos/sebastianbergmann/finder-facade/zipball/167c45d131f7fc3d159f56f191a0a22228765e16", + "reference": "167c45d131f7fc3d159f56f191a0a22228765e16", "shasum": "" }, "require": { - "symfony/finder": "~2.3|~3.0|~4.0", - "theseer/fdomdocument": "~1.3" + "php": "^7.1", + "symfony/finder": "^2.3|^3.0|^4.0|^5.0", + "theseer/fdomdocument": "^1.6" }, "type": "library", + "extra": { + "branch-alias": [] + }, "autoload": { "classmap": [ "src/" @@ -3875,7 +4594,7 @@ ], "description": "FinderFacade is a convenience wrapper for Symfony's Finder component.", "homepage": "https://github.com/sebastianbergmann/finder-facade", - "time": "2017-11-18T17:31:49+00:00" + "time": "2020-01-16T08:08:45+00:00" }, { "name": "sebastian/phpcpd", @@ -3973,16 +4692,16 @@ }, { "name": "setasign/fpdf", - "version": "1.8.1", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/Setasign/FPDF.git", - "reference": "2c68c9e6c034ac3187d25968790139a73184cdb1" + "reference": "d77904018090c17dc9f3ab6e944679a7a47e710a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Setasign/FPDF/zipball/2c68c9e6c034ac3187d25968790139a73184cdb1", - "reference": "2c68c9e6c034ac3187d25968790139a73184cdb1", + "url": "https://api.github.com/repos/Setasign/FPDF/zipball/d77904018090c17dc9f3ab6e944679a7a47e710a", + "reference": "d77904018090c17dc9f3ab6e944679a7a47e710a", "shasum": "" }, "type": "library", @@ -3993,7 +4712,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "no usage restriction" + "MIT" ], "authors": [ { @@ -4008,7 +4727,7 @@ "fpdf", "pdf" ], - "time": "2016-01-01T17:47:15+00:00" + "time": "2019-12-08T10:32:10+00:00" }, { "name": "setasign/fpdi", @@ -4061,29 +4780,31 @@ }, { "name": "shopware/shopware", - "version": "v5.5.10", + "version": "v5.6.6", "source": { "type": "git", "url": "https://github.com/shopware/shopware.git", - "reference": "ad5ea26116917637ffac6d71a99a74180b69887f" + "reference": "11a190f3737c2a5319aaef5ec7d9a74decd63a18" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/shopware/shopware/zipball/ad5ea26116917637ffac6d71a99a74180b69887f", - "reference": "ad5ea26116917637ffac6d71a99a74180b69887f", + "url": "https://api.github.com/repos/shopware/shopware/zipball/11a190f3737c2a5319aaef5ec7d9a74decd63a18", + "reference": "11a190f3737c2a5319aaef5ec7d9a74decd63a18", "shasum": "" }, "require": { "bcremer/line-reader": "0.2.0", - "beberlei/assert": "2.9.2", + "beberlei/assert": "2.9.9", + "beberlei/doctrineextensions": "1.2.6", "cocur/slugify": "3.1", - "doctrine/cache": "1.6.2", - "doctrine/collections": "1.4.0", - "doctrine/common": "2.7.3", - "doctrine/dbal": "2.5.13", - "doctrine/orm": "2.5.14", - "egulias/email-validator": "1.2.14", - "elasticsearch/elasticsearch": "2.3.2", + "doctrine/cache": "1.8.2", + "doctrine/collections": "1.6.4", + "doctrine/common": "2.11.0", + "doctrine/dbal": "2.6.3", + "doctrine/orm": "2.6.6", + "doctrine/persistence": "1.2.0", + "egulias/email-validator": "1.2.16", + "elasticsearch/elasticsearch": "6.7.2", "ext-ctype": "*", "ext-curl": "*", "ext-date": "*", @@ -4101,39 +4822,42 @@ "ext-xml": "*", "ext-zip": "*", "ext-zlib": "*", - "guzzlehttp/guzzle": "5.3.3", + "fig/link-util": "1.0.0", + "guzzlehttp/guzzle": "5.3.4", "guzzlehttp/psr7": "1.4.2", - "league/flysystem": "1.0.46", - "league/flysystem-aws-s3-v3": "1.0.19", + "league/flysystem": "1.0.63", + "league/flysystem-aws-s3-v3": "1.0.23", "lib-libxml": "*", - "monolog/monolog": "1.23.0", - "mpdf/mpdf": "7.0.3", - "ocramius/proxy-manager": "1.0.2", - "ongr/elasticsearch-dsl": "2.2.2", + "monolog/monolog": "1.25.3", + "mpdf/mpdf": "7.1.9", + "ocramius/proxy-manager": "2.2.3", + "ongr/elasticsearch-dsl": "6.0.3", "oyejorge/less.php": "1.7.0.14", - "paragonie/random_compat": "2.0.11", - "php": "^5.6.4||^7.0", + "php": "^7.2", "php-http/curl-client": "1.7.1", "php-http/message": "1.6.0", + "psr/link": "1.0.0", "ramsey/uuid": "3.5.2", - "setasign/fpdf": "1.8.1", + "setasign/fpdf": "1.8.2", "setasign/fpdi": "1.6.2", + "stecman/symfony-console-completion": "0.10.1", "superbalist/flysystem-google-storage": "6.0.0", - "symfony/class-loader": "3.4.27", - "symfony/config": "3.4.27", - "symfony/console": "3.4.27", - "symfony/dependency-injection": "3.4.27", - "symfony/expression-language": "3.4.27", - "symfony/filesystem": "3.4.27", - "symfony/finder": "3.4.27", - "symfony/form": "3.4.27", - "symfony/http-foundation": "3.4.27", - "symfony/http-kernel": "3.4.27", - "symfony/options-resolver": "3.4.27", - "symfony/process": "3.4.27", - "symfony/serializer": "3.4.27", - "symfony/translation": "3.4.27", - "symfony/validator": "3.4.27", + "symfony/class-loader": "3.4.37", + "symfony/config": "3.4.37", + "symfony/console": "3.4.37", + "symfony/dependency-injection": "3.4.37", + "symfony/expression-language": "3.4.37", + "symfony/filesystem": "3.4.37", + "symfony/finder": "3.4.37", + "symfony/form": "3.4.37", + "symfony/http-foundation": "3.4.37", + "symfony/http-kernel": "3.4.37", + "symfony/options-resolver": "3.4.37", + "symfony/process": "3.4.37", + "symfony/serializer": "3.4.37", + "symfony/translation": "3.4.37", + "symfony/validator": "3.4.37", + "symfony/web-link": "3.4.37", "zendframework/zend-escaper": "2.5.2" }, "require-dev": { @@ -4142,12 +4866,14 @@ "behat/mink-extension": "v2.2", "behat/mink-goutte-driver": "~1.2", "behat/mink-selenium2-driver": "~1.3", - "friendsofphp/php-cs-fixer": "~2.10", + "friendsofphp/php-cs-fixer": "~2.16", "jakub-onderka/php-var-dump-check": "^0.3.0", - "phpunit/dbunit": "~2.0|| ~3.0", - "phpunit/phpunit": "~5.6||~6.3", + "kubawerlos/php-cs-fixer-custom-fixers": "^1.17", + "phpstan/phpstan": "0.12.8", + "phpunit/phpunit": "~7.0", "sensiolabs/behat-page-object-extension": "~2.1.0", - "symfony/dom-crawler": "~2.8.9" + "symfony/dom-crawler": "~2.8.52", + "symfony/yaml": "3.4.37" }, "suggest": { "ext-apcu": "*", @@ -4164,7 +4890,8 @@ "JSMin": "engine/Library/minify/" }, "classmap": [ - "engine/Shopware/Core/" + "engine/Shopware/Core/", + "engine/Library/Smarty/" ], "files": [ "engine/Shopware/Application.php" @@ -4189,7 +4916,7 @@ "shop", "shopware" ], - "time": "2019-06-05T15:06:28+00:00" + "time": "2020-03-03T11:02:28+00:00" }, { "name": "squizlabs/php_codesniffer", @@ -4269,6 +4996,51 @@ ], "time": "2017-03-01T22:17:45+00:00" }, + { + "name": "stecman/symfony-console-completion", + "version": "0.10.1", + "source": { + "type": "git", + "url": "https://github.com/stecman/symfony-console-completion.git", + "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/7bfa9b93e216896419f2f8de659935d7e04fecd8", + "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8", + "shasum": "" + }, + "require": { + "php": ">=5.3.2", + "symfony/console": "~2.3 || ~3.0 || ~4.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.10.x-dev" + } + }, + "autoload": { + "psr-4": { + "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Stephen Holdaway", + "email": "stephen@stecman.co.nz" + } + ], + "description": "Automatic BASH completion for Symfony Console Component based applications.", + "time": "2019-04-29T03:20:18+00:00" + }, { "name": "superbalist/flysystem-google-storage", "version": "6.0.0", @@ -4318,16 +5090,16 @@ }, { "name": "symfony/cache", - "version": "v4.3.8", + "version": "v4.3.11", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "83dca34362a0aba2b93aa1226dac6ef7cfea1262" + "reference": "8794ccf68ac341fc19311919d2287f7557bfccba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/83dca34362a0aba2b93aa1226dac6ef7cfea1262", - "reference": "83dca34362a0aba2b93aa1226dac6ef7cfea1262", + "url": "https://api.github.com/repos/symfony/cache/zipball/8794ccf68ac341fc19311919d2287f7557bfccba", + "reference": "8794ccf68ac341fc19311919d2287f7557bfccba", "shasum": "" }, "require": { @@ -4392,7 +5164,7 @@ "caching", "psr6" ], - "time": "2019-11-12T13:07:20+00:00" + "time": "2020-01-27T09:15:09+00:00" }, { "name": "symfony/cache-contracts", @@ -4454,16 +5226,16 @@ }, { "name": "symfony/class-loader", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/class-loader.git", - "reference": "4459eef5298dedfb69f771186a580062b8516497" + "reference": "bcdf6ff46e115b29be3186391f29e0da82cd6f72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/class-loader/zipball/4459eef5298dedfb69f771186a580062b8516497", - "reference": "4459eef5298dedfb69f771186a580062b8516497", + "url": "https://api.github.com/repos/symfony/class-loader/zipball/bcdf6ff46e115b29be3186391f29e0da82cd6f72", + "reference": "bcdf6ff46e115b29be3186391f29e0da82cd6f72", "shasum": "" }, "require": { @@ -4506,20 +5278,20 @@ ], "description": "Symfony ClassLoader Component", "homepage": "https://symfony.com", - "time": "2019-01-16T09:39:14+00:00" + "time": "2020-01-04T12:05:51+00:00" }, { "name": "symfony/config", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "177a276c01575253c95cefe0866e3d1b57637fe0" + "reference": "6abc18b2a97f63508d23929bbb2ae65aaa07bace" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/177a276c01575253c95cefe0866e3d1b57637fe0", - "reference": "177a276c01575253c95cefe0866e3d1b57637fe0", + "url": "https://api.github.com/repos/symfony/config/zipball/6abc18b2a97f63508d23929bbb2ae65aaa07bace", + "reference": "6abc18b2a97f63508d23929bbb2ae65aaa07bace", "shasum": "" }, "require": { @@ -4570,20 +5342,20 @@ ], "description": "Symfony Config Component", "homepage": "https://symfony.com", - "time": "2019-02-23T15:06:07+00:00" + "time": "2020-01-04T12:05:51+00:00" }, { "name": "symfony/console", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "15a9104356436cb26e08adab97706654799d31d8" + "reference": "7c5bdd346f9d90a2d22d4e1fe61e02dc19b98f12" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/15a9104356436cb26e08adab97706654799d31d8", - "reference": "15a9104356436cb26e08adab97706654799d31d8", + "url": "https://api.github.com/repos/symfony/console/zipball/7c5bdd346f9d90a2d22d4e1fe61e02dc19b98f12", + "reference": "7c5bdd346f9d90a2d22d4e1fe61e02dc19b98f12", "shasum": "" }, "require": { @@ -4642,20 +5414,20 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2019-04-08T09:29:13+00:00" + "time": "2020-01-10T07:52:48+00:00" }, { "name": "symfony/debug", - "version": "v4.4.0", + "version": "v4.4.7", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "b24b791f817116b29e52a63e8544884cf9a40757" + "reference": "346636d2cae417992ecfd761979b2ab98b339a45" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/b24b791f817116b29e52a63e8544884cf9a40757", - "reference": "b24b791f817116b29e52a63e8544884cf9a40757", + "url": "https://api.github.com/repos/symfony/debug/zipball/346636d2cae417992ecfd761979b2ab98b339a45", + "reference": "346636d2cae417992ecfd761979b2ab98b339a45", "shasum": "" }, "require": { @@ -4698,20 +5470,20 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2019-11-10T17:54:30+00:00" + "time": "2020-03-27T16:54:36+00:00" }, { "name": "symfony/dependency-injection", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "be0feb3fa202aedfd8d1956f2dafd563fb13acbf" + "reference": "22000f10c9e1cfef051e8b4de46815b41a0223fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/be0feb3fa202aedfd8d1956f2dafd563fb13acbf", - "reference": "be0feb3fa202aedfd8d1956f2dafd563fb13acbf", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/22000f10c9e1cfef051e8b4de46815b41a0223fc", + "reference": "22000f10c9e1cfef051e8b4de46815b41a0223fc", "shasum": "" }, "require": { @@ -4769,20 +5541,20 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", - "time": "2019-04-20T15:32:49+00:00" + "time": "2020-01-08T11:20:51+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.4.0", + "version": "v4.4.7", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "ab1c43e17fff802bef0a898f3bc088ac33b8e0e1" + "reference": "abc8e3618bfdb55e44c8c6a00abd333f831bbfed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ab1c43e17fff802bef0a898f3bc088ac33b8e0e1", - "reference": "ab1c43e17fff802bef0a898f3bc088ac33b8e0e1", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/abc8e3618bfdb55e44c8c6a00abd333f831bbfed", + "reference": "abc8e3618bfdb55e44c8c6a00abd333f831bbfed", "shasum": "" }, "require": { @@ -4839,7 +5611,7 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2019-11-08T22:40:51+00:00" + "time": "2020-03-27T16:54:36+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -4901,21 +5673,22 @@ }, { "name": "symfony/expression-language", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/expression-language.git", - "reference": "74631d47774cfa59bfb4a0de18cdf700fb98d658" + "reference": "d6d9a3c5780129d4c272cb3e8c32d0e2b363c857" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/expression-language/zipball/74631d47774cfa59bfb4a0de18cdf700fb98d658", - "reference": "74631d47774cfa59bfb4a0de18cdf700fb98d658", + "url": "https://api.github.com/repos/symfony/expression-language/zipball/d6d9a3c5780129d4c272cb3e8c32d0e2b363c857", + "reference": "d6d9a3c5780129d4c272cb3e8c32d0e2b363c857", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8", - "symfony/cache": "~3.1|~4.0" + "symfony/cache": "~3.1|~4.0", + "symfony/polyfill-php70": "~1.6" }, "type": "library", "extra": { @@ -4947,20 +5720,20 @@ ], "description": "Symfony ExpressionLanguage Component", "homepage": "https://symfony.com", - "time": "2019-01-16T12:52:19+00:00" + "time": "2020-01-01T11:03:25+00:00" }, { "name": "symfony/filesystem", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb" + "reference": "0a0d3b4bda11aa3a0464531c40e681e184e75628" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/acf99758b1df8e9295e6b85aa69f294565c9fedb", - "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/0a0d3b4bda11aa3a0464531c40e681e184e75628", + "reference": "0a0d3b4bda11aa3a0464531c40e681e184e75628", "shasum": "" }, "require": { @@ -4997,20 +5770,20 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2019-02-04T21:34:32+00:00" + "time": "2020-01-17T08:50:08+00:00" }, { "name": "symfony/finder", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98" + "reference": "a90a9d3b9f458a5cdeabfa4090b20c000ca3962f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/61af5ce0b34b942d414fe8f1b11950d0e9a90e98", - "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98", + "url": "https://api.github.com/repos/symfony/finder/zipball/a90a9d3b9f458a5cdeabfa4090b20c000ca3962f", + "reference": "a90a9d3b9f458a5cdeabfa4090b20c000ca3962f", "shasum": "" }, "require": { @@ -5046,20 +5819,20 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2019-04-02T19:54:57+00:00" + "time": "2020-01-01T11:03:25+00:00" }, { "name": "symfony/form", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/form.git", - "reference": "425f5db90f72fce5caeccbb5924817c117c381b7" + "reference": "99f6cf6e5dee8ee83b1ec82d84aaca2b0bdb358a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/form/zipball/425f5db90f72fce5caeccbb5924817c117c381b7", - "reference": "425f5db90f72fce5caeccbb5924817c117c381b7", + "url": "https://api.github.com/repos/symfony/form/zipball/99f6cf6e5dee8ee83b1ec82d84aaca2b0bdb358a", + "reference": "99f6cf6e5dee8ee83b1ec82d84aaca2b0bdb358a", "shasum": "" }, "require": { @@ -5127,20 +5900,20 @@ ], "description": "Symfony Form Component", "homepage": "https://symfony.com", - "time": "2019-04-27T07:59:15+00:00" + "time": "2020-01-04T12:05:51+00:00" }, { "name": "symfony/http-foundation", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "fa02215233be8de1c2b44617088192f9e8db3512" + "reference": "f3abd07a56111ebe6a1ad6f1cbc23e4f8983f8f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fa02215233be8de1c2b44617088192f9e8db3512", - "reference": "fa02215233be8de1c2b44617088192f9e8db3512", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f3abd07a56111ebe6a1ad6f1cbc23e4f8983f8f5", + "reference": "f3abd07a56111ebe6a1ad6f1cbc23e4f8983f8f5", "shasum": "" }, "require": { @@ -5181,20 +5954,20 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2019-05-01T08:04:33+00:00" + "time": "2020-01-04T12:05:51+00:00" }, { "name": "symfony/http-kernel", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "586046f5adc6a08eaebbe4519ef18ad52f54e453" + "reference": "ea8af453ccf14e24a6cb2fcc3ece5814cbcc0ff4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/586046f5adc6a08eaebbe4519ef18ad52f54e453", - "reference": "586046f5adc6a08eaebbe4519ef18ad52f54e453", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ea8af453ccf14e24a6cb2fcc3ece5814cbcc0ff4", + "reference": "ea8af453ccf14e24a6cb2fcc3ece5814cbcc0ff4", "shasum": "" }, "require": { @@ -5203,7 +5976,8 @@ "symfony/debug": "^3.3.3|~4.0", "symfony/event-dispatcher": "~2.8|~3.0|~4.0", "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1", - "symfony/polyfill-ctype": "~1.8" + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php56": "~1.8" }, "conflict": { "symfony/config": "<2.8", @@ -5270,30 +6044,30 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2019-05-01T13:03:24+00:00" + "time": "2020-01-21T12:29:51+00:00" }, { "name": "symfony/inflector", - "version": "v4.4.0", + "version": "v5.0.7", "source": { "type": "git", "url": "https://github.com/symfony/inflector.git", - "reference": "98581481d9ddabe4db3a66e10202fe1fa08d791b" + "reference": "70c25c66427e2bb6ba0827d668366d60b0a90cbf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/inflector/zipball/98581481d9ddabe4db3a66e10202fe1fa08d791b", - "reference": "98581481d9ddabe4db3a66e10202fe1fa08d791b", + "url": "https://api.github.com/repos/symfony/inflector/zipball/70c25c66427e2bb6ba0827d668366d60b0a90cbf", + "reference": "70c25c66427e2bb6ba0827d668366d60b0a90cbf", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": "^7.2.5", "symfony/polyfill-ctype": "~1.8" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -5328,20 +6102,20 @@ "symfony", "words" ], - "time": "2019-11-06T12:02:32+00:00" + "time": "2020-03-27T16:56:45+00:00" }, { "name": "symfony/intl", - "version": "v4.4.0", + "version": "v4.4.7", "source": { "type": "git", "url": "https://github.com/symfony/intl.git", - "reference": "299cbfd6be791438e8d93ffb25765b5b93021bf9" + "reference": "63238a53b1cf0cd3e2b0b22cabc7c0b6f3fd4562" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/intl/zipball/299cbfd6be791438e8d93ffb25765b5b93021bf9", - "reference": "299cbfd6be791438e8d93ffb25765b5b93021bf9", + "url": "https://api.github.com/repos/symfony/intl/zipball/63238a53b1cf0cd3e2b0b22cabc7c0b6f3fd4562", + "reference": "63238a53b1cf0cd3e2b0b22cabc7c0b6f3fd4562", "shasum": "" }, "require": { @@ -5403,20 +6177,20 @@ "l10n", "localization" ], - "time": "2019-10-12T00:35:04+00:00" + "time": "2020-03-27T16:54:36+00:00" }, { "name": "symfony/options-resolver", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "ed3b397f9c07c8ca388b2a1ef744403b4d4ecc44" + "reference": "730ef56164ed6c9356c159e9f5ff2b84d753b9ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/ed3b397f9c07c8ca388b2a1ef744403b4d4ecc44", - "reference": "ed3b397f9c07c8ca388b2a1ef744403b4d4ecc44", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/730ef56164ed6c9356c159e9f5ff2b84d753b9ed", + "reference": "730ef56164ed6c9356c159e9f5ff2b84d753b9ed", "shasum": "" }, "require": { @@ -5457,20 +6231,20 @@ "configuration", "options" ], - "time": "2019-04-10T16:00:48+00:00" + "time": "2020-01-01T11:03:25+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.12.0", + "version": "v1.15.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4" + "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/4719fa9c18b0464d399f1a63bf624b42b6fa8d14", + "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14", "shasum": "" }, "require": { @@ -5482,7 +6256,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.15-dev" } }, "autoload": { @@ -5515,20 +6289,20 @@ "polyfill", "portable" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2020-02-27T09:26:54+00:00" }, { "name": "symfony/polyfill-intl-icu", - "version": "v1.12.0", + "version": "v1.15.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "66810b9d6eb4af54d543867909d65ab9af654d7e" + "reference": "9c281272735eb66476e0fa7381e03fb0d4b60197" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/66810b9d6eb4af54d543867909d65ab9af654d7e", - "reference": "66810b9d6eb4af54d543867909d65ab9af654d7e", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/9c281272735eb66476e0fa7381e03fb0d4b60197", + "reference": "9c281272735eb66476e0fa7381e03fb0d4b60197", "shasum": "" }, "require": { @@ -5541,7 +6315,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.15-dev" } }, "autoload": { @@ -5573,20 +6347,20 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2020-02-27T09:26:54+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.12.0", + "version": "v1.15.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" + "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/81ffd3a9c6d707be22e3012b827de1c9775fc5ac", + "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac", "shasum": "" }, "require": { @@ -5598,7 +6372,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.15-dev" } }, "autoload": { @@ -5632,20 +6406,76 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2020-03-09T19:04:49+00:00" + }, + { + "name": "symfony/polyfill-php56", + "version": "v1.15.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php56.git", + "reference": "d51ec491c8ddceae7dca8dd6c7e30428f543f37d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/d51ec491c8ddceae7dca8dd6c7e30428f543f37d", + "reference": "d51ec491c8ddceae7dca8dd6c7e30428f543f37d", + "shasum": "" + }, + "require": { + "php": ">=5.3.3", + "symfony/polyfill-util": "~1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.15-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php56\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "time": "2020-03-09T19:04:49+00:00" }, { "name": "symfony/polyfill-php70", - "version": "v1.12.0", + "version": "v1.15.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php70.git", - "reference": "54b4c428a0054e254223797d2713c31e08610831" + "reference": "2a18e37a489803559284416df58c71ccebe50bf0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831", - "reference": "54b4c428a0054e254223797d2713c31e08610831", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/2a18e37a489803559284416df58c71ccebe50bf0", + "reference": "2a18e37a489803559284416df58c71ccebe50bf0", "shasum": "" }, "require": { @@ -5655,7 +6485,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.15-dev" } }, "autoload": { @@ -5691,20 +6521,72 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2020-02-27T09:26:54+00:00" + }, + { + "name": "symfony/polyfill-util", + "version": "v1.15.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-util.git", + "reference": "d8e76c104127675d0ea3df3be0f2ae24a8619027" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/d8e76c104127675d0ea3df3be0f2ae24a8619027", + "reference": "d8e76c104127675d0ea3df3be0f2ae24a8619027", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.15-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Util\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony utilities for portability of PHP codes", + "homepage": "https://symfony.com", + "keywords": [ + "compat", + "compatibility", + "polyfill", + "shim" + ], + "time": "2020-03-02T11:55:35+00:00" }, { "name": "symfony/process", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a" + "reference": "5b9d2bcffe4678911a4c941c00b7c161252cf09a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/a9c4dfbf653023b668c282e4e02609d131f4057a", - "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a", + "url": "https://api.github.com/repos/symfony/process/zipball/5b9d2bcffe4678911a4c941c00b7c161252cf09a", + "reference": "5b9d2bcffe4678911a4c941c00b7c161252cf09a", "shasum": "" }, "require": { @@ -5740,20 +6622,20 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2019-04-08T16:15:54+00:00" + "time": "2020-01-01T11:03:25+00:00" }, { "name": "symfony/property-access", - "version": "v4.4.0", + "version": "v4.4.7", "source": { "type": "git", "url": "https://github.com/symfony/property-access.git", - "reference": "4df120cbe473d850eb59f75c341915955e45f25b" + "reference": "75cbf0f388d82685ce06515951397bc1370901d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-access/zipball/4df120cbe473d850eb59f75c341915955e45f25b", - "reference": "4df120cbe473d850eb59f75c341915955e45f25b", + "url": "https://api.github.com/repos/symfony/property-access/zipball/75cbf0f388d82685ce06515951397bc1370901d7", + "reference": "75cbf0f388d82685ce06515951397bc1370901d7", "shasum": "" }, "require": { @@ -5807,20 +6689,20 @@ "property path", "reflection" ], - "time": "2019-10-12T00:35:04+00:00" + "time": "2020-03-27T16:54:36+00:00" }, { "name": "symfony/serializer", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "99aceeb3e10852b951b9cab57a2b83062db09efb" + "reference": "e85feee0d587c65713ec6d3e2a1d8782e6d219dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/99aceeb3e10852b951b9cab57a2b83062db09efb", - "reference": "99aceeb3e10852b951b9cab57a2b83062db09efb", + "url": "https://api.github.com/repos/symfony/serializer/zipball/e85feee0d587c65713ec6d3e2a1d8782e6d219dc", + "reference": "e85feee0d587c65713ec6d3e2a1d8782e6d219dc", "shasum": "" }, "require": { @@ -5851,7 +6733,7 @@ "doctrine/cache": "For using the default cached annotation reader and metadata cache.", "psr/cache-implementation": "For using the metadata cache.", "symfony/config": "For using the XML mapping loader.", - "symfony/http-foundation": "To use the DataUriNormalizer.", + "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.", "symfony/property-access": "For using the ObjectNormalizer.", "symfony/property-info": "To deserialize relations.", "symfony/yaml": "For using the default YAML mapping loader." @@ -5886,7 +6768,7 @@ ], "description": "Symfony Serializer Component", "homepage": "https://symfony.com", - "time": "2019-04-27T21:20:35+00:00" + "time": "2020-01-01T11:03:25+00:00" }, { "name": "symfony/service-contracts", @@ -5948,16 +6830,16 @@ }, { "name": "symfony/translation", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "301a5d627220a1c4ee522813b0028653af6c4f54" + "reference": "577ec9ba1d6443947c48058acc3de298ad25e2bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/301a5d627220a1c4ee522813b0028653af6c4f54", - "reference": "301a5d627220a1c4ee522813b0028653af6c4f54", + "url": "https://api.github.com/repos/symfony/translation/zipball/577ec9ba1d6443947c48058acc3de298ad25e2bf", + "reference": "577ec9ba1d6443947c48058acc3de298ad25e2bf", "shasum": "" }, "require": { @@ -6014,20 +6896,20 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2019-05-01T11:10:09+00:00" + "time": "2020-01-04T12:05:51+00:00" }, { "name": "symfony/validator", - "version": "v3.4.27", + "version": "v3.4.37", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "cc3f577d8887737df4d77a4c0cc6e3c22164cea4" + "reference": "46580e4429797438033fc1f226cb4cba67afe280" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/cc3f577d8887737df4d77a4c0cc6e3c22164cea4", - "reference": "cc3f577d8887737df4d77a4c0cc6e3c22164cea4", + "url": "https://api.github.com/repos/symfony/validator/zipball/46580e4429797438033fc1f226cb4cba67afe280", + "reference": "46580e4429797438033fc1f226cb4cba67afe280", "shasum": "" }, "require": { @@ -6037,15 +6919,16 @@ "symfony/translation": "~2.8|~3.0|~4.0" }, "conflict": { + "doctrine/lexer": "<1.0.2", "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", "symfony/dependency-injection": "<3.3", "symfony/http-kernel": "<3.3.5", "symfony/yaml": "<3.4" }, "require-dev": { - "doctrine/annotations": "~1.0", + "doctrine/annotations": "~1.7", "doctrine/cache": "~1.0", - "egulias/email-validator": "^1.2.8|~2.0", + "egulias/email-validator": "^2.1.10", "symfony/cache": "~3.1|~4.0", "symfony/config": "~2.8|~3.0|~4.0", "symfony/dependency-injection": "~3.3|~4.0", @@ -6099,20 +6982,20 @@ ], "description": "Symfony Validator Component", "homepage": "https://symfony.com", - "time": "2019-04-29T08:34:27+00:00" + "time": "2020-01-14T18:27:07+00:00" }, { "name": "symfony/var-exporter", - "version": "v4.4.0", + "version": "v4.4.7", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "72feb69a33def8f761e612360588e40bac98caad" + "reference": "6e4939b084defee0ab60a21e6a02e3a198afd91f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/72feb69a33def8f761e612360588e40bac98caad", - "reference": "72feb69a33def8f761e612360588e40bac98caad", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/6e4939b084defee0ab60a21e6a02e3a198afd91f", + "reference": "6e4939b084defee0ab60a21e6a02e3a198afd91f", "shasum": "" }, "require": { @@ -6159,44 +7042,44 @@ "instantiate", "serialize" ], - "time": "2019-11-13T07:39:40+00:00" + "time": "2020-03-27T16:54:36+00:00" }, { - "name": "symfony/yaml", - "version": "v4.4.0", + "name": "symfony/web-link", + "version": "v3.4.37", "source": { "type": "git", - "url": "https://github.com/symfony/yaml.git", - "reference": "76de473358fe802578a415d5bb43c296cf09d211" + "url": "https://github.com/symfony/web-link.git", + "reference": "c95a6598107b942382b27b71c8ef66d4d6fc7997" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/76de473358fe802578a415d5bb43c296cf09d211", - "reference": "76de473358fe802578a415d5bb43c296cf09d211", + "url": "https://api.github.com/repos/symfony/web-link/zipball/c95a6598107b942382b27b71c8ef66d4d6fc7997", + "reference": "c95a6598107b942382b27b71c8ef66d4d6fc7997", "shasum": "" }, "require": { - "php": "^7.1.3", - "symfony/polyfill-ctype": "~1.8" - }, - "conflict": { - "symfony/console": "<3.4" + "fig/link-util": "^1.0", + "php": "^5.5.9|>=7.0.8", + "psr/link": "^1.0" }, "require-dev": { - "symfony/console": "^3.4|^4.0|^5.0" + "symfony/event-dispatcher": "^2.8|^3.0|~4.0", + "symfony/http-foundation": "^2.8|^3.0|~4.0", + "symfony/http-kernel": "^2.8|^3.0|~4.0" }, "suggest": { - "symfony/console": "For validating YAML files using the lint command" + "symfony/http-kernel": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Component\\Yaml\\": "" + "Symfony\\Component\\WebLink\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -6208,17 +7091,29 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Kévin Dunglas", + "email": "dunglas@gmail.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Yaml Component", + "description": "Symfony WebLink Component", "homepage": "https://symfony.com", - "time": "2019-11-12T14:51:11+00:00" + "keywords": [ + "dns-prefetch", + "http", + "http2", + "link", + "performance", + "prefetch", + "preload", + "prerender", + "psr13", + "push" + ], + "time": "2020-01-01T11:03:25+00:00" }, { "name": "theseer/fdomdocument", @@ -6262,16 +7157,16 @@ }, { "name": "webmozart/assert", - "version": "1.6.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "573381c0a64f155a0d9a23f4b0c797194805b925" + "reference": "aed98a490f9a8f78468232db345ab9cf606cf598" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/573381c0a64f155a0d9a23f4b0c797194805b925", - "reference": "573381c0a64f155a0d9a23f4b0c797194805b925", + "url": "https://api.github.com/repos/webmozart/assert/zipball/aed98a490f9a8f78468232db345ab9cf606cf598", + "reference": "aed98a490f9a8f78468232db345ab9cf606cf598", "shasum": "" }, "require": { @@ -6306,20 +7201,20 @@ "check", "validate" ], - "time": "2019-11-24T13:36:37+00:00" + "time": "2020-02-14T12:15:55+00:00" }, { "name": "wimg/php-compatibility", - "version": "9.3.4", + "version": "9.3.5", "source": { "type": "git", "url": "https://github.com/PHPCompatibility/PHPCompatibility.git", - "reference": "1f37659196e4f3113ea506a7efba201c52303bf1" + "reference": "9fb324479acf6f39452e0655d2429cc0d3914243" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/1f37659196e4f3113ea506a7efba201c52303bf1", - "reference": "1f37659196e4f3113ea506a7efba201c52303bf1", + "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/9fb324479acf6f39452e0655d2429cc0d3914243", + "reference": "9fb324479acf6f39452e0655d2429cc0d3914243", "shasum": "" }, "require": { @@ -6365,30 +7260,34 @@ "standards" ], "abandoned": "phpcompatibility/php-compatibility", - "time": "2019-11-15T04:12:02+00:00" + "time": "2019-12-27T09:44:58+00:00" }, { "name": "zendframework/zend-code", - "version": "2.6.3", + "version": "3.4.1", "source": { "type": "git", "url": "https://github.com/zendframework/zend-code.git", - "reference": "95033f061b083e16cdee60530ec260d7d628b887" + "reference": "268040548f92c2bfcba164421c1add2ba43abaaa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-code/zipball/95033f061b083e16cdee60530ec260d7d628b887", - "reference": "95033f061b083e16cdee60530ec260d7d628b887", + "url": "https://api.github.com/repos/zendframework/zend-code/zipball/268040548f92c2bfcba164421c1add2ba43abaaa", + "reference": "268040548f92c2bfcba164421c1add2ba43abaaa", "shasum": "" }, "require": { - "php": "^5.5 || 7.0.0 - 7.0.4 || ^7.0.6", + "php": "^7.1", "zendframework/zend-eventmanager": "^2.6 || ^3.0" }, + "conflict": { + "phpspec/prophecy": "<1.9.0" + }, "require-dev": { - "doctrine/annotations": "~1.0", - "fabpot/php-cs-fixer": "1.7.*", - "phpunit/phpunit": "^4.8.21", + "doctrine/annotations": "^1.7", + "ext-phar": "*", + "phpunit/phpunit": "^7.5.16 || ^8.4", + "zendframework/zend-coding-standard": "^1.0", "zendframework/zend-stdlib": "^2.7 || ^3.0" }, "suggest": { @@ -6398,8 +7297,9 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.6-dev", - "dev-develop": "2.7-dev" + "dev-master": "3.4.x-dev", + "dev-develop": "3.5.x-dev", + "dev-dev-4.0": "4.0.x-dev" } }, "autoload": { @@ -6411,13 +7311,14 @@ "license": [ "BSD-3-Clause" ], - "description": "provides facilities to generate arbitrary code using an object oriented interface", - "homepage": "https://github.com/zendframework/zend-code", + "description": "Extensions to the PHP Reflection API, static code scanning, and code generation", "keywords": [ + "ZendFramework", "code", - "zf2" + "zf" ], - "time": "2016-04-20T17:26:42+00:00" + "abandoned": "laminas/laminas-code", + "time": "2019-12-10T19:21:15+00:00" }, { "name": "zendframework/zend-escaper", @@ -6461,6 +7362,7 @@ "escaper", "zf2" ], + "abandoned": "laminas/laminas-escaper", "time": "2016-06-30T19:48:38+00:00" }, { @@ -6515,6 +7417,7 @@ "events", "zf2" ], + "abandoned": "laminas/laminas-eventmanager", "time": "2018-04-25T15:33:34+00:00" } ], @@ -6527,6 +7430,6 @@ "php": ">=5.4.0" }, "platform-dev": { - "php": ">=7.1.0" + "php": ">=7.2.0" } } diff --git a/phan.php b/phan.php index 02b8b0e4..2e8e484a 100644 --- a/phan.php +++ b/phan.php @@ -54,5 +54,9 @@ ], 'file_list' => [ 'Bootstrap.php' - ] + ], + 'plugins' => [ + 'vendor/drenso/phan-extensions/Plugin/Annotation/SymfonyAnnotationPlugin.php', + 'vendor/drenso/phan-extensions/Plugin/DocComment/InlineVarPlugin.php' + ], ];