diff --git a/Command/VhostDefineCommand.php b/Command/VhostDefineCommand.php
index 75757f1..901505b 100644
--- a/Command/VhostDefineCommand.php
+++ b/Command/VhostDefineCommand.php
@@ -29,59 +29,61 @@ protected function configure()
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
- try {
- $this->comment($input, $output, sprintf(
- 'Define rabbitmq %s vhost configuration',
- $this->getVhost($input)
- ));
-
- $vhostConfiguration = $this->getVhostConfiguration($input);
- $vhostHandler = $this->getContainer()->get('ola_rabbit_mq_admin_toolkit.handler.vhost');
- $creation = !$vhostHandler->exists($vhostConfiguration);
-
- $vhostHandler->define($vhostConfiguration);
-
- $this->success($input, $output, sprintf(
- 'Rabbitmq "%s" vhost configuration successfully %s !',
- $this->getVhost($input),
- $creation ? 'created' : 'updated'
- ));
- } catch (\Exception $e) {
- if (!$this->getContainer()->getParameter('ola_rabbit_mq_admin_toolkit.silent_failure')) {
- throw $e;
+ $vhostList = $this->getVhostList($input);
+
+ foreach ($vhostList as $vhost) {
+ try {
+ $this->comment($input, $output, sprintf(
+ 'Define rabbitmq %s vhost configuration',
+ $vhost
+ ));
+
+ $vhostConfiguration = $this->getVhostConfiguration($vhost);
+ $vhostHandler = $this->getContainer()->get('ola_rabbit_mq_admin_toolkit.handler.vhost');
+ $creation = !$vhostHandler->exists($vhostConfiguration);
+
+ $vhostHandler->define($vhostConfiguration);
+
+ $this->success($input, $output, sprintf(
+ 'Rabbitmq "%s" vhost configuration successfully %s !',
+ $vhost,
+ $creation ? 'created' : 'updated'
+ ));
+ } catch (\Exception $e) {
+ if (!$this->getContainer()->getParameter('ola_rabbit_mq_admin_toolkit.silent_failure')) {
+ throw $e;
+ }
}
}
}
/**
- * Retrieve vhost's name to process
+ * Return Vhosts to process
*
* @param InputInterface $input
*
- * @return string
+ * @return array
*/
- private function getVhost(InputInterface $input)
+ private function getVhostList(InputInterface $input)
{
- $vhost = $input->getArgument('vhost');
- if (empty($vhost)) {
- $vhost = $this->getContainer()->getParameter('ola_rabbit_mq_admin_toolkit.default_vhost');
+ $inputVhost = $input->getArgument('vhost');
+ $vhostList = array($inputVhost);
+ if (empty($inputVhost)) {
+ $vhostList = $this->getContainer()->getParameter('ola_rabbit_mq_admin_toolkit.vhost_list');
}
- return $vhost;
+ return $vhostList;
}
/**
- * @param InputInterface $input
- * @param OutputInterface $output
+ * @param string $vhost
*
* @return VhostConfiguration
*
* @throws \InvalidArgumentException
*/
- private function getVhostConfiguration(InputInterface $input)
+ private function getVhostConfiguration($vhost)
{
- $vhost = $this->getVhost($input);
-
$serviceName = sprintf(
OlaRabbitMqAdminToolkitExtension::VHOST_MANAGER_SERVICE_TEMPLATE,
$vhost
diff --git a/DependencyInjection/OlaRabbitMqAdminToolkitExtension.php b/DependencyInjection/OlaRabbitMqAdminToolkitExtension.php
index c126134..9666c82 100644
--- a/DependencyInjection/OlaRabbitMqAdminToolkitExtension.php
+++ b/DependencyInjection/OlaRabbitMqAdminToolkitExtension.php
@@ -28,7 +28,7 @@ public function load(array $configs, ContainerBuilder $container)
$configuration = new Configuration();
$config = $this->processConfiguration($configuration, $configs);
- $container->setParameter(sprintf(self::PARAMETER_TEMPLATE, 'default_vhost'), $config['default_vhost']);
+ $container->setParameter(sprintf(self::PARAMETER_TEMPLATE, 'vhost_list'), array_keys($config['vhosts']));
$container->setParameter(sprintf(self::PARAMETER_TEMPLATE, 'silent_failure'), $config['silent_failure']);
$this->loadConnections($config['connections'], $container);
diff --git a/Tests/Command/VhostDefineCommandTest.php b/Tests/Command/VhostDefineCommandTest.php
index 81c5219..52e7ede 100644
--- a/Tests/Command/VhostDefineCommandTest.php
+++ b/Tests/Command/VhostDefineCommandTest.php
@@ -27,7 +27,7 @@ public function setUp()
$this->container = $this->prophesize('Symfony\Component\DependencyInjection\ContainerInterface');
$this->container->get('ola_rabbit_mq_admin_toolkit.handler.vhost')->willReturn($this->handler->reveal());
$this->container->getParameter('ola_rabbit_mq_admin_toolkit.silent_failure')->willReturn(false);
- $this->container->getParameter('ola_rabbit_mq_admin_toolkit.default_vhost')->willReturn('foo');
+ $this->container->getParameter('ola_rabbit_mq_admin_toolkit.vhost_list')->willReturn(array('foo'));
$this->command = new VhostDefineCommand();
$this->command->setApplication($this->application);
diff --git a/Tests/DependencyInjection/OlaRabbitMqAdminToolkitExtensionTest.php b/Tests/DependencyInjection/OlaRabbitMqAdminToolkitExtensionTest.php
index 194b9d6..7d6764b 100644
--- a/Tests/DependencyInjection/OlaRabbitMqAdminToolkitExtensionTest.php
+++ b/Tests/DependencyInjection/OlaRabbitMqAdminToolkitExtensionTest.php
@@ -84,7 +84,7 @@ public function test_load_successfull()
));
$this->assertContainerBuilderHasService('ola_rabbit_mq_admin_toolkit.connection.default');
$this->assertContainerBuilderHasService('ola_rabbit_mq_admin_toolkit.configuration.test');
- $this->assertContainerBuilderHasParameter('ola_rabbit_mq_admin_toolkit.default_vhost');
+ $this->assertContainerBuilderHasParameter('ola_rabbit_mq_admin_toolkit.vhost_list');
}
public function dataProvider_load_failBecauseModulusIsImproperlyDefined()
diff --git a/composer.lock b/composer.lock
index d7158cb..64f699d 100644
--- a/composer.lock
+++ b/composer.lock
@@ -6,74 +6,6 @@
],
"hash": "193887245f83bfc5fae73f17af0a67a8",
"packages": [
- {
- "name": "doctrine/annotations",
- "version": "v1.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/annotations.git",
- "reference": "30e07cf03edc3cd3ef579d0dd4dd8c58250799a5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/annotations/zipball/30e07cf03edc3cd3ef579d0dd4dd8c58250799a5",
- "reference": "30e07cf03edc3cd3ef579d0dd4dd8c58250799a5",
- "shasum": ""
- },
- "require": {
- "doctrine/lexer": "1.*",
- "php": "^5.6 || ^7.0"
- },
- "require-dev": {
- "doctrine/cache": "1.*",
- "phpunit/phpunit": "^5.6.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.4.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- }
- ],
- "description": "Docblock Annotations Parser",
- "homepage": "http://www.doctrine-project.org",
- "keywords": [
- "annotations",
- "docblock",
- "parser"
- ],
- "time": "2016-10-24 11:45:47"
- },
{
"name": "doctrine/cache",
"version": "v1.6.1",
@@ -144,60 +76,6 @@
],
"time": "2016-10-29 11:16:17"
},
- {
- "name": "doctrine/lexer",
- "version": "v1.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/lexer.git",
- "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
- "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "Doctrine\\Common\\Lexer\\": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- }
- ],
- "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
- "homepage": "http://www.doctrine-project.org",
- "keywords": [
- "lexer",
- "parser"
- ],
- "time": "2014-09-09 13:34:57"
- },
{
"name": "guzzle/guzzle",
"version": "v3.9.3",
@@ -295,16 +173,16 @@
},
{
"name": "paragonie/random_compat",
- "version": "v2.0.3",
+ "version": "v2.0.10",
"source": {
"type": "git",
"url": "https://github.com/paragonie/random_compat.git",
- "reference": "c0125896dbb151380ab47e96c621741e79623beb"
+ "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/c0125896dbb151380ab47e96c621741e79623beb",
- "reference": "c0125896dbb151380ab47e96c621741e79623beb",
+ "url": "https://api.github.com/repos/paragonie/random_compat/zipball/634bae8e911eefa89c1abfbf1b66da679ac8f54d",
+ "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d",
"shasum": ""
},
"require": {
@@ -339,7 +217,7 @@
"pseudorandom",
"random"
],
- "time": "2016-10-17 15:23:22"
+ "time": "2017-03-13 16:27:32"
},
{
"name": "psr/cache",
@@ -483,73 +361,18 @@
],
"time": "2016-08-22 16:34:33"
},
- {
- "name": "symfony/asset",
- "version": "v3.1.6",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/asset.git",
- "reference": "967518f63a096593064c26ae1201a76a58caf216"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/asset/zipball/967518f63a096593064c26ae1201a76a58caf216",
- "reference": "967518f63a096593064c26ae1201a76a58caf216",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9"
- },
- "require-dev": {
- "symfony/http-foundation": "~2.8|~3.0"
- },
- "suggest": {
- "symfony/http-foundation": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Asset\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony Asset Component",
- "homepage": "https://symfony.com",
- "time": "2016-09-24 15:56:48"
- },
{
"name": "symfony/cache",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/cache.git",
- "reference": "a4bf05e93eecf1df96612ad0ccf49e03177b17b4"
+ "reference": "1b4131944572027384977f89c0196828e3112646"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/cache/zipball/a4bf05e93eecf1df96612ad0ccf49e03177b17b4",
- "reference": "a4bf05e93eecf1df96612ad0ccf49e03177b17b4",
+ "url": "https://api.github.com/repos/symfony/cache/zipball/1b4131944572027384977f89c0196828e3112646",
+ "reference": "1b4131944572027384977f89c0196828e3112646",
"shasum": ""
},
"require": {
@@ -563,6 +386,7 @@
"require-dev": {
"cache/integration-tests": "dev-master",
"doctrine/cache": "~1.6",
+ "doctrine/dbal": "~2.4",
"predis/predis": "~1.0"
},
"suggest": {
@@ -571,7 +395,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -602,20 +426,20 @@
"caching",
"psr6"
],
- "time": "2016-09-25 08:27:07"
+ "time": "2017-03-28 21:38:24"
},
{
"name": "symfony/class-loader",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/class-loader.git",
- "reference": "bcb072aba46ddf3b1a496438c63be6be647739aa"
+ "reference": "c29a5bc6ca14cfff1f5e3d7781ed74b6e898d2b9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/class-loader/zipball/bcb072aba46ddf3b1a496438c63be6be647739aa",
- "reference": "bcb072aba46ddf3b1a496438c63be6be647739aa",
+ "url": "https://api.github.com/repos/symfony/class-loader/zipball/c29a5bc6ca14cfff1f5e3d7781ed74b6e898d2b9",
+ "reference": "c29a5bc6ca14cfff1f5e3d7781ed74b6e898d2b9",
"shasum": ""
},
"require": {
@@ -631,7 +455,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -658,33 +482,36 @@
],
"description": "Symfony ClassLoader Component",
"homepage": "https://symfony.com",
- "time": "2016-09-06 23:30:54"
+ "time": "2017-02-18 17:28:00"
},
{
"name": "symfony/config",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/config.git",
- "reference": "949e7e846743a7f9e46dc50eb639d5fde1f53341"
+ "reference": "8444bde28e3c2a33e571e6f180c2d78bfdc4480d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/config/zipball/949e7e846743a7f9e46dc50eb639d5fde1f53341",
- "reference": "949e7e846743a7f9e46dc50eb639d5fde1f53341",
+ "url": "https://api.github.com/repos/symfony/config/zipball/8444bde28e3c2a33e571e6f180c2d78bfdc4480d",
+ "reference": "8444bde28e3c2a33e571e6f180c2d78bfdc4480d",
"shasum": ""
},
"require": {
"php": ">=5.5.9",
"symfony/filesystem": "~2.8|~3.0"
},
+ "require-dev": {
+ "symfony/yaml": "~3.0"
+ },
"suggest": {
"symfony/yaml": "To use the yaml reference dumper"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -711,20 +538,20 @@
],
"description": "Symfony Config Component",
"homepage": "https://symfony.com",
- "time": "2016-09-25 08:27:07"
+ "time": "2017-04-04 15:30:56"
},
{
"name": "symfony/console",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "c99da1119ae61e15de0e4829196b9fba6f73d065"
+ "reference": "c30243cc51f726812be3551316b109a2f5deaf8d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/c99da1119ae61e15de0e4829196b9fba6f73d065",
- "reference": "c99da1119ae61e15de0e4829196b9fba6f73d065",
+ "url": "https://api.github.com/repos/symfony/console/zipball/c30243cc51f726812be3551316b109a2f5deaf8d",
+ "reference": "c30243cc51f726812be3551316b109a2f5deaf8d",
"shasum": ""
},
"require": {
@@ -735,17 +562,19 @@
"require-dev": {
"psr/log": "~1.0",
"symfony/event-dispatcher": "~2.8|~3.0",
+ "symfony/filesystem": "~2.8|~3.0",
"symfony/process": "~2.8|~3.0"
},
"suggest": {
"psr/log": "For using the console logger",
"symfony/event-dispatcher": "",
+ "symfony/filesystem": "",
"symfony/process": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -772,20 +601,20 @@
],
"description": "Symfony Console Component",
"homepage": "https://symfony.com",
- "time": "2016-10-06 01:44:51"
+ "time": "2017-04-04 14:33:42"
},
{
"name": "symfony/debug",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/debug.git",
- "reference": "e2b3f74a67fc928adc3c1b9027f73e1bc01190a8"
+ "reference": "56f613406446a4a0a031475cfd0a01751de22659"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/debug/zipball/e2b3f74a67fc928adc3c1b9027f73e1bc01190a8",
- "reference": "e2b3f74a67fc928adc3c1b9027f73e1bc01190a8",
+ "url": "https://api.github.com/repos/symfony/debug/zipball/56f613406446a4a0a031475cfd0a01751de22659",
+ "reference": "56f613406446a4a0a031475cfd0a01751de22659",
"shasum": ""
},
"require": {
@@ -802,7 +631,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -829,29 +658,32 @@
],
"description": "Symfony Debug Component",
"homepage": "https://symfony.com",
- "time": "2016-09-06 11:02:40"
+ "time": "2017-03-28 21:38:24"
},
{
"name": "symfony/dependency-injection",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/dependency-injection.git",
- "reference": "c578891216090069cd6d2e573402e13e39b3ad5c"
+ "reference": "923bb014708b666e4092c9ba39993895c9c8fcd7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/c578891216090069cd6d2e573402e13e39b3ad5c",
- "reference": "c578891216090069cd6d2e573402e13e39b3ad5c",
+ "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/923bb014708b666e4092c9ba39993895c9c8fcd7",
+ "reference": "923bb014708b666e4092c9ba39993895c9c8fcd7",
"shasum": ""
},
"require": {
"php": ">=5.5.9"
},
+ "conflict": {
+ "symfony/yaml": "<3.2"
+ },
"require-dev": {
"symfony/config": "~2.8|~3.0",
"symfony/expression-language": "~2.8|~3.0",
- "symfony/yaml": "~2.8.7|~3.0.7|~3.1.1|~3.2"
+ "symfony/yaml": "~3.2"
},
"suggest": {
"symfony/config": "",
@@ -862,7 +694,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -889,20 +721,20 @@
],
"description": "Symfony DependencyInjection Component",
"homepage": "https://symfony.com",
- "time": "2016-10-24 15:52:44"
+ "time": "2017-04-04 07:26:27"
},
{
"name": "symfony/event-dispatcher",
- "version": "v2.8.13",
+ "version": "v2.8.19",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "25c576abd4e0f212e678fe8b2bd9a9a98c7ea934"
+ "reference": "88b65f0ac25355090e524aba4ceb066025df8bd2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/25c576abd4e0f212e678fe8b2bd9a9a98c7ea934",
- "reference": "25c576abd4e0f212e678fe8b2bd9a9a98c7ea934",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/88b65f0ac25355090e524aba4ceb066025df8bd2",
+ "reference": "88b65f0ac25355090e524aba4ceb066025df8bd2",
"shasum": ""
},
"require": {
@@ -910,7 +742,7 @@
},
"require-dev": {
"psr/log": "~1.0",
- "symfony/config": "~2.0,>=2.0.5|~3.0.0",
+ "symfony/config": "^2.0.5|~3.0.0",
"symfony/dependency-injection": "~2.6|~3.0.0",
"symfony/expression-language": "~2.6|~3.0.0",
"symfony/stopwatch": "~2.3|~3.0.0"
@@ -949,20 +781,20 @@
],
"description": "Symfony EventDispatcher Component",
"homepage": "https://symfony.com",
- "time": "2016-10-13 01:43:15"
+ "time": "2017-04-03 20:37:06"
},
{
"name": "symfony/filesystem",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/filesystem.git",
- "reference": "0565b61bf098cb4dc09f4f103f033138ae4f42c6"
+ "reference": "64421e6479c4a8e60d790fb666bd520992861b66"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/0565b61bf098cb4dc09f4f103f033138ae4f42c6",
- "reference": "0565b61bf098cb4dc09f4f103f033138ae4f42c6",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/64421e6479c4a8e60d790fb666bd520992861b66",
+ "reference": "64421e6479c4a8e60d790fb666bd520992861b66",
"shasum": ""
},
"require": {
@@ -971,7 +803,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -998,20 +830,20 @@
],
"description": "Symfony Filesystem Component",
"homepage": "https://symfony.com",
- "time": "2016-10-18 04:30:12"
+ "time": "2017-03-26 15:47:15"
},
{
"name": "symfony/finder",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "205b5ffbb518a98ba2ae60a52656c4a31ab00c6f"
+ "reference": "b20900ce5ea164cd9314af52725b0bb5a758217a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/205b5ffbb518a98ba2ae60a52656c4a31ab00c6f",
- "reference": "205b5ffbb518a98ba2ae60a52656c4a31ab00c6f",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/b20900ce5ea164cd9314af52725b0bb5a758217a",
+ "reference": "b20900ce5ea164cd9314af52725b0bb5a758217a",
"shasum": ""
},
"require": {
@@ -1020,7 +852,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -1047,64 +879,70 @@
],
"description": "Symfony Finder Component",
"homepage": "https://symfony.com",
- "time": "2016-09-28 00:11:12"
+ "time": "2017-03-20 09:32:19"
},
{
"name": "symfony/framework-bundle",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/framework-bundle.git",
- "reference": "9f4cb23e6ef2e4def3ad666c15ea784353c07cb0"
+ "reference": "890d3788eefced26ca73c3b3d12f9f5423e0c427"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/9f4cb23e6ef2e4def3ad666c15ea784353c07cb0",
- "reference": "9f4cb23e6ef2e4def3ad666c15ea784353c07cb0",
+ "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/890d3788eefced26ca73c3b3d12f9f5423e0c427",
+ "reference": "890d3788eefced26ca73c3b3d12f9f5423e0c427",
"shasum": ""
},
"require": {
- "doctrine/annotations": "~1.0",
"doctrine/cache": "~1.0",
"php": ">=5.5.9",
- "symfony/asset": "~2.8|~3.0",
- "symfony/cache": "~3.1",
- "symfony/class-loader": "~2.8|~3.0",
+ "symfony/cache": "~3.2.2|~3.3",
+ "symfony/class-loader": "~3.2",
"symfony/config": "~2.8|~3.0",
- "symfony/dependency-injection": "~3.1",
+ "symfony/dependency-injection": "~3.2.1|~3.3",
"symfony/event-dispatcher": "~2.8|~3.0",
"symfony/filesystem": "~2.8|~3.0",
"symfony/finder": "~2.8|~3.0",
"symfony/http-foundation": "~3.1",
- "symfony/http-kernel": "~3.1.2|~3.2",
+ "symfony/http-kernel": "^3.2.5",
"symfony/polyfill-mbstring": "~1.0",
- "symfony/routing": "~3.0",
+ "symfony/routing": "~3.1.10|^3.2.3",
"symfony/security-core": "~2.8|~3.0",
"symfony/security-csrf": "~2.8|~3.0",
- "symfony/stopwatch": "~2.8|~3.0",
- "symfony/templating": "~2.8|~3.0",
- "symfony/translation": "~2.8|~3.0"
+ "symfony/stopwatch": "~2.8|~3.0"
},
"conflict": {
"phpdocumentor/reflection-docblock": "<3.0",
- "phpdocumentor/type-resolver": "<0.2.0"
+ "phpdocumentor/type-resolver": "<0.2.0",
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
+ "symfony/translation": "<3.2"
},
"require-dev": {
+ "doctrine/annotations": "~1.0",
"phpdocumentor/reflection-docblock": "^3.0",
+ "sensio/framework-extra-bundle": "^3.0.2",
+ "symfony/asset": "~2.8|~3.0",
"symfony/browser-kit": "~2.8|~3.0",
- "symfony/console": "~2.8.8|~3.0.8|~3.1.2|~3.2",
+ "symfony/console": "~2.8.19|^3.2.7",
"symfony/css-selector": "~2.8|~3.0",
"symfony/dom-crawler": "~2.8|~3.0",
"symfony/expression-language": "~2.8|~3.0",
- "symfony/form": "~2.8|~3.0",
+ "symfony/form": "^2.8.18|^3.2.5",
"symfony/polyfill-intl-icu": "~1.0",
"symfony/process": "~2.8|~3.0",
- "symfony/property-info": "~2.8|~3.0",
+ "symfony/property-info": "~3.1",
"symfony/security": "~2.8|~3.0",
- "symfony/serializer": "~2.8|^3.0",
- "symfony/validator": "~3.1",
- "symfony/yaml": "~2.8|~3.0",
- "twig/twig": "~1.23|~2.0"
+ "symfony/security-core": "~3.2",
+ "symfony/security-csrf": "~2.8|~3.0",
+ "symfony/serializer": "~2.8|~3.0",
+ "symfony/templating": "~2.8|~3.0",
+ "symfony/translation": "~3.2",
+ "symfony/validator": "~3.2",
+ "symfony/workflow": "~3.2",
+ "symfony/yaml": "~3.2",
+ "twig/twig": "~1.26|~2.0"
},
"suggest": {
"ext-apcu": "For best performance of the system caches",
@@ -1119,7 +957,7 @@
"type": "symfony-bundle",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -1146,20 +984,20 @@
],
"description": "Symfony FrameworkBundle",
"homepage": "https://symfony.com",
- "time": "2016-10-23 01:13:38"
+ "time": "2017-04-04 18:55:04"
},
{
"name": "symfony/http-foundation",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "f21e5a8b88274b7720779aa88f9c02c6d6ec08d7"
+ "reference": "cb0b6418f588952c9290b3df4ca650f1b7ab570a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f21e5a8b88274b7720779aa88f9c02c6d6ec08d7",
- "reference": "f21e5a8b88274b7720779aa88f9c02c6d6ec08d7",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cb0b6418f588952c9290b3df4ca650f1b7ab570a",
+ "reference": "cb0b6418f588952c9290b3df4ca650f1b7ab570a",
"shasum": ""
},
"require": {
@@ -1172,7 +1010,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -1199,20 +1037,20 @@
],
"description": "Symfony HttpFoundation Component",
"homepage": "https://symfony.com",
- "time": "2016-10-24 15:52:44"
+ "time": "2017-04-04 15:30:56"
},
{
"name": "symfony/http-kernel",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "c235f1b13ba67012e283996a5427f22e2e04be14"
+ "reference": "8285ab5faf1306b1a5ebcf287fe91c231a6de88e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c235f1b13ba67012e283996a5427f22e2e04be14",
- "reference": "c235f1b13ba67012e283996a5427f22e2e04be14",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/8285ab5faf1306b1a5ebcf287fe91c231a6de88e",
+ "reference": "8285ab5faf1306b1a5ebcf287fe91c231a6de88e",
"shasum": ""
},
"require": {
@@ -1240,7 +1078,7 @@
"symfony/stopwatch": "~2.8|~3.0",
"symfony/templating": "~2.8|~3.0",
"symfony/translation": "~2.8|~3.0",
- "symfony/var-dumper": "~2.8|~3.0"
+ "symfony/var-dumper": "~3.2"
},
"suggest": {
"symfony/browser-kit": "",
@@ -1254,7 +1092,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -1281,20 +1119,20 @@
],
"description": "Symfony HttpKernel Component",
"homepage": "https://symfony.com",
- "time": "2016-10-27 02:38:31"
+ "time": "2017-04-05 12:52:03"
},
{
"name": "symfony/polyfill-mbstring",
- "version": "v1.2.0",
+ "version": "v1.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "dff51f72b0706335131b00a7f49606168c582594"
+ "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/dff51f72b0706335131b00a7f49606168c582594",
- "reference": "dff51f72b0706335131b00a7f49606168c582594",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/e79d363049d1c2128f133a2667e4f4190904f7f4",
+ "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4",
"shasum": ""
},
"require": {
@@ -1306,7 +1144,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2-dev"
+ "dev-master": "1.3-dev"
}
},
"autoload": {
@@ -1340,20 +1178,20 @@
"portable",
"shim"
],
- "time": "2016-05-18 14:26:46"
+ "time": "2016-11-14 01:06:16"
},
{
"name": "symfony/polyfill-php56",
- "version": "v1.2.0",
+ "version": "v1.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php56.git",
- "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a"
+ "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/3edf57a8fbf9a927533344cef65ad7e1cf31030a",
- "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a",
+ "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/1dd42b9b89556f18092f3d1ada22cb05ac85383c",
+ "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c",
"shasum": ""
},
"require": {
@@ -1363,7 +1201,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2-dev"
+ "dev-master": "1.3-dev"
}
},
"autoload": {
@@ -1396,20 +1234,20 @@
"portable",
"shim"
],
- "time": "2016-05-18 14:26:46"
+ "time": "2016-11-14 01:06:16"
},
{
"name": "symfony/polyfill-php70",
- "version": "v1.2.0",
+ "version": "v1.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php70.git",
- "reference": "a42f4b6b05ed458910f8af4c4e1121b0101b2d85"
+ "reference": "13ce343935f0f91ca89605a2f6ca6f5c2f3faac2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/a42f4b6b05ed458910f8af4c4e1121b0101b2d85",
- "reference": "a42f4b6b05ed458910f8af4c4e1121b0101b2d85",
+ "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/13ce343935f0f91ca89605a2f6ca6f5c2f3faac2",
+ "reference": "13ce343935f0f91ca89605a2f6ca6f5c2f3faac2",
"shasum": ""
},
"require": {
@@ -1419,7 +1257,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2-dev"
+ "dev-master": "1.3-dev"
}
},
"autoload": {
@@ -1455,20 +1293,20 @@
"portable",
"shim"
],
- "time": "2016-05-18 14:26:46"
+ "time": "2016-11-14 01:06:16"
},
{
"name": "symfony/polyfill-util",
- "version": "v1.2.0",
+ "version": "v1.3.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-util.git",
- "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99"
+ "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/ef830ce3d218e622b221d6bfad42c751d974bf99",
- "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99",
+ "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/746bce0fca664ac0a575e465f65c6643faddf7fb",
+ "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb",
"shasum": ""
},
"require": {
@@ -1477,7 +1315,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2-dev"
+ "dev-master": "1.3-dev"
}
},
"autoload": {
@@ -1507,20 +1345,20 @@
"polyfill",
"shim"
],
- "time": "2016-05-18 14:26:46"
+ "time": "2016-11-14 01:06:16"
},
{
"name": "symfony/routing",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
- "reference": "8edf62498a1a4c57ba317664a4b698339c10cdf6"
+ "reference": "d6605f9a5767bc5bc4895e1c762ba93964608aee"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/8edf62498a1a4c57ba317664a4b698339c10cdf6",
- "reference": "8edf62498a1a4c57ba317664a4b698339c10cdf6",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/d6605f9a5767bc5bc4895e1c762ba93964608aee",
+ "reference": "d6605f9a5767bc5bc4895e1c762ba93964608aee",
"shasum": ""
},
"require": {
@@ -1549,7 +1387,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -1582,20 +1420,20 @@
"uri",
"url"
],
- "time": "2016-08-16 14:58:24"
+ "time": "2017-03-02 15:58:09"
},
{
"name": "symfony/security-core",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/security-core.git",
- "reference": "665259f6d2f826a21e75ee2e8e3ef24bd9a46e13"
+ "reference": "9854d006c38188f6db1000f47404b3d424e00adf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/security-core/zipball/665259f6d2f826a21e75ee2e8e3ef24bd9a46e13",
- "reference": "665259f6d2f826a21e75ee2e8e3ef24bd9a46e13",
+ "url": "https://api.github.com/repos/symfony/security-core/zipball/9854d006c38188f6db1000f47404b3d424e00adf",
+ "reference": "9854d006c38188f6db1000f47404b3d424e00adf",
"shasum": ""
},
"require": {
@@ -1609,7 +1447,7 @@
"symfony/expression-language": "~2.8|~3.0",
"symfony/http-foundation": "~2.8|~3.0",
"symfony/ldap": "~3.1",
- "symfony/validator": "~2.8|~3.0"
+ "symfony/validator": "^2.8.18|^3.2.5"
},
"suggest": {
"symfony/event-dispatcher": "",
@@ -1621,7 +1459,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -1648,20 +1486,20 @@
],
"description": "Symfony Security Component - Core Library",
"homepage": "https://symfony.com",
- "time": "2016-10-06 01:44:51"
+ "time": "2017-04-04 15:30:56"
},
{
"name": "symfony/security-csrf",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/security-csrf.git",
- "reference": "74c6156851615ba3efa82074d891856481dadf0e"
+ "reference": "6351788ce9d3217a5a01095d278d480b90bdacbc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/security-csrf/zipball/74c6156851615ba3efa82074d891856481dadf0e",
- "reference": "74c6156851615ba3efa82074d891856481dadf0e",
+ "url": "https://api.github.com/repos/symfony/security-csrf/zipball/6351788ce9d3217a5a01095d278d480b90bdacbc",
+ "reference": "6351788ce9d3217a5a01095d278d480b90bdacbc",
"shasum": ""
},
"require": {
@@ -1679,7 +1517,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -1706,20 +1544,20 @@
],
"description": "Symfony Security Component - CSRF Library",
"homepage": "https://symfony.com",
- "time": "2016-07-05 11:09:33"
+ "time": "2017-02-18 17:28:00"
},
{
"name": "symfony/stopwatch",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/stopwatch.git",
- "reference": "bb42806b12c5f89db4ebf64af6741afe6d8457e1"
+ "reference": "c5ee0f8650c84b4d36a5f76b3b504233feaabf75"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/stopwatch/zipball/bb42806b12c5f89db4ebf64af6741afe6d8457e1",
- "reference": "bb42806b12c5f89db4ebf64af6741afe6d8457e1",
+ "url": "https://api.github.com/repos/symfony/stopwatch/zipball/c5ee0f8650c84b4d36a5f76b3b504233feaabf75",
+ "reference": "c5ee0f8650c84b4d36a5f76b3b504233feaabf75",
"shasum": ""
},
"require": {
@@ -1728,7 +1566,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -1755,126 +1593,7 @@
],
"description": "Symfony Stopwatch Component",
"homepage": "https://symfony.com",
- "time": "2016-06-29 05:41:56"
- },
- {
- "name": "symfony/templating",
- "version": "v3.1.6",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/templating.git",
- "reference": "619e1dafc0e014d18492f5ba5722ddf17c3a7655"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/templating/zipball/619e1dafc0e014d18492f5ba5722ddf17c3a7655",
- "reference": "619e1dafc0e014d18492f5ba5722ddf17c3a7655",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9"
- },
- "require-dev": {
- "psr/log": "~1.0"
- },
- "suggest": {
- "psr/log": "For using debug logging in loaders"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Templating\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony Templating Component",
- "homepage": "https://symfony.com",
- "time": "2016-09-06 11:02:40"
- },
- {
- "name": "symfony/translation",
- "version": "v3.1.6",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/translation.git",
- "reference": "ff1285087397d2f64041b35e591f3025881c90cd"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/ff1285087397d2f64041b35e591f3025881c90cd",
- "reference": "ff1285087397d2f64041b35e591f3025881c90cd",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "symfony/config": "<2.8"
- },
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "~2.8|~3.0",
- "symfony/intl": "~2.8|~3.0",
- "symfony/yaml": "~2.8|~3.0"
- },
- "suggest": {
- "psr/log": "To use logging capability in translator",
- "symfony/config": "",
- "symfony/yaml": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Translation\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony Translation Component",
- "homepage": "https://symfony.com",
- "time": "2016-10-18 04:30:12"
+ "time": "2017-02-18 17:28:00"
}
],
"packages-dev": [
@@ -2130,16 +1849,16 @@
},
{
"name": "phpdocumentor/type-resolver",
- "version": "0.2",
+ "version": "0.2.1",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443"
+ "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/b39c7a5b194f9ed7bd0dd345c751007a41862443",
- "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
+ "reference": "e224fb2ea2fba6d3ad6fdaef91cd09a172155ccb",
"shasum": ""
},
"require": {
@@ -2173,31 +1892,32 @@
"email": "me@mikevanriel.com"
}
],
- "time": "2016-06-10 07:14:17"
+ "time": "2016-11-25 06:54:22"
},
{
"name": "phpspec/prophecy",
- "version": "v1.6.1",
+ "version": "v1.7.0",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
- "reference": "58a8137754bc24b25740d4281399a4a3596058e0"
+ "reference": "93d39f1f7f9326d746203c7c056f300f7f126073"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/58a8137754bc24b25740d4281399a4a3596058e0",
- "reference": "58a8137754bc24b25740d4281399a4a3596058e0",
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/93d39f1f7f9326d746203c7c056f300f7f126073",
+ "reference": "93d39f1f7f9326d746203c7c056f300f7f126073",
"shasum": ""
},
"require": {
"doctrine/instantiator": "^1.0.2",
"php": "^5.3|^7.0",
"phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
- "sebastian/comparator": "^1.1",
- "sebastian/recursion-context": "^1.0"
+ "sebastian/comparator": "^1.1|^2.0",
+ "sebastian/recursion-context": "^1.0|^2.0|^3.0"
},
"require-dev": {
- "phpspec/phpspec": "^2.0"
+ "phpspec/phpspec": "^2.5|^3.2",
+ "phpunit/phpunit": "^4.8 || ^5.6.5"
},
"type": "library",
"extra": {
@@ -2235,7 +1955,7 @@
"spy",
"stub"
],
- "time": "2016-06-07 08:13:47"
+ "time": "2017-03-02 20:05:34"
},
{
"name": "phpunit/php-code-coverage",
@@ -2301,16 +2021,16 @@
},
{
"name": "phpunit/php-file-iterator",
- "version": "1.4.1",
+ "version": "1.4.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
+ "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
- "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
+ "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5",
"shasum": ""
},
"require": {
@@ -2344,7 +2064,7 @@
"filesystem",
"iterator"
],
- "time": "2015-06-21 13:08:43"
+ "time": "2016-10-03 07:40:28"
},
{
"name": "phpunit/php-text-template",
@@ -2389,25 +2109,30 @@
},
{
"name": "phpunit/php-timer",
- "version": "1.0.8",
+ "version": "1.0.9",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260"
+ "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/38e9124049cf1a164f1e4537caf19c99bf1eb260",
- "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
+ "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^5.3.3 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~4|~5"
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
"autoload": {
"classmap": [
"src/"
@@ -2429,20 +2154,20 @@
"keywords": [
"timer"
],
- "time": "2016-05-12 18:03:57"
+ "time": "2017-02-26 11:10:40"
},
{
"name": "phpunit/php-token-stream",
- "version": "1.4.8",
+ "version": "1.4.11",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-token-stream.git",
- "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
+ "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
- "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/e03f8f67534427a787e21a385a67ec3ca6978ea7",
+ "reference": "e03f8f67534427a787e21a385a67ec3ca6978ea7",
"shasum": ""
},
"require": {
@@ -2478,20 +2203,20 @@
"keywords": [
"tokenizer"
],
- "time": "2015-09-15 10:49:45"
+ "time": "2017-02-27 10:12:30"
},
{
"name": "phpunit/phpunit",
- "version": "4.8.27",
+ "version": "4.8.35",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "c062dddcb68e44b563f66ee319ddae2b5a322a90"
+ "reference": "791b1a67c25af50e230f841ee7a9c6eba507dc87"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c062dddcb68e44b563f66ee319ddae2b5a322a90",
- "reference": "c062dddcb68e44b563f66ee319ddae2b5a322a90",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/791b1a67c25af50e230f841ee7a9c6eba507dc87",
+ "reference": "791b1a67c25af50e230f841ee7a9c6eba507dc87",
"shasum": ""
},
"require": {
@@ -2507,7 +2232,7 @@
"phpunit/php-text-template": "~1.2",
"phpunit/php-timer": "^1.0.6",
"phpunit/phpunit-mock-objects": "~2.3",
- "sebastian/comparator": "~1.1",
+ "sebastian/comparator": "~1.2.2",
"sebastian/diff": "~1.2",
"sebastian/environment": "~1.3",
"sebastian/exporter": "~1.2",
@@ -2550,7 +2275,7 @@
"testing",
"xunit"
],
- "time": "2016-07-21 06:48:14"
+ "time": "2017-02-06 05:18:07"
},
{
"name": "phpunit/phpunit-mock-objects",
@@ -2610,22 +2335,22 @@
},
{
"name": "sebastian/comparator",
- "version": "1.2.0",
+ "version": "1.2.4",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
+ "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
- "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
+ "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
"shasum": ""
},
"require": {
"php": ">=5.3.3",
"sebastian/diff": "~1.2",
- "sebastian/exporter": "~1.2"
+ "sebastian/exporter": "~1.2 || ~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.4"
@@ -2670,7 +2395,7 @@
"compare",
"equality"
],
- "time": "2015-07-26 15:48:44"
+ "time": "2017-01-29 09:50:25"
},
{
"name": "sebastian/diff",
@@ -2894,16 +2619,16 @@
},
{
"name": "sebastian/recursion-context",
- "version": "1.0.2",
+ "version": "1.0.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "913401df809e99e4f47b27cdd781f4a258d58791"
+ "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791",
- "reference": "913401df809e99e4f47b27cdd781f4a258d58791",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
+ "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
"shasum": ""
},
"require": {
@@ -2943,7 +2668,7 @@
],
"description": "Provides functionality to recursively process PHP variables",
"homepage": "http://www.github.com/sebastianbergmann/recursion-context",
- "time": "2015-11-11 19:50:13"
+ "time": "2016-10-03 07:41:43"
},
{
"name": "sebastian/version",
@@ -2982,25 +2707,31 @@
},
{
"name": "symfony/yaml",
- "version": "v3.1.6",
+ "version": "v3.2.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
- "reference": "7ff51b06c6c3d5cc6686df69004a42c69df09e27"
+ "reference": "62b4cdb99d52cb1ff253c465eb1532a80cebb621"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/7ff51b06c6c3d5cc6686df69004a42c69df09e27",
- "reference": "7ff51b06c6c3d5cc6686df69004a42c69df09e27",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/62b4cdb99d52cb1ff253c465eb1532a80cebb621",
+ "reference": "62b4cdb99d52cb1ff253c465eb1532a80cebb621",
"shasum": ""
},
"require": {
"php": ">=5.5.9"
},
+ "require-dev": {
+ "symfony/console": "~2.8|~3.0"
+ },
+ "suggest": {
+ "symfony/console": "For validating YAML files using the lint command"
+ },
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev"
+ "dev-master": "3.2-dev"
}
},
"autoload": {
@@ -3027,24 +2758,24 @@
],
"description": "Symfony Yaml Component",
"homepage": "https://symfony.com",
- "time": "2016-10-24 18:41:13"
+ "time": "2017-03-20 09:45:15"
},
{
"name": "webmozart/assert",
- "version": "1.1.0",
+ "version": "1.2.0",
"source": {
"type": "git",
"url": "https://github.com/webmozart/assert.git",
- "reference": "bb2d123231c095735130cc8f6d31385a44c7b308"
+ "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozart/assert/zipball/bb2d123231c095735130cc8f6d31385a44c7b308",
- "reference": "bb2d123231c095735130cc8f6d31385a44c7b308",
+ "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
+ "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
"shasum": ""
},
"require": {
- "php": "^5.3.3|^7.0"
+ "php": "^5.3.3 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.6",
@@ -3053,7 +2784,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2-dev"
+ "dev-master": "1.3-dev"
}
},
"autoload": {
@@ -3077,7 +2808,7 @@
"check",
"validate"
],
- "time": "2016-08-09 15:02:57"
+ "time": "2016-11-23 20:04:58"
}
],
"aliases": [],