From 75f386764ac29f157ad13c95fe4a71a8feb8b96e Mon Sep 17 00:00:00 2001 From: Stefan Doorn Date: Sat, 9 Sep 2017 18:27:01 +0200 Subject: [PATCH 1/4] Compatible with return types --- src/LakionCmsPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LakionCmsPlugin.php b/src/LakionCmsPlugin.php index 839abd4..3a7afee 100644 --- a/src/LakionCmsPlugin.php +++ b/src/LakionCmsPlugin.php @@ -13,7 +13,7 @@ final class LakionCmsPlugin extends AbstractResourceBundle /** * {@inheritdoc} */ - public function getSupportedDrivers() + public function getSupportedDrivers(): array { return [SyliusResourceBundle::DRIVER_DOCTRINE_PHPCR_ODM]; } From ba69a457a4c7bf8e65cd6efd78bf4a3860ffdcc7 Mon Sep 17 00:00:00 2001 From: Stefan Doorn Date: Mon, 11 Sep 2017 17:23:08 +0200 Subject: [PATCH 2/4] Add return types in fixtures --- src/Fixture/CustomBlockFixture.php | 4 ++-- src/Fixture/ProductBlockFixture.php | 4 ++-- src/Fixture/RouteFixture.php | 4 ++-- src/Fixture/StaticContentFixture.php | 4 ++-- src/Fixture/StringBlockFixture.php | 4 ++-- src/Fixture/TaxonBlockFixture.php | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/Fixture/CustomBlockFixture.php b/src/Fixture/CustomBlockFixture.php index 69a0c14..9da4afb 100644 --- a/src/Fixture/CustomBlockFixture.php +++ b/src/Fixture/CustomBlockFixture.php @@ -10,7 +10,7 @@ final class CustomBlockFixture extends AbstractResourceFixture /** * {@inheritdoc} */ - public function getName() + public function getName(): string { return 'lakion_cms_custom_block'; } @@ -18,7 +18,7 @@ public function getName() /** * {@inheritdoc} */ - protected function configureResourceNode(ArrayNodeDefinition $resourceNode) + protected function configureResourceNode(ArrayNodeDefinition $resourceNode): void { $resourceNode ->children() diff --git a/src/Fixture/ProductBlockFixture.php b/src/Fixture/ProductBlockFixture.php index 08d688a..50745b5 100644 --- a/src/Fixture/ProductBlockFixture.php +++ b/src/Fixture/ProductBlockFixture.php @@ -10,7 +10,7 @@ final class ProductBlockFixture extends AbstractResourceFixture /** * {@inheritdoc} */ - public function getName() + public function getName(): string { return 'lakion_cms_product_block'; } @@ -18,7 +18,7 @@ public function getName() /** * {@inheritdoc} */ - protected function configureResourceNode(ArrayNodeDefinition $resourceNode) + protected function configureResourceNode(ArrayNodeDefinition $resourceNode): void { $resourceNode ->children() diff --git a/src/Fixture/RouteFixture.php b/src/Fixture/RouteFixture.php index d887ddd..ea8c13e 100644 --- a/src/Fixture/RouteFixture.php +++ b/src/Fixture/RouteFixture.php @@ -10,7 +10,7 @@ final class RouteFixture extends AbstractResourceFixture /** * {@inheritdoc} */ - public function getName() + public function getName(): string { return 'lakion_cms_route'; } @@ -18,7 +18,7 @@ public function getName() /** * {@inheritdoc} */ - protected function configureResourceNode(ArrayNodeDefinition $resourceNode) + protected function configureResourceNode(ArrayNodeDefinition $resourceNode): void { $resourceNode ->children() diff --git a/src/Fixture/StaticContentFixture.php b/src/Fixture/StaticContentFixture.php index 2cdf631..7e3b0c6 100644 --- a/src/Fixture/StaticContentFixture.php +++ b/src/Fixture/StaticContentFixture.php @@ -10,7 +10,7 @@ final class StaticContentFixture extends AbstractResourceFixture /** * {@inheritdoc} */ - public function getName() + public function getName(): string { return 'lakion_cms_static_content'; } @@ -18,7 +18,7 @@ public function getName() /** * {@inheritdoc} */ - protected function configureResourceNode(ArrayNodeDefinition $resourceNode) + protected function configureResourceNode(ArrayNodeDefinition $resourceNode): void { $resourceNode ->children() diff --git a/src/Fixture/StringBlockFixture.php b/src/Fixture/StringBlockFixture.php index ea0722a..a8b6b09 100644 --- a/src/Fixture/StringBlockFixture.php +++ b/src/Fixture/StringBlockFixture.php @@ -10,7 +10,7 @@ final class StringBlockFixture extends AbstractResourceFixture /** * {@inheritdoc} */ - public function getName() + public function getName(): string { return 'lakion_cms_string_block'; } @@ -18,7 +18,7 @@ public function getName() /** * {@inheritdoc} */ - protected function configureResourceNode(ArrayNodeDefinition $resourceNode) + protected function configureResourceNode(ArrayNodeDefinition $resourceNode): void { $resourceNode ->children() diff --git a/src/Fixture/TaxonBlockFixture.php b/src/Fixture/TaxonBlockFixture.php index eb27abf..02f9b20 100644 --- a/src/Fixture/TaxonBlockFixture.php +++ b/src/Fixture/TaxonBlockFixture.php @@ -10,7 +10,7 @@ final class TaxonBlockFixture extends AbstractResourceFixture /** * {@inheritdoc} */ - public function getName() + public function getName(): string { return 'lakion_cms_taxon_block'; } @@ -18,7 +18,7 @@ public function getName() /** * {@inheritdoc} */ - protected function configureResourceNode(ArrayNodeDefinition $resourceNode) + protected function configureResourceNode(ArrayNodeDefinition $resourceNode): void { $resourceNode ->children() From 1d56cb3a96510c349fb17bb149dc801b82104fb8 Mon Sep 17 00:00:00 2001 From: Stefan Doorn Date: Wed, 4 Oct 2017 15:50:44 +0200 Subject: [PATCH 3/4] Up PHP version and test only 7.1 on Travis --- .travis.yml | 2 -- composer.json | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 52b0980..0f20925 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,6 @@ language: php php: - 7.1 - - 7.0 - - 5.6 cache: directories: diff --git a/composer.json b/composer.json index 0d38d93..5e68ce1 100644 --- a/composer.json +++ b/composer.json @@ -12,9 +12,9 @@ } ], "require": { - "php": "^5.6|^7.0", + "php": "^7.1", - "sylius/sylius": "1.0.0-beta.2", + "sylius/sylius": "^1.0", "doctrine/phpcr-odm": "^2.0@dev", "symfony-cmf/block-bundle": "^2.0@dev", From 933186a35c2de5cda6d9e2f51906815418d13497 Mon Sep 17 00:00:00 2001 From: Stefan Doorn Date: Wed, 4 Oct 2017 16:01:12 +0200 Subject: [PATCH 4/4] Update composer dependencies and adjust minimum stability --- composer.json | 1 - composer.lock | 1726 ++++++++++++++++++++++++++++++------------------- 2 files changed, 1073 insertions(+), 654 deletions(-) diff --git a/composer.json b/composer.json index 5e68ce1..5922151 100644 --- a/composer.json +++ b/composer.json @@ -41,7 +41,6 @@ "phpspec/phpspec": "^3.2", "phpunit/phpunit": "^5.6" }, - "minimum-stability": "dev", "prefer-stable": true, "autoload": { "psr-4": { diff --git a/composer.lock b/composer.lock index dcf8d4e..8d7c892 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "edc399df50c0f49476b48db6723acf04", + "content-hash": "8e3d8a7d6fbb741886276c5f22fddc44", "packages": [ { "name": "behat/transliterator", @@ -52,21 +52,24 @@ }, { "name": "clue/stream-filter", - "version": "v1.3.0", + "version": "v1.4.0", "source": { "type": "git", "url": "https://github.com/clue/php-stream-filter.git", - "reference": "e3bf9415da163d9ad6701dccb407ed501ae69785" + "reference": "d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/clue/php-stream-filter/zipball/e3bf9415da163d9ad6701dccb407ed501ae69785", - "reference": "e3bf9415da163d9ad6701dccb407ed501ae69785", + "url": "https://api.github.com/repos/clue/php-stream-filter/zipball/d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0", + "reference": "d80fdee9b3a7e0d16fc330a22f41f3ad0eeb09d0", "shasum": "" }, "require": { "php": ">=5.3" }, + "require-dev": { + "phpunit/phpunit": "^5.0 || ^4.8" + }, "type": "library", "autoload": { "psr-4": { @@ -97,7 +100,7 @@ "stream_filter_append", "stream_filter_register" ], - "time": "2015-11-08T23:41:30+00:00" + "time": "2017-08-18T09:54:01+00:00" }, { "name": "cocur/slugify", @@ -165,16 +168,16 @@ }, { "name": "composer/ca-bundle", - "version": "1.0.7", + "version": "1.0.8", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "b17e6153cb7f33c7e44eb59578dc12eee5dc8e12" + "reference": "9dd73a03951357922d8aee6cc084500de93e2343" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/b17e6153cb7f33c7e44eb59578dc12eee5dc8e12", - "reference": "b17e6153cb7f33c7e44eb59578dc12eee5dc8e12", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/9dd73a03951357922d8aee6cc084500de93e2343", + "reference": "9dd73a03951357922d8aee6cc084500de93e2343", "shasum": "" }, "require": { @@ -220,25 +223,25 @@ "ssl", "tls" ], - "time": "2017-03-06T11:59:08+00:00" + "time": "2017-09-11T07:24:36+00:00" }, { "name": "doctrine/annotations", - "version": "v1.4.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "54cacc9b81758b14e3ce750f205a393d52339e97" + "reference": "5beebb01b025c94e93686b7a0ed3edae81fe3e7f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97", - "reference": "54cacc9b81758b14e3ce750f205a393d52339e97", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/5beebb01b025c94e93686b7a0ed3edae81fe3e7f", + "reference": "5beebb01b025c94e93686b7a0ed3edae81fe3e7f", "shasum": "" }, "require": { "doctrine/lexer": "1.*", - "php": "^5.6 || ^7.0" + "php": "^7.1" }, "require-dev": { "doctrine/cache": "1.*", @@ -247,7 +250,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "1.5.x-dev" } }, "autoload": { @@ -288,37 +291,41 @@ "docblock", "parser" ], - "time": "2017-02-24T16:22:25+00:00" + "time": "2017-07-22T10:58:02+00:00" }, { "name": "doctrine/cache", - "version": "v1.6.1", + "version": "v1.7.1", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "b6f544a20f4807e81f7044d31e679ccbb1866dc3" + "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/b6f544a20f4807e81f7044d31e679ccbb1866dc3", - "reference": "b6f544a20f4807e81f7044d31e679ccbb1866dc3", + "url": "https://api.github.com/repos/doctrine/cache/zipball/b3217d58609e9c8e661cd41357a54d926c4a2a1a", + "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a", "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", + "mongodb/mongodb": "^1.1", + "phpunit/phpunit": "^5.7", + "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.7.x-dev" } }, "autoload": { @@ -358,24 +365,24 @@ "cache", "caching" ], - "time": "2016-10-29T11:16:17+00:00" + "time": "2017-08-25T07:02:50+00:00" }, { "name": "doctrine/collections", - "version": "v1.4.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba" + "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba", + "url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf", + "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.1" }, "require-dev": { "doctrine/coding-standard": "~0.1@dev", @@ -425,20 +432,20 @@ "collections", "iterator" ], - "time": "2017-01-03T10:49:41+00:00" + "time": "2017-07-22T10:37:32+00:00" }, { "name": "doctrine/common", - "version": "v2.7.2", + "version": "v2.8.1", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", - "reference": "930297026c8009a567ac051fd545bf6124150347" + "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/930297026c8009a567ac051fd545bf6124150347", - "reference": "930297026c8009a567ac051fd545bf6124150347", + "url": "https://api.github.com/repos/doctrine/common/zipball/f68c297ce6455e8fd794aa8ffaf9fa458f6ade66", + "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66", "shasum": "" }, "require": { @@ -447,15 +454,15 @@ "doctrine/collections": "1.*", "doctrine/inflector": "1.*", "doctrine/lexer": "1.*", - "php": "~5.6|~7.0" + "php": "~7.1" }, "require-dev": { - "phpunit/phpunit": "^5.4.6" + "phpunit/phpunit": "^5.7" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.7.x-dev" + "dev-master": "2.8.x-dev" } }, "autoload": { @@ -498,7 +505,7 @@ "persistence", "spl" ], - "time": "2017-01-13T14:02:13+00:00" + "time": "2017-08-31T08:43:38+00:00" }, { "name": "doctrine/data-fixtures", @@ -561,24 +568,26 @@ }, { "name": "doctrine/dbal", - "version": "v2.5.12", + "version": "v2.6.2", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "7b9e911f9d8b30d43b96853dab26898c710d8f44" + "reference": "1a4ee83a5a709555f2c6f9057a3aacf892451c7e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/7b9e911f9d8b30d43b96853dab26898c710d8f44", - "reference": "7b9e911f9d8b30d43b96853dab26898c710d8f44", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/1a4ee83a5a709555f2c6f9057a3aacf892451c7e", + "reference": "1a4ee83a5a709555f2c6f9057a3aacf892451c7e", "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": { @@ -590,7 +599,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.5.x-dev" + "dev-master": "2.6.x-dev" } }, "autoload": { @@ -628,41 +637,41 @@ "persistence", "queryobject" ], - "time": "2017-02-08T12:53:47+00:00" + "time": "2017-08-28T11:02:56+00:00" }, { "name": "doctrine/doctrine-bundle", - "version": "1.6.7", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineBundle.git", - "reference": "a01d99bc6c9a6c8a8ace0012690099dd957ce9b9" + "reference": "f8bff22d608224ed88e90b24e9d884cb10b389bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/a01d99bc6c9a6c8a8ace0012690099dd957ce9b9", - "reference": "a01d99bc6c9a6c8a8ace0012690099dd957ce9b9", + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/f8bff22d608224ed88e90b24e9d884cb10b389bb", + "reference": "f8bff22d608224ed88e90b24e9d884cb10b389bb", "shasum": "" }, "require": { - "doctrine/dbal": "~2.3", - "doctrine/doctrine-cache-bundle": "~1.0", + "doctrine/dbal": "^2.5.12", + "doctrine/doctrine-cache-bundle": "~1.2", "jdorn/sql-formatter": "~1.1", - "php": ">=5.5.9", - "symfony/console": "~2.7|~3.0", - "symfony/dependency-injection": "~2.7|~3.0", - "symfony/doctrine-bridge": "~2.7|~3.0", - "symfony/framework-bundle": "~2.7|~3.0" + "php": "^7.1", + "symfony/console": "~2.7|~3.0|~4.0", + "symfony/dependency-injection": "~2.7|~3.0|~4.0", + "symfony/doctrine-bridge": "~2.7|~3.0|~4.0", + "symfony/framework-bundle": "~2.7|~3.0|~4.0" }, "require-dev": { "doctrine/orm": "~2.3", - "phpunit/phpunit": "~4", + "phpunit/phpunit": "^6.1", "satooshi/php-coveralls": "^1.0", - "symfony/phpunit-bridge": "~2.7|~3.0", - "symfony/property-info": "~2.8|~3.0", - "symfony/validator": "~2.7|~3.0", - "symfony/yaml": "~2.7|~3.0", - "twig/twig": "~1.10|~2.0" + "symfony/phpunit-bridge": "~2.7|~3.0|~4.0", + "symfony/property-info": "~2.8|~3.0|~4.0", + "symfony/validator": "~2.7|~3.0|~4.0", + "symfony/yaml": "~2.7|~3.0|~4.0", + "twig/twig": "~1.12|~2.0" }, "suggest": { "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.", @@ -671,7 +680,7 @@ "type": "symfony-bundle", "extra": { "branch-alias": { - "dev-master": "1.6.x-dev" + "dev-master": "1.7.x-dev" } }, "autoload": { @@ -709,27 +718,27 @@ "orm", "persistence" ], - "time": "2017-01-16T12:01:26+00:00" + "time": "2017-09-29T15:26:21+00:00" }, { "name": "doctrine/doctrine-cache-bundle", - "version": "1.3.0", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineCacheBundle.git", - "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504" + "reference": "cfc629363a4a1d7b3f21c4689c53aa05519eed52" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/18c600a9b82f6454d2e81ca4957cdd56a1cf3504", - "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504", + "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/cfc629363a4a1d7b3f21c4689c53aa05519eed52", + "reference": "cfc629363a4a1d7b3f21c4689c53aa05519eed52", "shasum": "" }, "require": { "doctrine/cache": "^1.4.2", "doctrine/inflector": "~1.0", "php": ">=5.3.2", - "symfony/doctrine-bridge": "~2.2|~3.0" + "symfony/doctrine-bridge": "~2.2|~3.0|~4.0" }, "require-dev": { "instaclick/coding-standard": "~1.1", @@ -737,15 +746,15 @@ "instaclick/symfony2-coding-standard": "dev-remaster", "phpunit/phpunit": "~4", "predis/predis": "~0.8", - "satooshi/php-coveralls": "~0.6.1", + "satooshi/php-coveralls": "^1.0", "squizlabs/php_codesniffer": "~1.5", - "symfony/console": "~2.2|~3.0", - "symfony/finder": "~2.2|~3.0", - "symfony/framework-bundle": "~2.2|~3.0", - "symfony/phpunit-bridge": "~2.7|~3.0", + "symfony/console": "~2.2|~3.0|~4.0", + "symfony/finder": "~2.2|~3.0|~4.0", + "symfony/framework-bundle": "~2.2|~3.0|~4.0", + "symfony/phpunit-bridge": "~2.7|~3.0|~4.0", "symfony/security-acl": "~2.3|~3.0", - "symfony/validator": "~2.2|~3.0", - "symfony/yaml": "~2.2|~3.0" + "symfony/validator": "~2.2|~3.0|~4.0", + "symfony/yaml": "~2.2|~3.0|~4.0" }, "suggest": { "symfony/security-acl": "For using this bundle to cache ACLs" @@ -753,7 +762,7 @@ "type": "symfony-bundle", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.3.x-dev" } }, "autoload": { @@ -797,32 +806,32 @@ "cache", "caching" ], - "time": "2016-01-26T17:28:51+00:00" + "time": "2017-09-29T14:39:10+00:00" }, { "name": "doctrine/doctrine-fixtures-bundle", - "version": "2.3.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineFixturesBundle.git", - "reference": "0f1a2f91b349e10f5c343f75ab71d23aace5b029" + "reference": "7bb198c044b798b54e6be37c7929339aa645c3bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/0f1a2f91b349e10f5c343f75ab71d23aace5b029", - "reference": "0f1a2f91b349e10f5c343f75ab71d23aace5b029", + "url": "https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/7bb198c044b798b54e6be37c7929339aa645c3bf", + "reference": "7bb198c044b798b54e6be37c7929339aa645c3bf", "shasum": "" }, "require": { "doctrine/data-fixtures": "~1.0", "doctrine/doctrine-bundle": "~1.0", "php": ">=5.3.2", - "symfony/doctrine-bridge": "~2.3|~3.0" + "symfony/doctrine-bridge": "~2.7|~3.0|~4.0" }, "type": "symfony-bundle", "extra": { "branch-alias": { - "dev-master": "2.2.x-dev" + "dev-master": "2.4.x-dev" } }, "autoload": { @@ -854,7 +863,7 @@ "Fixture", "persistence" ], - "time": "2015-11-04T21:23:23+00:00" + "time": "2017-09-10T23:22:01+00:00" }, { "name": "doctrine/doctrine-migrations-bundle", @@ -919,33 +928,33 @@ }, { "name": "doctrine/inflector", - "version": "v1.1.0", + "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "90b2128806bfde671b6952ab8bea493942c1fdae" + "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae", - "reference": "90b2128806bfde671b6952ab8bea493942c1fdae", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462", + "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462", "shasum": "" }, "require": { - "php": ">=5.3.2" + "php": "^7.0" }, "require-dev": { - "phpunit/phpunit": "4.*" + "phpunit/phpunit": "^6.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { - "psr-0": { - "Doctrine\\Common\\Inflector\\": "lib/" + "psr-4": { + "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" } }, "notification-url": "https://packagist.org/downloads/", @@ -982,36 +991,36 @@ "singularize", "string" ], - "time": "2015-11-06T14:35:42+00:00" + "time": "2017-07-22T12:18:28+00:00" }, { "name": "doctrine/instantiator", - "version": "1.0.5", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" + "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", + "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", "shasum": "" }, "require": { - "php": ">=5.3,<8.0-DEV" + "php": "^7.1" }, "require-dev": { "athletic/athletic": "~0.1.8", "ext-pdo": "*", "ext-phar": "*", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "~2.0" + "phpunit/phpunit": "^6.2.3", + "squizlabs/php_codesniffer": "^3.0.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { @@ -1036,7 +1045,7 @@ "constructor", "instantiate" ], - "time": "2015-06-14T21:17:01+00:00" + "time": "2017-07-22T11:58:36+00:00" }, { "name": "doctrine/lexer", @@ -1168,24 +1177,24 @@ }, { "name": "doctrine/orm", - "version": "v2.5.6", + "version": "v2.5.11", "source": { "type": "git", "url": "https://github.com/doctrine/doctrine2.git", - "reference": "e6c434196c8ef058239aaa0724b4aadb0107940b" + "reference": "249b737094f1e7cba4f0a8d19acf5be6cf3ed504" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/e6c434196c8ef058239aaa0724b4aadb0107940b", - "reference": "e6c434196c8ef058239aaa0724b4aadb0107940b", + "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/249b737094f1e7cba4f0a8d19acf5be6cf3ed504", + "reference": "249b737094f1e7cba4f0a8d19acf5be6cf3ed504", "shasum": "" }, "require": { "doctrine/cache": "~1.4", "doctrine/collections": "~1.2", - "doctrine/common": ">=2.5-dev,<2.8-dev", - "doctrine/dbal": ">=2.5-dev,<2.6-dev", - "doctrine/instantiator": "~1.0.1", + "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" @@ -1240,20 +1249,20 @@ "database", "orm" ], - "time": "2016-12-18T15:42:34+00:00" + "time": "2017-09-18T06:50:20+00:00" }, { "name": "doctrine/phpcr-bundle", - "version": "1.3.5", + "version": "1.3.9", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrinePHPCRBundle.git", - "reference": "4477935788935f66f218b919a89fac8704ce9b11" + "reference": "659238b6c7ef7b666c19a8eb0898cbeb81dca96e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrinePHPCRBundle/zipball/4477935788935f66f218b919a89fac8704ce9b11", - "reference": "4477935788935f66f218b919a89fac8704ce9b11", + "url": "https://api.github.com/repos/doctrine/DoctrinePHPCRBundle/zipball/659238b6c7ef7b666c19a8eb0898cbeb81dca96e", + "reference": "659238b6c7ef7b666c19a8eb0898cbeb81dca96e", "shasum": "" }, "require": { @@ -1318,7 +1327,7 @@ "persistence", "phpcr" ], - "time": "2016-12-19T16:49:17+00:00" + "time": "2017-07-25T06:18:31+00:00" }, { "name": "doctrine/phpcr-odm", @@ -1326,12 +1335,12 @@ "source": { "type": "git", "url": "https://github.com/doctrine/phpcr-odm.git", - "reference": "4e680b61d4130fa23db5df8cf6dc0010367311a0" + "reference": "3005b0dee6aea40e40e9d48163e07cb8f703d0fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/phpcr-odm/zipball/4e680b61d4130fa23db5df8cf6dc0010367311a0", - "reference": "4e680b61d4130fa23db5df8cf6dc0010367311a0", + "url": "https://api.github.com/repos/doctrine/phpcr-odm/zipball/3005b0dee6aea40e40e9d48163e07cb8f703d0fa", + "reference": "3005b0dee6aea40e40e9d48163e07cb8f703d0fa", "shasum": "" }, "require": { @@ -1351,13 +1360,13 @@ }, "require-dev": { "liip/rmt": "~1.2", - "phpunit/phpunit": "*", + "phpunit/phpunit": "^4.8|5.*", "symfony/phpunit-bridge": "^2.7|^3.0", "symfony/yaml": "^2.3|^3.0" }, "suggest": { - "jackalope/jackalope-doctrine-dbal": "^1.1.5", - "jackalope/jackalope-jackrabbit": "^1.0", + "jackalope/jackalope-doctrine-dbal": "^1.3.0", + "jackalope/jackalope-jackrabbit": "^1.3.0", "symfony/yaml": "^2.3|^3.0" }, "bin": [ @@ -1400,7 +1409,118 @@ "odm", "phpcr" ], - "time": "2017-02-09 12:15:02" + "time": "2017-09-11T07:18:37+00:00" + }, + { + "name": "egulias/email-validator", + "version": "2.1.2", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "bc31baa11ea2883e017f0a10d9722ef9d50eac1c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/bc31baa11ea2883e017f0a10d9722ef9d50eac1c", + "reference": "bc31baa11ea2883e017f0a10d9722ef9d50eac1c", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^1.0.1", + "php": ">= 5.5" + }, + "require-dev": { + "dominicsayers/isemail": "dev-master", + "phpunit/phpunit": "^4.8.0", + "satooshi/php-coveralls": "dev-master" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "EmailValidator" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "time": "2017-01-30T22:07:36+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": "friendsofsymfony/oauth-server-bundle", @@ -1530,16 +1650,16 @@ }, { "name": "friendsofsymfony/rest-bundle", - "version": "2.1.1", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/FriendsOfSymfony/FOSRestBundle.git", - "reference": "5a399bb434045c2b579cfe55472fff100373f4ec" + "reference": "d62a6c0f4bc699f899865d7e7bc7a4186aef9a86" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfSymfony/FOSRestBundle/zipball/5a399bb434045c2b579cfe55472fff100373f4ec", - "reference": "5a399bb434045c2b579cfe55472fff100373f4ec", + "url": "https://api.github.com/repos/FriendsOfSymfony/FOSRestBundle/zipball/d62a6c0f4bc699f899865d7e7bc7a4186aef9a86", + "reference": "d62a6c0f4bc699f899865d7e7bc7a4186aef9a86", "shasum": "" }, "require": { @@ -1569,12 +1689,13 @@ "phpoption/phpoption": "^1.1", "psr/http-message": "^1.0", "sensio/framework-extra-bundle": "^3.0.13", + "symfony/asset": "^2.7|^3.0", "symfony/browser-kit": "^2.7|^3.0", "symfony/css-selector": "^2.7|^3.0", "symfony/dependency-injection": "^2.7|^3.0", "symfony/expression-language": "~2.7|^3.0", "symfony/form": "^2.7|^3.0", - "symfony/phpunit-bridge": "~2.7|^3.0", + "symfony/phpunit-bridge": "^3.2", "symfony/security-bundle": "^2.7|^3.0", "symfony/serializer": "^2.7.11|^3.0.4", "symfony/twig-bundle": "^2.7|^3.0", @@ -1592,13 +1713,16 @@ "type": "symfony-bundle", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" } }, "autoload": { "psr-4": { "FOS\\RestBundle\\": "" - } + }, + "exclude-from-classmap": [ + "Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1623,33 +1747,35 @@ "keywords": [ "rest" ], - "time": "2016-11-23T12:09:05+00:00" + "time": "2017-04-06T12:55:03+00:00" }, { "name": "fzaninotto/faker", - "version": "v1.6.0", + "version": "v1.7.1", "source": { "type": "git", "url": "https://github.com/fzaninotto/Faker.git", - "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123" + "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/44f9a286a04b80c76a4e5fb7aad8bb539b920123", - "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123", + "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d3ed4cc37051c1ca52d22d76b437d14809fc7e0d", + "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d", "shasum": "" }, "require": { - "php": "^5.3.3|^7.0" + "php": "^5.3.3 || ^7.0" }, "require-dev": { "ext-intl": "*", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "~1.5" + "phpunit/phpunit": "^4.0 || ^5.0", + "squizlabs/php_codesniffer": "^1.5" }, "type": "library", "extra": { - "branch-alias": [] + "branch-alias": { + "dev-master": "1.8-dev" + } }, "autoload": { "psr-4": { @@ -1671,24 +1797,24 @@ "faker", "fixtures" ], - "time": "2016-04-29T12:21:54+00:00" + "time": "2017-08-15T16:48:10+00:00" }, { "name": "gedmo/doctrine-extensions", - "version": "v2.4.27", + "version": "v2.4.30", "source": { "type": "git", "url": "https://github.com/Atlantic18/DoctrineExtensions.git", - "reference": "fe152e1239f2f46287d369e43cc9fa817cc3cd36" + "reference": "5e2cc07beb0cd24345cbe02eb7afc3b23f9cd488" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/fe152e1239f2f46287d369e43cc9fa817cc3cd36", - "reference": "fe152e1239f2f46287d369e43cc9fa817cc3cd36", + "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/5e2cc07beb0cd24345cbe02eb7afc3b23f9cd488", + "reference": "5e2cc07beb0cd24345cbe02eb7afc3b23f9cd488", "shasum": "" }, "require": { - "behat/transliterator": "~1.0", + "behat/transliterator": "~1.2", "doctrine/common": "~2.4", "php": ">=5.3.2" }, @@ -1749,20 +1875,20 @@ "tree", "uploadable" ], - "time": "2017-03-22T09:48:22+00:00" + "time": "2017-07-02T09:46:37+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "6.2.3", + "version": "6.3.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006" + "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/8d6c6cc55186db87b7dc5009827429ba4e9dc006", - "reference": "8d6c6cc55186db87b7dc5009827429ba4e9dc006", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699", + "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699", "shasum": "" }, "require": { @@ -1772,9 +1898,12 @@ }, "require-dev": { "ext-curl": "*", - "phpunit/phpunit": "^4.0", + "phpunit/phpunit": "^4.0 || ^5.0", "psr/log": "^1.0" }, + "suggest": { + "psr/log": "Required for using the Log middleware" + }, "type": "library", "extra": { "branch-alias": { @@ -1811,7 +1940,7 @@ "rest", "web service" ], - "time": "2017-02-28T22:50:30+00:00" + "time": "2017-06-22T18:50:49+00:00" }, { "name": "guzzlehttp/promises", @@ -1976,23 +2105,24 @@ }, { "name": "imagine/imagine", - "version": "v0.6.3", + "version": "v0.7.1", "source": { "type": "git", "url": "https://github.com/avalanche123/Imagine.git", - "reference": "149041d2a1b517107bfe270ca2b1a17aa341715d" + "reference": "a9a702a946073cbca166718f1b02a1e72d742daa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/149041d2a1b517107bfe270ca2b1a17aa341715d", - "reference": "149041d2a1b517107bfe270ca2b1a17aa341715d", + "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/a9a702a946073cbca166718f1b02a1e72d742daa", + "reference": "a9a702a946073cbca166718f1b02a1e72d742daa", "shasum": "" }, "require": { "php": ">=5.3.2" }, "require-dev": { - "sami/sami": "dev-master" + "sami/sami": "^3.3", + "symfony/phpunit-bridge": "^3.2" }, "suggest": { "ext-gd": "to use the GD implementation", @@ -2029,7 +2159,7 @@ "image manipulation", "image processing" ], - "time": "2015-09-19T16:54:05+00:00" + "time": "2017-05-16T10:31:22+00:00" }, { "name": "incenteev/composer-parameter-handler", @@ -2084,16 +2214,16 @@ }, { "name": "jackalope/jackalope", - "version": "1.3.0", + "version": "1.3.3", "source": { "type": "git", "url": "https://github.com/jackalope/jackalope.git", - "reference": "36fab3697478bd9f7f6554cb5ebc53cd1d36b24f" + "reference": "0e92e4c9018e32ba147411b4127f20ea6c35113f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jackalope/jackalope/zipball/36fab3697478bd9f7f6554cb5ebc53cd1d36b24f", - "reference": "36fab3697478bd9f7f6554cb5ebc53cd1d36b24f", + "url": "https://api.github.com/repos/jackalope/jackalope/zipball/0e92e4c9018e32ba147411b4127f20ea6c35113f", + "reference": "0e92e4c9018e32ba147411b4127f20ea6c35113f", "shasum": "" }, "require": { @@ -2136,7 +2266,7 @@ "keywords": [ "phpcr" ], - "time": "2017-04-07T09:37:04+00:00" + "time": "2017-04-18T20:09:58+00:00" }, { "name": "jackalope/jackalope-doctrine-dbal", @@ -2402,16 +2532,16 @@ }, { "name": "jms/serializer", - "version": "1.6.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://github.com/schmittjoh/serializer.git", - "reference": "5e9008cbb0bac2986979d905a87ae48efcf578c4" + "reference": "f4683f41ebf21e60667447bb49939bee35807c3c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/5e9008cbb0bac2986979d905a87ae48efcf578c4", - "reference": "5e9008cbb0bac2986979d905a87ae48efcf578c4", + "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/f4683f41ebf21e60667447bb49939bee35807c3c", + "reference": "f4683f41ebf21e60667447bb49939bee35807c3c", "shasum": "" }, "require": { @@ -2450,7 +2580,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.9-dev" } }, "autoload": { @@ -2460,9 +2590,13 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache2" + "Apache-2.0" ], "authors": [ + { + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" + }, { "name": "Johannes M. Schmitt", "email": "schmittjoh@gmail.com" @@ -2477,37 +2611,36 @@ "serialization", "xml" ], - "time": "2017-03-24T13:11:23+00:00" + "time": "2017-09-28T15:17:28+00:00" }, { "name": "jms/serializer-bundle", - "version": "1.4.0", - "target-dir": "JMS/SerializerBundle", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/schmittjoh/JMSSerializerBundle.git", - "reference": "fdd73dbc8642940084deda2a96fa5db62d0f2384" + "reference": "dd40bfcb58ce01a950393f258d3d02a8dc4f4127" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/JMSSerializerBundle/zipball/fdd73dbc8642940084deda2a96fa5db62d0f2384", - "reference": "fdd73dbc8642940084deda2a96fa5db62d0f2384", + "url": "https://api.github.com/repos/schmittjoh/JMSSerializerBundle/zipball/dd40bfcb58ce01a950393f258d3d02a8dc4f4127", + "reference": "dd40bfcb58ce01a950393f258d3d02a8dc4f4127", "shasum": "" }, "require": { - "jms/serializer": "^1.6", - "php": ">=5.4.0", + "jms/serializer": "^1.9", + "php": "^5.4|^7.0", "phpoption/phpoption": "^1.1.0", - "symfony/framework-bundle": "~2.3|~3.0" + "symfony/framework-bundle": "~2.3|~3.0|~4.0" }, "require-dev": { "doctrine/doctrine-bundle": "*", "doctrine/orm": "*", - "phpunit/phpunit": "^4.2|^5.0", + "phpunit/phpunit": "^4.8.35|^5.4.3|^6.0", "symfony/browser-kit": "*", "symfony/class-loader": "*", "symfony/css-selector": "*", - "symfony/expression-language": "~2.6|~3.0", + "symfony/expression-language": "~2.6|~3.0|~4.0", "symfony/finder": "*", "symfony/form": "*", "symfony/process": "*", @@ -2522,19 +2655,26 @@ "type": "symfony-bundle", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "2.x-dev" } }, "autoload": { - "psr-0": { - "JMS\\SerializerBundle": "" - } + "psr-4": { + "JMS\\SerializerBundle\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache2" + "Apache-2.0" ], "authors": [ + { + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" + }, { "name": "Johannes M. Schmitt", "email": "schmittjoh@gmail.com" @@ -2549,60 +2689,62 @@ "serialization", "xml" ], - "time": "2017-04-10T12:31:39+00:00" + "time": "2017-09-29T08:48:26+00:00" }, { "name": "knplabs/gaufrette", - "version": "v0.3.1", + "version": "v0.4.0", "source": { "type": "git", "url": "https://github.com/KnpLabs/Gaufrette.git", - "reference": "771ad16f4b2e7f9d35f44b201956e83c6fbf5dde" + "reference": "7cd2806ba1c2ea11cd125350363cd56b821c9e08" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/KnpLabs/Gaufrette/zipball/771ad16f4b2e7f9d35f44b201956e83c6fbf5dde", - "reference": "771ad16f4b2e7f9d35f44b201956e83c6fbf5dde", + "url": "https://api.github.com/repos/KnpLabs/Gaufrette/zipball/7cd2806ba1c2ea11cd125350363cd56b821c9e08", + "reference": "7cd2806ba1c2ea11cd125350363cd56b821c9e08", "shasum": "" }, "require": { - "php": ">=5.4" + "php": ">=5.6" }, "conflict": { "microsoft/windowsazure": "<0.4.3" }, "require-dev": { + "akeneo/phpspec-skip-example-extension": "~1.2", "amazonwebservices/aws-sdk-for-php": "1.5.*", - "aws/aws-sdk-php": "^2.4.12", + "aws/aws-sdk-php": "^2.4.12||~3", "doctrine/dbal": ">=2.3", "dropbox-php/dropbox-php": "*", "google/apiclient": "~1.1.3", - "herzult/php-ssh": "*", "league/flysystem": "~1.0", + "microsoft/azure-storage": "~0.15.0", + "microsoft/windowsazure": "~0.4", "mikey179/vfsstream": "~1.2.0", + "mongodb/mongodb": "~1.1.4", "phpseclib/phpseclib": "^2.0", "phpspec/phpspec": "~2.4", "phpunit/phpunit": "3.7.*", "rackspace/php-opencloud": "^1.9.2" }, "suggest": { - "amazonwebservices/aws-sdk-for-php": "to use the legacy Amazon S3 adapters", - "aws/aws-sdk-php": "to use the Amazon S3 adapter", - "doctrine/dbal": "to use the Doctrine DBAL adapter", - "dropbox-php/dropbox-php": "to use the Dropbox adapter", - "ext-apc": "to use the APC adapter", "ext-curl": "*", "ext-fileinfo": "This extension is used to automatically detect the content-type of a file in the AwsS3, OpenCloud, AzureBlogStorage and GoogleCloudStorage adapters", "ext-mbstring": "*", - "ext-mongo": "*", - "ext-zip": "to use the Zip adapter", + "gaufrette/aws-s3-adapter": "to use AwsS3 adapter (supports SDK v2 and v3)", + "gaufrette/azure-blob-storage-adapter": "to use AzureBlobStorage adapter", + "gaufrette/doctrine-dbal-adapter": "to use DBAL adapter", + "gaufrette/flysystem-adapter": "to use Flysystem adapter", + "gaufrette/ftp-adapter": "to use Ftp adapter", + "gaufrette/gridfs-adapter": "to use GridFS adapter", + "gaufrette/in-memory-adapter": "to use InMemory adapter", + "gaufrette/local-adapter": "to use Local adapter", + "gaufrette/opencloud-adapter": "to use Opencloud adapter", + "gaufrette/phpseclib-sftp-adapter": "to use PhpseclibSftp adapter", + "gaufrette/zip-adapter": "to use Zip adapter", "google/apiclient": "to use GoogleCloudStorage adapter", - "herzult/php-ssh": "to use SFtp adapter", - "knplabs/knp-gaufrette-bundle": "to use with Symfony2", - "league/flysystem": "to use Flysystem adapters", - "microsoft/windowsazure": "to use Microsoft Azure Blob Storage adapter", - "phpseclib/phpseclib": "to use PhpseclibSftp adapter", - "rackspace/php-opencloud": "to use Opencloud adapter" + "knplabs/knp-gaufrette-bundle": "to use with Symfony2" }, "type": "library", "extra": { @@ -2637,7 +2779,7 @@ "filesystem", "media" ], - "time": "2017-03-20T01:23:34+00:00" + "time": "2017-06-17T10:37:47+00:00" }, { "name": "knplabs/knp-gaufrette-bundle", @@ -2890,20 +3032,20 @@ }, { "name": "liip/imagine-bundle", - "version": "1.7.4", + "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/liip/LiipImagineBundle.git", - "reference": "105dd9c3446e3eb44e33161d4e636a3abafb6d7f" + "reference": "3084c77e984ec669e0d645250a3cb1077d8b92f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/liip/LiipImagineBundle/zipball/105dd9c3446e3eb44e33161d4e636a3abafb6d7f", - "reference": "105dd9c3446e3eb44e33161d4e636a3abafb6d7f", + "url": "https://api.github.com/repos/liip/LiipImagineBundle/zipball/3084c77e984ec669e0d645250a3cb1077d8b92f6", + "reference": "3084c77e984ec669e0d645250a3cb1077d8b92f6", "shasum": "" }, "require": { - "imagine/imagine": "^0.6.3,<0.7", + "imagine/imagine": "^0.6.3|^0.7.0,<0.8", "php": "^5.3.9|^7.0", "symfony/asset": "~2.3|~3.0", "symfony/filesystem": "~2.3|~3.0", @@ -2920,7 +3062,7 @@ "doctrine/cache": "~1.1", "doctrine/orm": "~2.3", "ext-gd": "*", - "friendsofphp/php-cs-fixer": "~2.0", + "friendsofphp/php-cs-fixer": "~1.0", "phpunit/phpunit": "~4.3|~5.0", "psr/log": "~1.0", "satooshi/php-coveralls": "~1.0", @@ -2939,6 +3081,7 @@ "amazonwebservices/aws-sdk-for-php": "required to use AWS version 1 cache resolver", "aws/aws-sdk-php": "required to use AWS version 2/3 cache resolver", "doctrine/mongodb-odm": "required to use mongodb-backed doctrine components", + "enqueue/enqueue-bundle": "add if you like to process images in background", "ext-exif": "required to read EXIF metadata from images", "ext-gd": "required to use gd driver", "ext-gmagick": "required to use gmagick driver", @@ -2986,19 +3129,19 @@ "symfony", "transformation" ], - "time": "2017-03-02T20:18:55+00:00" + "time": "2017-09-09T03:53:30+00:00" }, { "name": "mockery/mockery", "version": "0.9.9", "source": { "type": "git", - "url": "https://github.com/padraic/mockery.git", + "url": "https://github.com/mockery/mockery.git", "reference": "6fdb61243844dc924071d3404bb23994ea0b6856" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/padraic/mockery/zipball/6fdb61243844dc924071d3404bb23994ea0b6856", + "url": "https://api.github.com/repos/mockery/mockery/zipball/6fdb61243844dc924071d3404bb23994ea0b6856", "reference": "6fdb61243844dc924071d3404bb23994ea0b6856", "shasum": "" }, @@ -3055,16 +3198,16 @@ }, { "name": "monolog/monolog", - "version": "1.22.1", + "version": "1.23.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0" + "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1e044bc4b34e91743943479f1be7a1d5eb93add0", - "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4", + "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4", "shasum": "" }, "require": { @@ -3085,7 +3228,7 @@ "phpunit/phpunit-mock-objects": "2.3.0", "ruflin/elastica": ">=0.90 <3.0", "sentry/sentry": "^0.13", - "swiftmailer/swiftmailer": "~5.3" + "swiftmailer/swiftmailer": "^5.3|^6.0" }, "suggest": { "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", @@ -3129,42 +3272,97 @@ "logging", "psr-3" ], - "time": "2017-03-13T07:08:03+00:00" + "time": "2017-06-19T01:22:40+00:00" + }, + { + "name": "ocramius/package-versions", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/Ocramius/PackageVersions.git", + "reference": "72b226d2957e9e6a9ed09aeaa29cabd840d1a3b7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/72b226d2957e9e6a9ed09aeaa29cabd840d1a3b7", + "reference": "72b226d2957e9e6a9ed09aeaa29cabd840d1a3b7", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0", + "php": "~7.0" + }, + "require-dev": { + "composer/composer": "^1.3", + "ext-zip": "*", + "humbug/humbug": "dev-master", + "phpunit/phpunit": "^5.7.5" + }, + "type": "composer-plugin", + "extra": { + "class": "PackageVersions\\Installer", + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "PackageVersions\\": "src/PackageVersions" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", + "time": "2017-09-06T15:24:43+00:00" }, { "name": "ocramius/proxy-manager", - "version": "1.0.2", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/Ocramius/ProxyManager.git", - "reference": "57e9272ec0e8deccf09421596e0e2252df440e11" + "reference": "e18ac876b2e4819c76349de8f78ccc8ef1554cd7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/57e9272ec0e8deccf09421596e0e2252df440e11", - "reference": "57e9272ec0e8deccf09421596e0e2252df440e11", + "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/e18ac876b2e4819c76349de8f78ccc8ef1554cd7", + "reference": "e18ac876b2e4819c76349de8f78ccc8ef1554cd7", "shasum": "" }, "require": { - "php": ">=5.3.3", - "zendframework/zend-code": ">2.2.5,<3.0" + "ocramius/package-versions": "^1.1.1", + "php": "^7.1.0", + "zendframework/zend-code": "^3.1.0" }, "require-dev": { + "couscous/couscous": "^1.5.2", "ext-phar": "*", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "1.5.*" + "humbug/humbug": "dev-master@DEV", + "nikic/php-parser": "^3.0.4", + "phpbench/phpbench": "^0.12.2", + "phpstan/phpstan": "^0.6.4", + "phpunit/phpunit": "^5.6.4", + "phpunit/phpunit-mock-objects": "^3.4.1", + "squizlabs/php_codesniffer": "^2.7.0" }, "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": { @@ -3180,7 +3378,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", @@ -3192,7 +3390,7 @@ "proxy pattern", "service proxies" ], - "time": "2015-08-09T04:28:19+00:00" + "time": "2017-05-04T11:12:50+00:00" }, { "name": "pagerfanta/pagerfanta", @@ -3265,16 +3463,16 @@ }, { "name": "paragonie/random_compat", - "version": "v2.0.10", + "version": "v2.0.11", "source": { "type": "git", "url": "https://github.com/paragonie/random_compat.git", - "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d" + "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/634bae8e911eefa89c1abfbf1b66da679ac8f54d", - "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8", + "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8", "shasum": "" }, "require": { @@ -3309,7 +3507,7 @@ "pseudorandom", "random" ], - "time": "2017-03-13T16:27:32+00:00" + "time": "2017-09-27T21:40:39+00:00" }, { "name": "payum/iso4217", @@ -3377,16 +3575,16 @@ }, { "name": "payum/payum", - "version": "1.4.0", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/Payum/Payum.git", - "reference": "3e120150602237516b09e79a1f22272e1256007e" + "reference": "f4d690bc83cd86352ff6d9f6d4dab0f9ae700aeb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Payum/Payum/zipball/3e120150602237516b09e79a1f22272e1256007e", - "reference": "3e120150602237516b09e79a1f22272e1256007e", + "url": "https://api.github.com/repos/Payum/Payum/zipball/f4d690bc83cd86352ff6d9f6d4dab0f9ae700aeb", + "reference": "f4d690bc83cd86352ff6d9f6d4dab0f9ae700aeb", "shasum": "" }, "require": { @@ -3441,13 +3639,13 @@ "zendframework/zend-db": "~2" }, "suggest": { - "authorizenet/authorizenet": "~1.8 If you want to use Authorizenet.NET install authorizenet/authorizenet:~1.8 library", + "authorizenet/authorizenet": "^1 If you want to use Authorizenet.NET install authorizenet/authorizenet:~1.8 library", "defuse/php-encryption": "^2 If you want to encrypt gateways credentials in database", - "fp/klarna-invoice": "0.1.* If you want to use Klarna Invoice install fp/klarna-invoice:0.1.* library", - "klarna/checkout": "~1.0|~2.0 If you want to use Klarna Checkout install klarna/checkout:~1|~2.0 library", - "paypal/rest-api-sdk-php": "0.5.* If you want to use PayPal REST API install paypal/rest-api-sdk-php:0.5.* library", - "sofort/sofortlib-php": "~3.0 If you want to use Sofort install sofort/sofortlib-php:^3.0 library", - "stripe/stripe-php": "~2.0|~3.0 If you want to use Stripe install stripe/stripe-php:~2.0|~3.0 library" + "fp/klarna-invoice": "^0.1 If you want to use Klarna Invoice install fp/klarna-invoice:0.1.* library", + "klarna/checkout": "^1|^2 If you want to use Klarna Checkout install klarna/checkout:~1|~2.0 library", + "paypal/rest-api-sdk-php": "^0.5 If you want to use PayPal REST API install paypal/rest-api-sdk-php:0.5.* library", + "sofort/sofortlib-php": "^3 If you want to use Sofort install sofort/sofortlib-php:^3.0 library", + "stripe/stripe-php": "^3|^4 If you want to use Stripe install stripe/stripe-php:~2.0|~3.0 library" }, "type": "library", "extra": { @@ -3500,20 +3698,20 @@ "stripe.js", "withdrawal" ], - "time": "2017-03-24T08:36:36+00:00" + "time": "2017-09-01T08:23:52+00:00" }, { "name": "payum/payum-bundle", - "version": "2.2.0", + "version": "2.2.1", "source": { "type": "git", "url": "https://github.com/Payum/PayumBundle.git", - "reference": "f016ab43c850414e5eaa23d74e7527c92d706ac9" + "reference": "fd930cb9516c8a5f19b4eeae35c8e37eea77ce11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Payum/PayumBundle/zipball/f016ab43c850414e5eaa23d74e7527c92d706ac9", - "reference": "f016ab43c850414e5eaa23d74e7527c92d706ac9", + "url": "https://api.github.com/repos/Payum/PayumBundle/zipball/fd930cb9516c8a5f19b4eeae35c8e37eea77ce11", + "reference": "fd930cb9516c8a5f19b4eeae35c8e37eea77ce11", "shasum": "" }, "require": { @@ -3602,7 +3800,7 @@ "stripe.js", "symfony" ], - "time": "2017-03-28T11:02:38+00:00" + "time": "2017-08-02T07:32:51+00:00" }, { "name": "php-http/guzzle6-adapter", @@ -3722,16 +3920,16 @@ }, { "name": "php-http/message", - "version": "1.5.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://github.com/php-http/message.git", - "reference": "13df8c48f40ca7925303aa336f19be4b80984f01" + "reference": "2edd63bae5f52f79363c5f18904b05ce3a4b7253" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/message/zipball/13df8c48f40ca7925303aa336f19be4b80984f01", - "reference": "13df8c48f40ca7925303aa336f19be4b80984f01", + "url": "https://api.github.com/repos/php-http/message/zipball/2edd63bae5f52f79363c5f18904b05ce3a4b7253", + "reference": "2edd63bae5f52f79363c5f18904b05ce3a4b7253", "shasum": "" }, "require": { @@ -3740,6 +3938,9 @@ "php-http/message-factory": "^1.0.2", "psr/http-message": "^1.0" }, + "provide": { + "php-http/message-factory-implementation": "1.0" + }, "require-dev": { "akeneo/phpspec-skip-example-extension": "^1.0", "coduo/phpspec-data-provider-extension": "^1.0", @@ -3787,7 +3988,7 @@ "message", "psr-7" ], - "time": "2017-02-14T08:58:37+00:00" + "time": "2017-07-05T06:40:53+00:00" }, { "name": "php-http/message-factory", @@ -4218,18 +4419,166 @@ ], "time": "2016-08-06T20:24:11+00:00" }, + { + "name": "psr/container", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "time": "2017-02-14T16:28:37+00:00" + }, { "name": "psr/http-message", "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "time": "2016-08-06T14:39:51+00:00" + }, + { + "name": "psr/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.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", "shasum": "" }, "require": { @@ -4243,7 +4592,7 @@ }, "autoload": { "psr-4": { - "Psr\\Http\\Message\\": "src/" + "Psr\\Log\\": "Psr/Log/" } }, "notification-url": "https://packagist.org/downloads/", @@ -4256,30 +4605,27 @@ "homepage": "http://www.php-fig.org/" } ], - "description": "Common interface for HTTP messages", - "homepage": "https://github.com/php-fig/http-message", + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", "keywords": [ - "http", - "http-message", + "log", "psr", - "psr-7", - "request", - "response" + "psr-3" ], - "time": "2016-08-06T14:39:51+00:00" + "time": "2016-10-10T12:19:37+00:00" }, { - "name": "psr/log", - "version": "1.0.2", + "name": "psr/simple-cache", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24", + "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24", "shasum": "" }, "require": { @@ -4293,7 +4639,7 @@ }, "autoload": { "psr-4": { - "Psr\\Log\\": "Psr/Log/" + "Psr\\SimpleCache\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -4306,27 +4652,28 @@ "homepage": "http://www.php-fig.org/" } ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", + "description": "Common interfaces for simple caching", "keywords": [ - "log", + "cache", + "caching", "psr", - "psr-3" + "psr-16", + "simple-cache" ], - "time": "2016-10-10T12:19:37+00:00" + "time": "2017-01-02T13:31:39+00:00" }, { "name": "sensio/distribution-bundle", - "version": "v5.0.18", + "version": "v5.0.21", "source": { "type": "git", "url": "https://github.com/sensiolabs/SensioDistributionBundle.git", - "reference": "17846680901003d26d823c2e3ac9228702837916" + "reference": "eb6266b3b472e4002538610b28a0a04bcf94891a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/17846680901003d26d823c2e3ac9228702837916", - "reference": "17846680901003d26d823c2e3ac9228702837916", + "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/eb6266b3b472e4002538610b28a0a04bcf94891a", + "reference": "eb6266b3b472e4002538610b28a0a04bcf94891a", "shasum": "" }, "require": { @@ -4365,20 +4712,20 @@ "configuration", "distribution" ], - "time": "2017-01-10T14:58:45+00:00" + "time": "2017-08-25T16:55:44+00:00" }, { "name": "sensiolabs/security-checker", - "version": "v4.0.4", + "version": "v4.1.5", "source": { "type": "git", "url": "https://github.com/sensiolabs/security-checker.git", - "reference": "9e69eddf3bc49d1ee5c7908564da3141796d4bbc" + "reference": "55553c3ad6ae2121c1b1475d4c880d71b31b8f68" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/9e69eddf3bc49d1ee5c7908564da3141796d4bbc", - "reference": "9e69eddf3bc49d1ee5c7908564da3141796d4bbc", + "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/55553c3ad6ae2121c1b1475d4c880d71b31b8f68", + "reference": "55553c3ad6ae2121c1b1475d4c880d71b31b8f68", "shasum": "" }, "require": { @@ -4391,7 +4738,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "4.1-dev" } }, "autoload": { @@ -4410,37 +4757,42 @@ } ], "description": "A security checker for your composer.lock", - "time": "2017-03-31T14:50:32+00:00" + "time": "2017-08-22T22:18:16+00:00" }, { "name": "sonata-project/block-bundle", - "version": "3.3.2", + "version": "3.4.0", "source": { "type": "git", "url": "https://github.com/sonata-project/SonataBlockBundle.git", - "reference": "7cdf6e5620696cdd962eb4c404beeedaf20c3570" + "reference": "052f1eb4b84951eb6c25acaf52787346845fc6d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sonata-project/SonataBlockBundle/zipball/7cdf6e5620696cdd962eb4c404beeedaf20c3570", - "reference": "7cdf6e5620696cdd962eb4c404beeedaf20c3570", + "url": "https://api.github.com/repos/sonata-project/SonataBlockBundle/zipball/052f1eb4b84951eb6c25acaf52787346845fc6d3", + "reference": "052f1eb4b84951eb6c25acaf52787346845fc6d3", "shasum": "" }, "require": { "doctrine/common": "^2.3", "php": "^5.3 || ^7.0", "sonata-project/cache": "^1.0", - "sonata-project/core-bundle": "^3.0", + "sonata-project/core-bundle": "^3.4", "symfony/form": "^2.3 || ^3.0", "symfony/http-kernel": "^2.3 || ^3.0" }, + "conflict": { + "jms/di-extra-bundle": "<1.7.0" + }, "require-dev": { + "jms/di-extra-bundle": "^1.7", "knplabs/knp-menu-bundle": "^2.0", "sllh/php-cs-fixer-styleci-bridge": "^2.0", - "sonata-project/admin-bundle": "^3.0", + "sonata-project/admin-bundle": "^3.22", "symfony/phpunit-bridge": "^2.7 || ^3.0" }, "suggest": { + "jms/di-extra-bundle": "Annotations for Block definition", "knplabs/knp-menu-bundle": "^2.0", "sonata-project/cache-bundle": "^3.0" }, @@ -4482,7 +4834,7 @@ "block", "sonata" ], - "time": "2017-03-23T12:54:15+00:00" + "time": "2017-09-19T15:14:45+00:00" }, { "name": "sonata-project/cache", @@ -4549,16 +4901,16 @@ }, { "name": "sonata-project/core-bundle", - "version": "3.3.0", + "version": "3.5.1", "source": { "type": "git", "url": "https://github.com/sonata-project/SonataCoreBundle.git", - "reference": "d8f17c0edf01f2f2a253d4d74f9138680b811218" + "reference": "a8cc1731d832e6bde3fdad2334cfd158d1d45fbb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sonata-project/SonataCoreBundle/zipball/d8f17c0edf01f2f2a253d4d74f9138680b811218", - "reference": "d8f17c0edf01f2f2a253d4d74f9138680b811218", + "url": "https://api.github.com/repos/sonata-project/SonataCoreBundle/zipball/a8cc1731d832e6bde3fdad2334cfd158d1d45fbb", + "reference": "a8cc1731d832e6bde3fdad2334cfd158d1d45fbb", "shasum": "" }, "require": { @@ -4567,6 +4919,7 @@ "sonata-project/datagrid-bundle": "^2.0", "symfony/config": "^2.3 || ^3.0", "symfony/form": "^2.3.5 || ^3.0", + "symfony/framework-bundle": "^2.3 || ^3.0", "symfony/http-foundation": "^2.3 || ^3.0", "symfony/property-access": "^2.3 || ^3.0", "symfony/security": "^2.3 || ^3.0", @@ -4623,7 +4976,7 @@ "keywords": [ "sonata" ], - "time": "2017-03-23T12:43:08+00:00" + "time": "2017-09-20T14:14:38+00:00" }, { "name": "sonata-project/datagrid-bundle", @@ -4688,16 +5041,16 @@ }, { "name": "sonata-project/intl-bundle", - "version": "2.3.0", + "version": "2.3.2", "source": { "type": "git", "url": "https://github.com/sonata-project/SonataIntlBundle.git", - "reference": "2ffb2444599cf5d9fff6d32ac0ba9e11e9b11225" + "reference": "dedaf0752b36742c1f782d4d3953815a270c83f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sonata-project/SonataIntlBundle/zipball/2ffb2444599cf5d9fff6d32ac0ba9e11e9b11225", - "reference": "2ffb2444599cf5d9fff6d32ac0ba9e11e9b11225", + "url": "https://api.github.com/repos/sonata-project/SonataIntlBundle/zipball/dedaf0752b36742c1f782d4d3953815a270c83f8", + "reference": "dedaf0752b36742c1f782d4d3953815a270c83f8", "shasum": "" }, "require": { @@ -4709,10 +5062,10 @@ "twig/twig": "^1.12 || ^2.0" }, "conflict": { - "sonata-project/user-bundle": "<2.0 || >=4.0" + "sonata-project/user-bundle": "<2.0 || >=5.0" }, "require-dev": { - "matthiasnoback/symfony-dependency-injection-test": "^0.7.6", + "matthiasnoback/symfony-dependency-injection-test": "^0.7.6 || ^1.0", "sllh/php-cs-fixer-styleci-bridge": "^2.0", "symfony/phpunit-bridge": "^2.7 || ^3.0", "symfony/security": "^2.2 || ^3.0", @@ -4758,7 +5111,7 @@ "sonata", "time" ], - "time": "2017-01-17T11:04:35+00:00" + "time": "2017-09-14T10:52:04+00:00" }, { "name": "stof/doctrine-extensions-bundle", @@ -4823,29 +5176,30 @@ }, { "name": "swiftmailer/swiftmailer", - "version": "v5.4.6", + "version": "v6.0.2", "source": { "type": "git", "url": "https://github.com/swiftmailer/swiftmailer.git", - "reference": "81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e" + "reference": "412333372fb6c8ffb65496a2bbd7321af75733fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e", - "reference": "81fdccfaf8bdc5d5d7a1ef6bb3a61bbb1a6c4a3e", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/412333372fb6c8ffb65496a2bbd7321af75733fc", + "reference": "412333372fb6c8ffb65496a2bbd7321af75733fc", "shasum": "" }, "require": { - "php": ">=5.3.3" + "egulias/email-validator": "~2.0", + "php": ">=7.0.0" }, "require-dev": { "mockery/mockery": "~0.9.1", - "symfony/phpunit-bridge": "~3.2" + "symfony/phpunit-bridge": "~3.3@dev" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.4-dev" + "dev-master": "6.0-dev" } }, "autoload": { @@ -4867,26 +5221,65 @@ } ], "description": "Swiftmailer, free feature-rich PHP mailer", - "homepage": "http://swiftmailer.org", + "homepage": "http://swiftmailer.symfony.com", "keywords": [ "email", "mail", "mailer" ], - "time": "2017-02-13T07:52:53+00:00" + "time": "2017-09-30T22:39:41+00:00" + }, + { + "name": "sylius-labs/association-hydrator", + "version": "v1.0.0", + "source": { + "type": "git", + "url": "https://github.com/SyliusLabs/AssociationHydrator.git", + "reference": "7301fd7aea6444f776af99a37902c8c78a0c64bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/SyliusLabs/AssociationHydrator/zipball/7301fd7aea6444f776af99a37902c8c78a0c64bc", + "reference": "7301fd7aea6444f776af99a37902c8c78a0c64bc", + "shasum": "" + }, + "require": { + "doctrine/orm": "^2.4", + "php": "^7.1", + "symfony/property-access": "^3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "SyliusLabs\\AssociationHydrator\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kamil Kokot", + "email": "kamil@kokot.me", + "homepage": "http://kamil.kokot.me" + } + ], + "description": "Doctrine ORM hydration performance optimization made easier.", + "time": "2017-09-11T15:44:45+00:00" }, { "name": "sylius/sylius", - "version": "v1.0.0-beta.2", + "version": "v1.0.0", "source": { "type": "git", "url": "https://github.com/Sylius/Sylius.git", - "reference": "02ccef7f80b5c2cc5bcd9c47f07553e365854c6a" + "reference": "b5920f580e7ffddacdd507161f3cb94a1e7f4ed2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Sylius/Sylius/zipball/02ccef7f80b5c2cc5bcd9c47f07553e365854c6a", - "reference": "02ccef7f80b5c2cc5bcd9c47f07553e365854c6a", + "url": "https://api.github.com/repos/Sylius/Sylius/zipball/b5920f580e7ffddacdd507161f3cb94a1e7f4ed2", + "reference": "b5920f580e7ffddacdd507161f3cb94a1e7f4ed2", "shasum": "" }, "require": { @@ -4905,29 +5298,30 @@ "fzaninotto/faker": "^1.6", "gedmo/doctrine-extensions": "^2.4.12", "incenteev/composer-parameter-handler": "^2.1", - "jms/serializer-bundle": "^1.1", + "jms/serializer-bundle": "^2.0", "knplabs/knp-gaufrette-bundle": "^0.3", "knplabs/knp-menu-bundle": "^2.1", - "liip/imagine-bundle": "^1.6", - "ocramius/proxy-manager": "^1.0", + "liip/imagine-bundle": "^1.9.1", + "ocramius/proxy-manager": "^2.1", "payum/payum": "^1.4", "payum/payum-bundle": "^2.2", - "php": "^5.6|^7.0", + "php": "^7.1", "php-http/guzzle6-adapter": "^1.1", "polishsymfonycommunity/symfony-mocker-container": "^1.0", - "sensio/distribution-bundle": "^5.0", + "sensio/distribution-bundle": "^5.0.21", "sonata-project/block-bundle": "^3.3", "sonata-project/intl-bundle": "^2.2", "stof/doctrine-extensions-bundle": "^1.2", - "swiftmailer/swiftmailer": "^5.4", + "swiftmailer/swiftmailer": "^6.0", + "sylius-labs/association-hydrator": "^1.0", "symfony/monolog-bundle": "^3.0", "symfony/polyfill-iconv": "^1.3", "symfony/polyfill-intl-icu": "^1.3", "symfony/polyfill-mbstring": "^1.3", - "symfony/swiftmailer-bundle": "^2.4", - "symfony/symfony": "^3.2", + "symfony/swiftmailer-bundle": "^3.0", + "symfony/symfony": "^3.3.8", "twig/extensions": "^1.4", - "twig/twig": "^1.28", + "twig/twig": "^2.0", "webmozart/assert": "^1.1", "white-october/pagerfanta-bundle": "^1.0.8", "willdurand/hateoas-bundle": "^1.2", @@ -4979,19 +5373,17 @@ "sylius/user-bundle": "self.version" }, "require-dev": { - "akeneo/phpspec-skip-example-extension": "^2.0", + "akeneo/phpspec-skip-example-extension": "^3.0", "behat/behat": "^3.2", "behat/mink": "^1.7", "behat/mink-browserkit-driver": "^1.3", "behat/mink-extension": "^2.2", "behat/mink-selenium2-driver": "^1.3", - "dama/doctrine-test-bundle": "^1.0", - "friends-of-behat/context-service-extension": "^0.3", - "friends-of-behat/cross-container-extension": "^0.2", - "friends-of-behat/performance-extension": "^1.0", - "friends-of-behat/service-container-extension": "^0.3", - "friends-of-behat/symfony-extension": "^0.2.1", - "friends-of-behat/variadic-extension": "^0.1", + "friends-of-behat/context-service-extension": "^1.0", + "friends-of-behat/cross-container-extension": "^1.0", + "friends-of-behat/service-container-extension": "^1.0", + "friends-of-behat/symfony-extension": "^1.0", + "friends-of-behat/variadic-extension": "^1.0", "hwi/oauth-bundle": "^0.5", "lakion/api-test-case": "^1.0", "lakion/mink-debug-extension": "^1.2.3", @@ -5000,10 +5392,11 @@ "matthiasnoback/symfony-dependency-injection-test": "^1.0", "mikey179/vfsstream": "^1.6", "pamil/prophecy-common": "^0.1", - "phpspec/phpspec": "^3.2", + "phpspec/phpspec": "^4.0", "phpunit/phpunit": "^5.6", "se/selenium-server-standalone": "^2.52", - "stripe/stripe-php": "^4.1" + "stripe/stripe-php": "^4.1", + "symplify/easy-coding-standard": "^2.3" }, "suggest": { "ext-iconv": "For better performance than using Symfony Polyfill Component", @@ -5055,7 +5448,7 @@ ], "description": "E-Commerce platform for PHP, based on Symfony framework.", "homepage": "http://sylius.org", - "time": "2017-04-11T12:49:20+00:00" + "time": "2017-09-13T10:31:29+00:00" }, { "name": "symfony-cmf/block-bundle", @@ -5253,12 +5646,12 @@ "source": { "type": "git", "url": "https://github.com/symfony-cmf/media-bundle.git", - "reference": "6c5985db7e4e054ddbdc145eff21b85c4fb48233" + "reference": "4353d27421c7635d2e0857ebc7b8a1fa7c54000d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony-cmf/media-bundle/zipball/6c5985db7e4e054ddbdc145eff21b85c4fb48233", - "reference": "6c5985db7e4e054ddbdc145eff21b85c4fb48233", + "url": "https://api.github.com/repos/symfony-cmf/media-bundle/zipball/4353d27421c7635d2e0857ebc7b8a1fa7c54000d", + "reference": "4353d27421c7635d2e0857ebc7b8a1fa7c54000d", "shasum": "" }, "require": { @@ -5267,11 +5660,11 @@ }, "require-dev": { "doctrine/annotations": "^1.1.2", - "doctrine/phpcr-odm": "^1.3", + "doctrine/phpcr-odm": "^1.4|^2.0", "jms/serializer-bundle": "^0.12|^1.0", "liip/imagine-bundle": "^1.0.4", "mikey179/vfsstream": "^1.2", - "symfony-cmf/testing": "^1.3", + "symfony-cmf/testing": "^2.0", "twig/twig": "^1.12|^2.0" }, "suggest": { @@ -5285,12 +5678,12 @@ "type": "symfony-bundle", "extra": { "branch-alias": { - "dev-master": "1.3-dev" + "dev-master": "2.0-dev" } }, "autoload": { "psr-4": { - "Symfony\\Cmf\\Bundle\\MediaBundle\\": "" + "Symfony\\Cmf\\Bundle\\MediaBundle\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5311,7 +5704,7 @@ "media" ], "abandoned": true, - "time": "2017-01-29 15:34:35" + "time": "2017-08-16T12:01:57+00:00" }, { "name": "symfony-cmf/menu-bundle", @@ -5376,16 +5769,16 @@ }, { "name": "symfony-cmf/routing", - "version": "2.0.0", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/symfony-cmf/routing.git", - "reference": "4f8a5fcdc5ac6b9e580b7923b09f8a1ad3035765" + "reference": "145993be08b2f0362e43e138548acdf4334d5209" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/4f8a5fcdc5ac6b9e580b7923b09f8a1ad3035765", - "reference": "4f8a5fcdc5ac6b9e580b7923b09f8a1ad3035765", + "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/145993be08b2f0362e43e138548acdf4334d5209", + "reference": "145993be08b2f0362e43e138548acdf4334d5209", "shasum": "" }, "require": { @@ -5432,26 +5825,27 @@ "database", "routing" ], - "time": "2017-02-24T17:02:07+00:00" + "time": "2017-09-27T06:23:01+00:00" }, { "name": "symfony-cmf/routing-bundle", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/symfony-cmf/routing-bundle.git", - "reference": "201ca313b599bda335cea350256045da05972412" + "reference": "3c6331fa664991065aa29423da2fcb940d42f578" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony-cmf/routing-bundle/zipball/201ca313b599bda335cea350256045da05972412", - "reference": "201ca313b599bda335cea350256045da05972412", + "url": "https://api.github.com/repos/symfony-cmf/routing-bundle/zipball/3c6331fa664991065aa29423da2fcb940d42f578", + "reference": "3c6331fa664991065aa29423da2fcb940d42f578", "shasum": "" }, "require": { "php": "^5.6|^7.0", "symfony-cmf/routing": "^2.0", - "symfony/framework-bundle": "^2.8|^3.0" + "symfony/framework-bundle": "^2.8|^3.0", + "symfony/twig-bundle": "^2.8|^3.0" }, "conflict": { "doctrine/phpcr-odm": "<1.4" @@ -5497,34 +5891,34 @@ "database", "routing" ], - "time": "2017-02-24T18:36:52+00:00" + "time": "2017-09-26T21:30:30+00:00" }, { "name": "symfony/monolog-bundle", - "version": "v3.1.0", + "version": "v3.1.1", "source": { "type": "git", "url": "https://github.com/symfony/monolog-bundle.git", - "reference": "6f96c7dbb6b2ef70b307a1a6f897153cbca3da47" + "reference": "80c82d7d41c4eed0bf27e215f27531c05b217c17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/6f96c7dbb6b2ef70b307a1a6f897153cbca3da47", - "reference": "6f96c7dbb6b2ef70b307a1a6f897153cbca3da47", + "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/80c82d7d41c4eed0bf27e215f27531c05b217c17", + "reference": "80c82d7d41c4eed0bf27e215f27531c05b217c17", "shasum": "" }, "require": { "monolog/monolog": "~1.22", "php": ">=5.3.2", - "symfony/config": "~2.7|~3.0", - "symfony/dependency-injection": "~2.7|~3.0", - "symfony/http-kernel": "~2.7|~3.0", - "symfony/monolog-bridge": "~2.7|~3.0" + "symfony/config": "~2.7|~3.0|~4.0", + "symfony/dependency-injection": "~2.7|~3.0|~4.0", + "symfony/http-kernel": "~2.7|~3.0|~4.0", + "symfony/monolog-bridge": "~2.7|~3.0|~4.0" }, "require-dev": { "phpunit/phpunit": "^4.8", - "symfony/console": "~2.3|~3.0", - "symfony/yaml": "~2.3|~3.0" + "symfony/console": "~2.3|~3.0|~4.0", + "symfony/yaml": "~2.3|~3.0|~4.0" }, "type": "symfony-bundle", "extra": { @@ -5557,20 +5951,73 @@ "log", "logging" ], - "time": "2017-03-26T11:55:59+00:00" + "time": "2017-09-26T03:17:02+00:00" + }, + { + "name": "symfony/polyfill-apcu", + "version": "v1.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-apcu.git", + "reference": "cec32398a973a9bfe9d2f94f4b5d5e186b40b698" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/cec32398a973a9bfe9d2f94f4b5d5e186b40b698", + "reference": "cec32398a973a9bfe9d2f94f4b5d5e186b40b698", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.5-dev" + } + }, + "autoload": { + "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 apcu_* functions to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "apcu", + "compatibility", + "polyfill", + "portable", + "shim" + ], + "time": "2017-07-05T15:09:33+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.3.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "cba36f3616d9866b3e52662e88da5c090fac1e97" + "reference": "1ea0e08453819ecc7130e1fb0ee10862c2f33ed0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cba36f3616d9866b3e52662e88da5c090fac1e97", - "reference": "cba36f3616d9866b3e52662e88da5c090fac1e97", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/1ea0e08453819ecc7130e1fb0ee10862c2f33ed0", + "reference": "1ea0e08453819ecc7130e1fb0ee10862c2f33ed0", "shasum": "" }, "require": { @@ -5582,7 +6029,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3-dev" + "dev-master": "1.5-dev" } }, "autoload": { @@ -5616,25 +6063,25 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2017-06-14T15:44:48+00:00" }, { "name": "symfony/polyfill-intl-icu", - "version": "v1.3.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "2d6e2b20d457603eefb6e614286c22efca30fdb4" + "reference": "4aa0b65dc71a7369c1e7e6e2a3ca027d9decdb09" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/2d6e2b20d457603eefb6e614286c22efca30fdb4", - "reference": "2d6e2b20d457603eefb6e614286c22efca30fdb4", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/4aa0b65dc71a7369c1e7e6e2a3ca027d9decdb09", + "reference": "4aa0b65dc71a7369c1e7e6e2a3ca027d9decdb09", "shasum": "" }, "require": { "php": ">=5.3.3", - "symfony/intl": "~2.3|~3.0" + "symfony/intl": "~2.3|~3.0|~4.0" }, "suggest": { "ext-intl": "For best performance" @@ -5642,7 +6089,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3-dev" + "dev-master": "1.5-dev" } }, "autoload": { @@ -5674,20 +6121,20 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2017-06-14T15:44:48+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.3.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4" + "reference": "7c8fae0ac1d216eb54349e6a8baa57d515fe8803" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/e79d363049d1c2128f133a2667e4f4190904f7f4", - "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7c8fae0ac1d216eb54349e6a8baa57d515fe8803", + "reference": "7c8fae0ac1d216eb54349e6a8baa57d515fe8803", "shasum": "" }, "require": { @@ -5699,7 +6146,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3-dev" + "dev-master": "1.5-dev" } }, "autoload": { @@ -5733,20 +6180,20 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2017-06-14T15:44:48+00:00" }, { "name": "symfony/polyfill-php56", - "version": "v1.3.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php56.git", - "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c" + "reference": "e85ebdef569b84e8709864e1a290c40f156b30ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/1dd42b9b89556f18092f3d1ada22cb05ac85383c", - "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e85ebdef569b84e8709864e1a290c40f156b30ca", + "reference": "e85ebdef569b84e8709864e1a290c40f156b30ca", "shasum": "" }, "require": { @@ -5756,7 +6203,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3-dev" + "dev-master": "1.5-dev" } }, "autoload": { @@ -5789,20 +6236,20 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2017-06-14T15:44:48+00:00" }, { "name": "symfony/polyfill-php70", - "version": "v1.3.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php70.git", - "reference": "13ce343935f0f91ca89605a2f6ca6f5c2f3faac2" + "reference": "b6482e68974486984f59449ecea1fbbb22ff840f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/13ce343935f0f91ca89605a2f6ca6f5c2f3faac2", - "reference": "13ce343935f0f91ca89605a2f6ca6f5c2f3faac2", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/b6482e68974486984f59449ecea1fbbb22ff840f", + "reference": "b6482e68974486984f59449ecea1fbbb22ff840f", "shasum": "" }, "require": { @@ -5812,7 +6259,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3-dev" + "dev-master": "1.5-dev" } }, "autoload": { @@ -5848,20 +6295,20 @@ "portable", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2017-06-14T15:44:48+00:00" }, { "name": "symfony/polyfill-util", - "version": "v1.3.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-util.git", - "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb" + "reference": "67925d1cf0b84bd234a83bebf26d4eb281744c6d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/746bce0fca664ac0a575e465f65c6643faddf7fb", - "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb", + "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/67925d1cf0b84bd234a83bebf26d4eb281744c6d", + "reference": "67925d1cf0b84bd234a83bebf26d4eb281744c6d", "shasum": "" }, "require": { @@ -5870,7 +6317,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3-dev" + "dev-master": "1.5-dev" } }, "autoload": { @@ -5900,33 +6347,33 @@ "polyfill", "shim" ], - "time": "2016-11-14T01:06:16+00:00" + "time": "2017-07-05T15:09:33+00:00" }, { "name": "symfony/swiftmailer-bundle", - "version": "v2.5.4", + "version": "v3.0.4", "source": { "type": "git", "url": "https://github.com/symfony/swiftmailer-bundle.git", - "reference": "8ab32ce31a7156621fb92e0466586186beb89759" + "reference": "d31de92759321649aec6670ca4e19179b0ec3af4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/8ab32ce31a7156621fb92e0466586186beb89759", - "reference": "8ab32ce31a7156621fb92e0466586186beb89759", + "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/d31de92759321649aec6670ca4e19179b0ec3af4", + "reference": "d31de92759321649aec6670ca4e19179b0ec3af4", "shasum": "" }, "require": { - "php": ">=5.3.2", - "swiftmailer/swiftmailer": ">=4.2.0,~5.0", - "symfony/config": "~2.7|~3.0", + "php": ">=7.0.0", + "swiftmailer/swiftmailer": "^6.0.1", + "symfony/config": "~2.8|~3.0", "symfony/dependency-injection": "~2.7|~3.0", "symfony/http-kernel": "~2.7|~3.0" }, "require-dev": { "symfony/console": "~2.7|~3.0", "symfony/framework-bundle": "~2.7|~3.0", - "symfony/phpunit-bridge": "~2.7|~3.0", + "symfony/phpunit-bridge": "~3.3@dev", "symfony/yaml": "~2.7|~3.0" }, "suggest": { @@ -5935,7 +6382,7 @@ "type": "symfony-bundle", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "3.0-dev" } }, "autoload": { @@ -5959,41 +6406,49 @@ ], "description": "Symfony SwiftmailerBundle", "homepage": "http://symfony.com", - "time": "2017-03-21T21:47:36+00:00" + "time": "2017-09-10T19:31:30+00:00" }, { "name": "symfony/symfony", - "version": "v3.2.7", + "version": "v3.3.9", "source": { "type": "git", "url": "https://github.com/symfony/symfony.git", - "reference": "1631040ea8fc5e0e405c00d35cbf2c0b7b555f64" + "reference": "a9d2f68ae9946000e2bcc3403d218ec0124f992a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/symfony/zipball/1631040ea8fc5e0e405c00d35cbf2c0b7b555f64", - "reference": "1631040ea8fc5e0e405c00d35cbf2c0b7b555f64", + "url": "https://api.github.com/repos/symfony/symfony/zipball/a9d2f68ae9946000e2bcc3403d218ec0124f992a", + "reference": "a9d2f68ae9946000e2bcc3403d218ec0124f992a", "shasum": "" }, "require": { "doctrine/common": "~2.4", - "php": ">=5.5.9", + "ext-xml": "*", + "fig/link-util": "^1.0", + "php": "^5.5.9|>=7.0.8", "psr/cache": "~1.0", + "psr/container": "^1.0", + "psr/link": "^1.0", "psr/log": "~1.0", + "psr/simple-cache": "^1.0", + "symfony/polyfill-apcu": "~1.1", "symfony/polyfill-intl-icu": "~1.0", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php56": "~1.0", "symfony/polyfill-php70": "~1.0", "symfony/polyfill-util": "~1.0", - "twig/twig": "~1.28|~2.0" + "twig/twig": "~1.34|~2.4" }, "conflict": { - "phpdocumentor/reflection-docblock": "<3.0", + "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2", "phpdocumentor/type-resolver": "<0.2.0", "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" }, "provide": { - "psr/cache-implementation": "1.0" + "psr/cache-implementation": "1.0", + "psr/container-implementation": "1.0", + "psr/simple-cache-implementation": "1.0" }, "replace": { "symfony/asset": "self.version", @@ -6008,6 +6463,7 @@ "symfony/dependency-injection": "self.version", "symfony/doctrine-bridge": "self.version", "symfony/dom-crawler": "self.version", + "symfony/dotenv": "self.version", "symfony/event-dispatcher": "self.version", "symfony/expression-language": "self.version", "symfony/filesystem": "self.version", @@ -6040,7 +6496,9 @@ "symfony/twig-bundle": "self.version", "symfony/validator": "self.version", "symfony/var-dumper": "self.version", + "symfony/web-link": "self.version", "symfony/web-profiler-bundle": "self.version", + "symfony/web-server-bundle": "self.version", "symfony/workflow": "self.version", "symfony/yaml": "self.version" }, @@ -6054,17 +6512,16 @@ "egulias/email-validator": "~1.2,>=1.2.8|~2.0", "monolog/monolog": "~1.11", "ocramius/proxy-manager": "~0.4|~1.0|~2.0", - "phpdocumentor/reflection-docblock": "^3.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0", "predis/predis": "~1.0", "sensio/framework-extra-bundle": "^3.0.2", "symfony/phpunit-bridge": "~3.2", - "symfony/polyfill-apcu": "~1.1", "symfony/security-acl": "~2.8|~3.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-master": "3.3-dev" } }, "autoload": { @@ -6072,7 +6529,6 @@ "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/", "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/", "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/", - "Symfony\\Bridge\\Swiftmailer\\": "src/Symfony/Bridge/Swiftmailer/", "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/", "Symfony\\Bundle\\": "src/Symfony/Bundle/", "Symfony\\Component\\": "src/Symfony/Component/" @@ -6103,27 +6559,28 @@ "keywords": [ "framework" ], - "time": "2017-04-05T12:52:29+00:00" + "time": "2017-09-11T16:13:42+00:00" }, { "name": "twig/extensions", - "version": "v1.4.1", + "version": "v1.5.1", "source": { "type": "git", "url": "https://github.com/twigphp/Twig-extensions.git", - "reference": "f0bb8431c8691f5a39f1017d9a5967a082bf01ff" + "reference": "d188c76168b853481cc75879ea045bf93d718e9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/f0bb8431c8691f5a39f1017d9a5967a082bf01ff", - "reference": "f0bb8431c8691f5a39f1017d9a5967a082bf01ff", + "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/d188c76168b853481cc75879ea045bf93d718e9c", + "reference": "d188c76168b853481cc75879ea045bf93d718e9c", "shasum": "" }, "require": { - "twig/twig": "~1.20|~2.0" + "twig/twig": "~1.27|~2.0" }, "require-dev": { - "symfony/translation": "~2.3" + "symfony/phpunit-bridge": "~3.3@dev", + "symfony/translation": "~2.3|~3.0" }, "suggest": { "symfony/translation": "Allow the time_diff output to be translated" @@ -6131,12 +6588,15 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "1.5-dev" } }, "autoload": { "psr-0": { "Twig_Extensions_": "lib/" + }, + "psr-4": { + "Twig\\Extensions\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -6155,24 +6615,25 @@ "i18n", "text" ], - "time": "2016-10-25T17:34:14+00:00" + "time": "2017-06-08T18:19:53+00:00" }, { "name": "twig/twig", - "version": "v1.33.0", + "version": "v2.4.4", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "05cf49921b13f6f01d3cfdf9018cfa7a8086fd5a" + "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/05cf49921b13f6f01d3cfdf9018cfa7a8086fd5a", - "reference": "05cf49921b13f6f01d3cfdf9018cfa7a8086fd5a", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/eddb97148ad779f27e670e1e3f19fb323aedafeb", + "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb", "shasum": "" }, "require": { - "php": ">=5.2.7" + "php": "^7.0", + "symfony/polyfill-mbstring": "~1.0" }, "require-dev": { "psr/container": "^1.0", @@ -6182,12 +6643,15 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.33-dev" + "dev-master": "2.4-dev" } }, "autoload": { "psr-0": { "Twig_": "lib/" + }, + "psr-4": { + "Twig\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -6217,7 +6681,7 @@ "keywords": [ "templating" ], - "time": "2017-03-22T15:40:09+00:00" + "time": "2017-09-27T18:10:31+00:00" }, { "name": "webmozart/assert", @@ -6323,24 +6787,24 @@ }, { "name": "willdurand/hateoas", - "version": "2.10.0", + "version": "2.11.0", "source": { "type": "git", "url": "https://github.com/willdurand/Hateoas.git", - "reference": "ada89d867e47040f8c4be3be2c8e7930a3d01189" + "reference": "bc5c1035f7f040f13810fbed9ac87ba540af7758" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/willdurand/Hateoas/zipball/ada89d867e47040f8c4be3be2c8e7930a3d01189", - "reference": "ada89d867e47040f8c4be3be2c8e7930a3d01189", + "url": "https://api.github.com/repos/willdurand/Hateoas/zipball/bc5c1035f7f040f13810fbed9ac87ba540af7758", + "reference": "bc5c1035f7f040f13810fbed9ac87ba540af7758", "shasum": "" }, "require": { "doctrine/annotations": "~1.0", "doctrine/common": "~2.0", "jms/metadata": "~1.1", - "jms/serializer": "~1.0", - "php": ">=5.4", + "jms/serializer": "^1.7", + "php": "^5.5|^7.0", "phpoption/phpoption": ">=1.1.0,<2.0-dev", "symfony/expression-language": "~2.4 || ~3.0" }, @@ -6360,7 +6824,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.10-dev" + "dev-master": "2.11-dev" } }, "autoload": { @@ -6383,27 +6847,26 @@ } ], "description": "A PHP library to support implementing representations for HATEOAS REST web services", - "time": "2016-05-19T11:30:35+00:00" + "time": "2017-05-22T10:27:33+00:00" }, { "name": "willdurand/hateoas-bundle", - "version": "1.2.0", - "target-dir": "Bazinga/Bundle/HateoasBundle", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/willdurand/BazingaHateoasBundle.git", - "reference": "7c73a949c72dc6bc7363f76c11e70e655b19d94b" + "reference": "bf57a3e45a26937726f370933eec4d8a7062733c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/willdurand/BazingaHateoasBundle/zipball/7c73a949c72dc6bc7363f76c11e70e655b19d94b", - "reference": "7c73a949c72dc6bc7363f76c11e70e655b19d94b", + "url": "https://api.github.com/repos/willdurand/BazingaHateoasBundle/zipball/bf57a3e45a26937726f370933eec4d8a7062733c", + "reference": "bf57a3e45a26937726f370933eec4d8a7062733c", "shasum": "" }, "require": { - "jms/serializer-bundle": "~1.0", + "jms/serializer-bundle": "~1.0 || ^2.0", "php": ">5.4", - "symfony/framework-bundle": "~2.2 || ~3.0", + "symfony/framework-bundle": "~2.3 || ~3.0", "willdurand/hateoas": "^2.10.0" }, "require-dev": { @@ -6414,12 +6877,12 @@ "type": "symfony-bundle", "extra": { "branch-alias": { - "dev-master": "1.2-dev" + "dev-master": "1.3-dev" } }, "autoload": { - "psr-0": { - "Bazinga\\Bundle\\HateoasBundle": "" + "psr-4": { + "Bazinga\\Bundle\\HateoasBundle\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -6437,7 +6900,7 @@ "HATEOAS", "rest" ], - "time": "2016-05-31T13:55:14+00:00" + "time": "2017-06-07T17:54:37+00:00" }, { "name": "willdurand/jsonp-callback-validator", @@ -6481,16 +6944,16 @@ }, { "name": "willdurand/negotiation", - "version": "v2.2.1", + "version": "v2.3.1", "source": { "type": "git", "url": "https://github.com/willdurand/Negotiation.git", - "reference": "1f210db45723b21edd69f39794662b8d64656b93" + "reference": "03436ededa67c6e83b9b12defac15384cb399dc9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/1f210db45723b21edd69f39794662b8d64656b93", - "reference": "1f210db45723b21edd69f39794662b8d64656b93", + "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/03436ededa67c6e83b9b12defac15384cb399dc9", + "reference": "03436ededa67c6e83b9b12defac15384cb399dc9", "shasum": "" }, "require": { @@ -6502,7 +6965,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-master": "2.3-dev" } }, "autoload": { @@ -6529,7 +6992,7 @@ "header", "negotiation" ], - "time": "2016-10-14T09:17:47+00:00" + "time": "2017-05-14T17:21:12+00:00" }, { "name": "winzou/state-machine", @@ -6633,26 +7096,27 @@ }, { "name": "zendframework/zend-code", - "version": "2.6.3", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/zendframework/zend-code.git", - "reference": "95033f061b083e16cdee60530ec260d7d628b887" + "reference": "02944646c109fa53b6b6ab8b5269bb080fcdf5b4" }, "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/02944646c109fa53b6b6ab8b5269bb080fcdf5b4", + "reference": "02944646c109fa53b6b6ab8b5269bb080fcdf5b4", "shasum": "" }, "require": { - "php": "^5.5 || 7.0.0 - 7.0.4 || ^7.0.6", + "php": "^7.1", "zendframework/zend-eventmanager": "^2.6 || ^3.0" }, "require-dev": { "doctrine/annotations": "~1.0", - "fabpot/php-cs-fixer": "1.7.*", - "phpunit/phpunit": "^4.8.21", + "ext-phar": "*", + "phpunit/phpunit": "^6.2.3", + "zendframework/zend-coding-standard": "^1.0.0", "zendframework/zend-stdlib": "^2.7 || ^3.0" }, "suggest": { @@ -6662,8 +7126,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.6-dev", - "dev-develop": "2.7-dev" + "dev-master": "3.2-dev", + "dev-develop": "3.3-dev" } }, "autoload": { @@ -6681,20 +7145,20 @@ "code", "zf2" ], - "time": "2016-04-20T17:26:42+00:00" + "time": "2017-07-23T13:06:00+00:00" }, { "name": "zendframework/zend-eventmanager", - "version": "3.1.0", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/zendframework/zend-eventmanager.git", - "reference": "c3bce7b7d47c54040b9ae51bc55491c72513b75d" + "reference": "9d72db10ceb6e42fb92350c0cb54460da61bd79c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/c3bce7b7d47c54040b9ae51bc55491c72513b75d", - "reference": "c3bce7b7d47c54040b9ae51bc55491c72513b75d", + "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/9d72db10ceb6e42fb92350c0cb54460da61bd79c", + "reference": "9d72db10ceb6e42fb92350c0cb54460da61bd79c", "shasum": "" }, "require": { @@ -6703,7 +7167,7 @@ "require-dev": { "athletic/athletic": "^0.1", "container-interop/container-interop": "^1.1.0", - "phpunit/phpunit": "^5.6", + "phpunit/phpunit": "^6.0.7 || ^5.7.14", "zendframework/zend-coding-standard": "~1.0.0", "zendframework/zend-stdlib": "^2.7.3 || ^3.0" }, @@ -6714,8 +7178,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1-dev", - "dev-develop": "3.2-dev" + "dev-master": "3.2-dev", + "dev-develop": "3.3-dev" } }, "autoload": { @@ -6735,29 +7199,29 @@ "events", "zf2" ], - "time": "2016-12-19T21:47:12+00:00" + "time": "2017-07-11T19:17:22+00:00" }, { "name": "zendframework/zend-hydrator", - "version": "2.2.1", + "version": "2.3.1", "source": { "type": "git", "url": "https://github.com/zendframework/zend-hydrator.git", - "reference": "0ac0d3e569781f1895670b0c8d0dc7f25b8a3182" + "reference": "de0d6465fbc4b7ca345fddc148834c321c4b361f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-hydrator/zipball/0ac0d3e569781f1895670b0c8d0dc7f25b8a3182", - "reference": "0ac0d3e569781f1895670b0c8d0dc7f25b8a3182", + "url": "https://api.github.com/repos/zendframework/zend-hydrator/zipball/de0d6465fbc4b7ca345fddc148834c321c4b361f", + "reference": "de0d6465fbc4b7ca345fddc148834c321c4b361f", "shasum": "" }, "require": { - "php": "^5.5 || ^7.0", + "php": "^5.6 || ^7.0", "zendframework/zend-stdlib": "^3.0" }, "require-dev": { - "phpunit/phpunit": "^4.5", - "squizlabs/php_codesniffer": "^2.3.1", + "phpunit/phpunit": "^5.7.21 || ^6.3", + "zendframework/zend-coding-standard": "~1.0.0", "zendframework/zend-eventmanager": "^3.0", "zendframework/zend-filter": "^2.6", "zendframework/zend-inputfilter": "^2.6", @@ -6775,8 +7239,8 @@ "branch-alias": { "dev-release-1.0": "1.0-dev", "dev-release-1.1": "1.1-dev", - "dev-master": "2.2-dev", - "dev-develop": "2.3-dev" + "dev-master": "2.3-dev", + "dev-develop": "2.4-dev" }, "zf": { "component": "Zend\\Hydrator", @@ -6797,7 +7261,7 @@ "hydrator", "zf2" ], - "time": "2016-04-18T17:59:29+00:00" + "time": "2017-10-02T15:01:27+00:00" }, { "name": "zendframework/zend-stdlib", @@ -6848,24 +7312,25 @@ "packages-dev": [ { "name": "behat/behat", - "version": "v3.3.0", + "version": "v3.4.1", "source": { "type": "git", "url": "https://github.com/Behat/Behat.git", - "reference": "15a3a1857457eaa29cdf41564a5e421effb09526" + "reference": "cb51d4b0b11ea6d3897f3589a871a63a33632692" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Behat/zipball/15a3a1857457eaa29cdf41564a5e421effb09526", - "reference": "15a3a1857457eaa29cdf41564a5e421effb09526", + "url": "https://api.github.com/repos/Behat/Behat/zipball/cb51d4b0b11ea6d3897f3589a871a63a33632692", + "reference": "cb51d4b0b11ea6d3897f3589a871a63a33632692", "shasum": "" }, "require": { - "behat/gherkin": "^4.4.4", - "behat/transliterator": "~1.0", - "container-interop/container-interop": "^1.1", + "behat/gherkin": "^4.5.1", + "behat/transliterator": "^1.2", + "container-interop/container-interop": "^1.2", "ext-mbstring": "*", "php": ">=5.3.3", + "psr/container": "^1.0", "symfony/class-loader": "~2.1||~3.0", "symfony/config": "~2.3||~3.0", "symfony/console": "~2.5||~3.0", @@ -6926,20 +7391,20 @@ "symfony", "testing" ], - "time": "2016-12-25T13:43:52+00:00" + "time": "2017-09-18T11:10:28+00:00" }, { "name": "behat/gherkin", - "version": "v4.4.5", + "version": "v4.5.1", "source": { "type": "git", "url": "https://github.com/Behat/Gherkin.git", - "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74" + "reference": "74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/5c14cff4f955b17d20d088dec1bde61c0539ec74", - "reference": "5c14cff4f955b17d20d088dec1bde61c0539ec74", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a", + "reference": "74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a", "shasum": "" }, "require": { @@ -6985,7 +7450,7 @@ "gherkin", "parser" ], - "time": "2016-10-30T11:50:56+00:00" + "time": "2017-08-30T11:04:43+00:00" }, { "name": "behat/mink", @@ -7351,21 +7816,24 @@ }, { "name": "friends-of-behat/performance-extension", - "version": "v1.0.1", + "version": "v1.0.2", "source": { "type": "git", "url": "https://github.com/FriendsOfBehat/PerformanceExtension.git", - "reference": "eb0163ebdfda430e429e0a4c6ec2d9bbbd8a6c4b" + "reference": "f772fec1544fcb887e85ce9c1e546f1e3361b375" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfBehat/PerformanceExtension/zipball/eb0163ebdfda430e429e0a4c6ec2d9bbbd8a6c4b", - "reference": "eb0163ebdfda430e429e0a4c6ec2d9bbbd8a6c4b", + "url": "https://api.github.com/repos/FriendsOfBehat/PerformanceExtension/zipball/f772fec1544fcb887e85ce9c1e546f1e3361b375", + "reference": "f772fec1544fcb887e85ce9c1e546f1e3361b375", "shasum": "" }, "require": { "behat/behat": "^3.1", - "php": "^5.6|^7.0" + "php": "^7.0" + }, + "require-dev": { + "friends-of-behat/test-context": "^0.3" }, "type": "library", "autoload": { @@ -7385,7 +7853,7 @@ } ], "description": "Accelerates Behat using features available only for newer PHP versions.", - "time": "2016-07-22T21:46:29+00:00" + "time": "2017-07-10T20:23:25+00:00" }, { "name": "friends-of-behat/service-container-extension", @@ -7527,16 +7995,16 @@ }, { "name": "instaclick/php-webdriver", - "version": "1.4.3", + "version": "1.4.5", "source": { "type": "git", "url": "https://github.com/instaclick/php-webdriver.git", - "reference": "0c20707dcf30a32728fd6bdeeab996c887fdb2fb" + "reference": "6fa959452e774dcaed543faad3a9d1a37d803327" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/0c20707dcf30a32728fd6bdeeab996c887fdb2fb", - "reference": "0c20707dcf30a32728fd6bdeeab996c887fdb2fb", + "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327", + "reference": "6fa959452e774dcaed543faad3a9d1a37d803327", "shasum": "" }, "require": { @@ -7544,7 +8012,8 @@ "php": ">=5.3.2" }, "require-dev": { - "satooshi/php-coveralls": "dev-master" + "phpunit/phpunit": "^4.8", + "satooshi/php-coveralls": "^1.0||^2.0" }, "type": "library", "extra": { @@ -7581,7 +8050,7 @@ "webdriver", "webtest" ], - "time": "2015-06-15T20:19:33+00:00" + "time": "2017-06-30T04:02:48+00:00" }, { "name": "lakion/mink-debug-extension", @@ -7645,16 +8114,16 @@ }, { "name": "myclabs/deep-copy", - "version": "1.6.0", + "version": "1.6.1", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe" + "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/5a5a9fc8025a08d8919be87d6884d5a92520cefe", - "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/8e6e04167378abf1ddb4d3522d8755c5fd90d102", + "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102", "shasum": "" }, "require": { @@ -7683,20 +8152,20 @@ "object", "object graph" ], - "time": "2017-01-26T22:05:40+00:00" + "time": "2017-04-12T18:52:22+00:00" }, { "name": "phpdocumentor/reflection-common", - "version": "1.0", + "version": "1.0.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c" + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c", - "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", "shasum": "" }, "require": { @@ -7737,26 +8206,26 @@ "reflection", "static analysis" ], - "time": "2015-12-27T11:43:31+00:00" + "time": "2017-09-11T18:02:19+00:00" }, { "name": "phpdocumentor/reflection-docblock", - "version": "3.1.1", + "version": "4.1.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e" + "reference": "2d3d238c433cf69caeb4842e97a3223a116f94b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e", - "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/2d3d238c433cf69caeb4842e97a3223a116f94b2", + "reference": "2d3d238c433cf69caeb4842e97a3223a116f94b2", "shasum": "" }, "require": { - "php": ">=5.5", + "php": "^7.0", "phpdocumentor/reflection-common": "^1.0@dev", - "phpdocumentor/type-resolver": "^0.2.0", + "phpdocumentor/type-resolver": "^0.4.0", "webmozart/assert": "^1.0" }, "require-dev": { @@ -7782,24 +8251,24 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2016-09-30T07:12:33+00:00" + "time": "2017-08-30T18:51:59+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "0.2.1", + "version": "0.4.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb" + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb", - "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", "shasum": "" }, "require": { - "php": ">=5.5", + "php": "^5.5 || ^7.0", "phpdocumentor/reflection-common": "^1.0" }, "require-dev": { @@ -7829,7 +8298,7 @@ "email": "me@mikevanriel.com" } ], - "time": "2016-11-25T06:54:22+00:00" + "time": "2017-07-14T14:27:02+00:00" }, { "name": "phpspec/php-diff", @@ -7871,16 +8340,16 @@ }, { "name": "phpspec/phpspec", - "version": "3.2.3", + "version": "3.4.2", "source": { "type": "git", "url": "https://github.com/phpspec/phpspec.git", - "reference": "97246d90708cf98983d95d609bbe6f4b039b8600" + "reference": "4f42719d8d7a26063b9aa79a0f83ed56c79618f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/phpspec/zipball/97246d90708cf98983d95d609bbe6f4b039b8600", - "reference": "97246d90708cf98983d95d609bbe6f4b039b8600", + "url": "https://api.github.com/repos/phpspec/phpspec/zipball/4f42719d8d7a26063b9aa79a0f83ed56c79618f4", + "reference": "4f42719d8d7a26063b9aa79a0f83ed56c79618f4", "shasum": "" }, "require": { @@ -7889,7 +8358,7 @@ "php": "^5.6 || ^7.0", "phpspec/php-diff": "^1.0.0", "phpspec/prophecy": "^1.5", - "sebastian/exporter": "^1.0 || ^2.0", + "sebastian/exporter": "^1.0 || ^2.0 || ^3.0", "symfony/console": "^2.7 || ^3.0", "symfony/event-dispatcher": "^2.7 || ^3.0", "symfony/finder": "^2.7 || ^3.0", @@ -7897,9 +8366,9 @@ "symfony/yaml": "^2.7 || ^3.0" }, "require-dev": { - "behat/behat": "^3.1", + "behat/behat": "^3.3", "ciaranmcnulty/versionbasedtestskipper": "^0.2.1", - "phpunit/phpunit": "^5.4", + "phpunit/phpunit": "^5.5|^6.0", "symfony/filesystem": "^3.0" }, "suggest": { @@ -7949,26 +8418,26 @@ "testing", "tests" ], - "time": "2017-01-29T12:28:48+00:00" + "time": "2017-08-05T20:07:26+00:00" }, { "name": "phpspec/prophecy", - "version": "v1.7.0", + "version": "v1.7.2", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "93d39f1f7f9326d746203c7c056f300f7f126073" + "reference": "c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/93d39f1f7f9326d746203c7c056f300f7f126073", - "reference": "93d39f1f7f9326d746203c7c056f300f7f126073", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6", + "reference": "c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6", "shasum": "" }, "require": { "doctrine/instantiator": "^1.0.2", "php": "^5.3|^7.0", - "phpdocumentor/reflection-docblock": "^2.0|^3.0.2", + "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", "sebastian/comparator": "^1.1|^2.0", "sebastian/recursion-context": "^1.0|^2.0|^3.0" }, @@ -7979,7 +8448,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6.x-dev" + "dev-master": "1.7.x-dev" } }, "autoload": { @@ -8012,7 +8481,7 @@ "spy", "stub" ], - "time": "2017-03-02T20:05:34+00:00" + "time": "2017-09-04T11:05:03+00:00" }, { "name": "phpunit/php-code-coverage", @@ -8216,29 +8685,29 @@ }, { "name": "phpunit/php-token-stream", - "version": "1.4.11", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7" + "reference": "9a02332089ac48e704c70f6cefed30c224e3c0b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e03f8f67534427a787e21a385a67ec3ca6978ea7", - "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9a02332089ac48e704c70f6cefed30c224e3c0b0", + "reference": "9a02332089ac48e704c70f6cefed30c224e3c0b0", "shasum": "" }, "require": { "ext-tokenizer": "*", - "php": ">=5.3.3" + "php": "^7.0" }, "require-dev": { - "phpunit/phpunit": "~4.2" + "phpunit/phpunit": "^6.2.4" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -8261,20 +8730,20 @@ "keywords": [ "tokenizer" ], - "time": "2017-02-27T10:12:30+00:00" + "time": "2017-08-20T05:47:52+00:00" }, { "name": "phpunit/phpunit", - "version": "5.7.19", + "version": "5.7.22", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "69c4f49ff376af2692bad9cebd883d17ebaa98a1" + "reference": "10df877596c9906d4110b5b905313829043f2ada" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/69c4f49ff376af2692bad9cebd883d17ebaa98a1", - "reference": "69c4f49ff376af2692bad9cebd883d17ebaa98a1", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/10df877596c9906d4110b5b905313829043f2ada", + "reference": "10df877596c9906d4110b5b905313829043f2ada", "shasum": "" }, "require": { @@ -8292,7 +8761,7 @@ "phpunit/php-timer": "^1.0.6", "phpunit/phpunit-mock-objects": "^3.2", "sebastian/comparator": "^1.2.4", - "sebastian/diff": "~1.2", + "sebastian/diff": "^1.4.3", "sebastian/environment": "^1.3.4 || ^2.0", "sebastian/exporter": "~2.0", "sebastian/global-state": "^1.1", @@ -8343,20 +8812,20 @@ "testing", "xunit" ], - "time": "2017-04-03T02:22:27+00:00" + "time": "2017-09-24T07:23:38+00:00" }, { "name": "phpunit/phpunit-mock-objects", - "version": "3.4.3", + "version": "3.4.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", - "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24" + "reference": "a23b761686d50a560cc56233b9ecf49597cc9118" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/3ab72b65b39b491e0c011e2e09bb2206c2aa8e24", - "reference": "3ab72b65b39b491e0c011e2e09bb2206c2aa8e24", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118", + "reference": "a23b761686d50a560cc56233b9ecf49597cc9118", "shasum": "" }, "require": { @@ -8402,56 +8871,7 @@ "mock", "xunit" ], - "time": "2016-12-08T20:27:08+00:00" - }, - { - "name": "psr/container", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Container\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common Container Interface (PHP FIG PSR-11)", - "homepage": "https://github.com/php-fig/container", - "keywords": [ - "PSR-11", - "container", - "container-interface", - "container-interop", - "psr" - ], - "time": "2017-02-14T16:28:37+00:00" + "time": "2017-06-30T09:13:00+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", @@ -8564,23 +8984,23 @@ }, { "name": "sebastian/diff", - "version": "1.4.1", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e" + "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e", - "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4", + "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": "^5.3.3 || ^7.0" }, "require-dev": { - "phpunit/phpunit": "~4.8" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" }, "type": "library", "extra": { @@ -8612,7 +9032,7 @@ "keywords": [ "diff" ], - "time": "2015-12-08T07:14:41+00:00" + "time": "2017-05-22T07:24:03+00:00" }, { "name": "sebastian/environment", @@ -8968,7 +9388,7 @@ } ], "aliases": [], - "minimum-stability": "dev", + "minimum-stability": "stable", "stability-flags": { "doctrine/phpcr-odm": 20, "symfony-cmf/block-bundle": 20, @@ -8978,7 +9398,7 @@ "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": "^5.6|^7.0" + "php": "^7.1" }, "platform-dev": [] }