-
- {{ ex.class|abbr_class }}: {{ ex.message|nl2br|format_file_from_text }}
- {% spaceless %}
-
-
-
-
- {% endspaceless %}
-
-
-
- {% for i, trace in ex.trace %}
-
- {% include 'TwigBundle:Exception:trace.html.twig' with { 'prefix': position, 'i': i, 'trace': trace } only %}
-
- {% endfor %}
-
+{% for index, exception in job.stackTrace.toarray %}
+
+
+
+
+
+
+ {{ exception.class|split('\\')|slice(0, -1)|join('\\') }}
+ {{- exception.class|split('\\')|length > 1 ? '\\' }}
+
+ {{ exception.class|split('\\')|last }}
+
+ {{ include('@Twig/images/icon-minus-square-o.svg') }}
+ {{ include('@Twig/images/icon-plus-square-o.svg') }}
+
+
+ {% if exception.message is not empty and index > 1 %}
+ {{ exception.message }}
+ {% endif %}
+
+
+
+
+ {% set _is_first_user_code = true %}
+ {% for i, trace in exception.trace %}
+ {% set _display_code_snippet = _is_first_user_code and ('/vendor/' not in trace.file) and ('/var/cache/' not in trace.file) and (trace.file is not empty) %}
+ {% if _display_code_snippet %}{% set _is_first_user_code = false %}{% endif %}
+
+ {{ include('@Twig/Exception/trace.html.twig', { prefix: index, i: i, trace: trace, _display_code_snippet: _display_code_snippet }, with_context = false) }}
+
+ {% endfor %}
+
+
{% endfor %}
{% endif %}
@@ -180,36 +204,16 @@
{% endif %}
-
+ });
+
{% endblock %}
diff --git a/Resources/views/Job/overview.html.twig b/Resources/views/Job/overview.html.twig
index 6d8e5620..21c9e652 100644
--- a/Resources/views/Job/overview.html.twig
+++ b/Resources/views/Job/overview.html.twig
@@ -1,5 +1,5 @@
-{% extends "JMSJobQueueBundle::base.html.twig" %}
-{% import "JMSJobQueueBundle:Job:macros.html.twig" as macros %}
+{% extends "@JMSJobQueue/base.html.twig" %}
+{% import "@JMSJobQueue/Job/macros.html.twig" as macros %}
{% block title %}Overview - {{ parent() }}{% endblock %}
diff --git a/Resources/views/base.html.twig b/Resources/views/base.html.twig
index 6ea37fc6..87c6be63 100644
--- a/Resources/views/base.html.twig
+++ b/Resources/views/base.html.twig
@@ -3,6 +3,8 @@
{% block title %}JMSJobQueueBundle{% endblock %}
+
+ {% block stylesheets "" %}
diff --git a/Tests/Entity/JobTest.php b/Tests/Entity/JobTest.php
index 04b852c8..e8abda45 100644
--- a/Tests/Entity/JobTest.php
+++ b/Tests/Entity/JobTest.php
@@ -19,8 +19,9 @@
namespace JMS\JobQueueBundle\Tests\Entity;
use JMS\JobQueueBundle\Entity\Job;
+use PHPUnit\Framework\TestCase;
-class JobTest extends \PHPUnit_Framework_TestCase
+class JobTest extends TestCase
{
public function testConstruct()
{
diff --git a/Tests/Functional/AppKernel.php b/Tests/Functional/AppKernel.php
index 62ae53e2..665339e5 100644
--- a/Tests/Functional/AppKernel.php
+++ b/Tests/Functional/AppKernel.php
@@ -23,7 +23,7 @@ class AppKernel extends Kernel
public function __construct($config)
{
- parent::__construct('test', true);
+ parent::__construct('test', false);
$fs = new Filesystem();
if (!$fs->isAbsolutePath($config)) {
@@ -44,8 +44,6 @@ public function registerBundles()
new \Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new \Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(),
new \Symfony\Bundle\TwigBundle\TwigBundle(),
- new \JMS\AopBundle\JMSAopBundle(),
- new \JMS\DiExtraBundle\JMSDiExtraBundle($this),
new \JMS\JobQueueBundle\Tests\Functional\TestBundle\TestBundle(),
new \JMS\JobQueueBundle\JMSJobQueueBundle(),
diff --git a/Tests/Functional/CronTest.php b/Tests/Functional/CronTest.php
index 400c17ea..16f4476a 100644
--- a/Tests/Functional/CronTest.php
+++ b/Tests/Functional/CronTest.php
@@ -18,7 +18,7 @@ class CronTest extends BaseTestCase
public function testSchedulesCommands()
{
$output = $this->doRun(array('--min-job-interval' => 1, '--max-runtime' => 12));
- $this->assertEquals(2, substr_count($output, 'Scheduling command scheduled-every-few-seconds'));
+ $this->assertEquals(2, substr_count($output, 'Scheduling command scheduled-every-few-seconds'), $output);
}
protected function setUp()
diff --git a/Tests/Functional/JobRepositoryTest.php b/Tests/Functional/JobManagerTest.php
similarity index 76%
rename from Tests/Functional/JobRepositoryTest.php
rename to Tests/Functional/JobManagerTest.php
index 1a20b95e..38bb26e3 100644
--- a/Tests/Functional/JobRepositoryTest.php
+++ b/Tests/Functional/JobManagerTest.php
@@ -2,23 +2,26 @@
namespace JMS\JobQueueBundle\Tests\Functional;
+use JMS\JobQueueBundle\Retry\ExponentialRetryScheduler;
+use JMS\JobQueueBundle\Retry\RetryScheduler;
use JMS\JobQueueBundle\Tests\Functional\TestBundle\Entity\Train;
use JMS\JobQueueBundle\Tests\Functional\TestBundle\Entity\Wagon;
+use PHPUnit\Framework\Constraint\LogicalNot;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Doctrine\ORM\EntityManager;
-use JMS\JobQueueBundle\Entity\Repository\JobRepository;
+use JMS\JobQueueBundle\Entity\Repository\JobManager;
use JMS\JobQueueBundle\Event\StateChangeEvent;
use JMS\JobQueueBundle\Entity\Job;
-class JobRepositoryTest extends BaseTestCase
+class JobManagerTest extends BaseTestCase
{
/** @var EntityManager */
private $em;
- /** @var JobRepository */
- private $repo;
+ /** @var JobManager */
+ private $jobManager;
/** @var EventDispatcher */
private $dispatcher;
@@ -31,8 +34,8 @@ public function testGetOne()
$this->em->persist($a2);
$this->em->flush();
- $this->assertSame($a, $this->repo->getJob('a', array('foo')));
- $this->assertSame($a2, $this->repo->getJob('a'));
+ $this->assertSame($a, $this->jobManager->getJob('a', array('foo')));
+ $this->assertSame($a2, $this->jobManager->getJob('a'));
}
/**
@@ -41,14 +44,14 @@ public function testGetOne()
*/
public function testGetOneThrowsWhenNotFound()
{
- $this->repo->getJob('foo');
+ $this->jobManager->getJob('foo');
}
public function getOrCreateIfNotExists()
{
- $a = $this->repo->getOrCreateIfNotExists('a');
- $this->assertSame($a, $this->repo->getOrCreateIfNotExists('a'));
- $this->assertNotSame($a, $this->repo->getOrCreateIfNotExists('a', array('foo')));
+ $a = $this->jobManager->getOrCreateIfNotExists('a');
+ $this->assertSame($a, $this->jobManager->getOrCreateIfNotExists('a'));
+ $this->assertNotSame($a, $this->jobManager->getOrCreateIfNotExists('a', array('foo')));
}
public function testFindPendingJobReturnsAllDependencies()
@@ -67,7 +70,7 @@ public function testFindPendingJobReturnsAllDependencies()
$this->em->flush();
$this->em->clear();
- $cReloaded = $this->repo->findPendingJob(array($a->getId(), $b->getId()));
+ $cReloaded = $this->jobManager->findPendingJob(array($a->getId(), $b->getId()));
$this->assertNotNull($cReloaded);
$this->assertEquals($c->getId(), $cReloaded->getId());
$this->assertCount(2, $cReloaded->getDependencies());
@@ -75,7 +78,7 @@ public function testFindPendingJobReturnsAllDependencies()
public function testFindPendingJob()
{
- $this->assertNull($this->repo->findPendingJob());
+ $this->assertNull($this->jobManager->findPendingJob());
$a = new Job('a');
$a->setState('running');
@@ -84,13 +87,13 @@ public function testFindPendingJob()
$this->em->persist($b);
$this->em->flush();
- $this->assertSame($b, $this->repo->findPendingJob());
- $this->assertNull($this->repo->findPendingJob(array($b->getId())));
+ $this->assertSame($b, $this->jobManager->findPendingJob());
+ $this->assertNull($this->jobManager->findPendingJob(array($b->getId())));
}
public function testFindPendingJobInRestrictedQueue()
{
- $this->assertNull($this->repo->findPendingJob());
+ $this->assertNull($this->jobManager->findPendingJob());
$a = new Job('a');
$b = new Job('b', array(), true, 'other_queue');
@@ -98,13 +101,13 @@ public function testFindPendingJobInRestrictedQueue()
$this->em->persist($b);
$this->em->flush();
- $this->assertSame($a, $this->repo->findPendingJob());
- $this->assertSame($b, $this->repo->findPendingJob(array(), array(), array('other_queue')));
+ $this->assertSame($a, $this->jobManager->findPendingJob());
+ $this->assertSame($b, $this->jobManager->findPendingJob(array(), array(), array('other_queue')));
}
public function testFindStartableJob()
{
- $this->assertNull($this->repo->findStartableJob('my-name'));
+ $this->assertNull($this->jobManager->findStartableJob('my-name'));
$a = new Job('a');
$a->setState('running');
@@ -118,7 +121,7 @@ public function testFindStartableJob()
$excludedIds = array();
- $this->assertSame($c, $this->repo->findStartableJob('my-name', $excludedIds));
+ $this->assertSame($c, $this->jobManager->findStartableJob('my-name', $excludedIds));
$this->assertEquals(array($b->getId()), $excludedIds);
}
@@ -136,7 +139,7 @@ public function testFindJobByRelatedEntity()
$this->assertFalse($this->em->contains($b));
- $reloadedB = $this->repo->findJobForRelatedEntity('b', $a);
+ $reloadedB = $this->jobManager->findJobForRelatedEntity('b', $a);
$this->assertNotNull($reloadedB);
$this->assertEquals($b->getId(), $reloadedB->getId());
$this->assertCount(1, $reloadedB->getRelatedEntities());
@@ -156,7 +159,7 @@ public function testFindStartableJobDetachesNonStartableJobs()
$this->assertTrue($this->em->contains($b));
$excludedIds = array();
- $startableJob = $this->repo->findStartableJob('my-name', $excludedIds);
+ $startableJob = $this->jobManager->findStartableJob('my-name', $excludedIds);
$this->assertNotNull($startableJob);
$this->assertEquals($b->getId(), $startableJob->getId());
$this->assertEquals(array($a->getId()), $excludedIds);
@@ -183,7 +186,7 @@ public function testCloseJob()
$this->assertEquals('running', $a->getState());
$this->assertEquals('pending', $b->getState());
- $this->repo->closeJob($a, 'terminated');
+ $this->jobManager->closeJob($a, 'terminated');
$this->assertEquals('terminated', $a->getState());
$this->assertEquals('canceled', $b->getState());
}
@@ -207,7 +210,7 @@ public function testCloseJobDoesNotCreateRetryJobsWhenCanceled()
->method('dispatch')
->with('jms_job_queue.job_state_change', new StateChangeEvent($b, 'canceled'));
- $this->repo->closeJob($a, 'canceled');
+ $this->jobManager->closeJob($a, 'canceled');
$this->assertEquals('canceled', $a->getState());
$this->assertCount(0, $a->getRetryJobs());
$this->assertEquals('canceled', $b->getState());
@@ -227,24 +230,24 @@ public function testCloseJobDoesNotCreateMoreThanAllowedRetries()
->with('jms_job_queue.job_state_change', new StateChangeEvent($a, 'failed'));
$this->dispatcher->expects($this->at(1))
->method('dispatch')
- ->with('jms_job_queue.job_state_change', new \PHPUnit_Framework_Constraint_Not($this->equalTo(new StateChangeEvent($a, 'failed'))));
+ ->with('jms_job_queue.job_state_change', new LogicalNot($this->equalTo(new StateChangeEvent($a, 'failed'))));
$this->dispatcher->expects($this->at(2))
->method('dispatch')
- ->with('jms_job_queue.job_state_change', new \PHPUnit_Framework_Constraint_Not($this->equalTo(new StateChangeEvent($a, 'failed'))));
+ ->with('jms_job_queue.job_state_change', new LogicalNot($this->equalTo(new StateChangeEvent($a, 'failed'))));
$this->assertCount(0, $a->getRetryJobs());
- $this->repo->closeJob($a, 'failed');
+ $this->jobManager->closeJob($a, 'failed');
$this->assertEquals('running', $a->getState());
$this->assertCount(1, $a->getRetryJobs());
$a->getRetryJobs()->first()->setState('running');
- $this->repo->closeJob($a->getRetryJobs()->first(), 'failed');
+ $this->jobManager->closeJob($a->getRetryJobs()->first(), 'failed');
$this->assertCount(2, $a->getRetryJobs());
$this->assertEquals('failed', $a->getRetryJobs()->first()->getState());
$this->assertEquals('running', $a->getState());
$a->getRetryJobs()->last()->setState('running');
- $this->repo->closeJob($a->getRetryJobs()->last(), 'terminated');
+ $this->jobManager->closeJob($a->getRetryJobs()->last(), 'terminated');
$this->assertCount(2, $a->getRetryJobs());
$this->assertEquals('terminated', $a->getRetryJobs()->last()->getState());
$this->assertEquals('terminated', $a->getState());
@@ -289,9 +292,12 @@ protected function setUp()
$this->createClient();
$this->importDatabaseSchema();
- $this->dispatcher = $this->getMock('Symfony\Component\EventDispatcher\EventDispatcherInterface');
- $this->em = self::$kernel->getContainer()->get('doctrine')->getManagerForClass('JMSJobQueueBundle:Job');
- $this->repo = $this->em->getRepository('JMSJobQueueBundle:Job');
- $this->repo->setDispatcher($this->dispatcher);
+ $this->dispatcher = $this->createMock('Symfony\Component\EventDispatcher\EventDispatcherInterface');
+ $this->em = self::$kernel->getContainer()->get('doctrine')->getManagerForClass(Job::class);
+ $this->jobManager = new JobManager(
+ self::$kernel->getContainer()->get('doctrine'),
+ $this->dispatcher,
+ new ExponentialRetryScheduler()
+ );
}
}
\ No newline at end of file
diff --git a/Tests/Functional/RunCommandTest.php b/Tests/Functional/RunCommandTest.php
index b2342f53..04b387a7 100644
--- a/Tests/Functional/RunCommandTest.php
+++ b/Tests/Functional/RunCommandTest.php
@@ -14,27 +14,27 @@ class RunCommandTest extends BaseTestCase
public function testRun()
{
- $a = new Job('a');
+ $a = new Job('adoigjaoisdjfijasodifjoiajsdf');
$b = new Job('b', array('foo'));
$b->addDependency($a);
$this->em->persist($a);
$this->em->persist($b);
$this->em->flush();
- $output = $this->doRun(array('--max-runtime' => 5, '--worker-name' => 'test'));
- $expectedOutput = "Started Job(id = 1, command = \"a\").\n"
- ."Job(id = 1, command = \"a\") finished with exit code 1.\n";
+ $output = $this->runConsoleCommand(array('--max-runtime' => 5, '--worker-name' => 'test'));
+ $expectedOutput = "Started Job(id = 1, command = \"adoigjaoisdjfijasodifjoiajsdf\").\n"
+ ."Job(id = 1, command = \"adoigjaoisdjfijasodifjoiajsdf\") finished with exit code 1.\n";
$this->assertEquals($expectedOutput, $output);
$this->assertEquals('failed', $a->getState());
$this->assertEquals('', $a->getOutput());
- $this->assertContains('Command "a" is not defined.', $a->getErrorOutput());
+ $this->assertContains('Command "adoigjaoisdjfijasodifjoiajsdf" is not defined.', $a->getErrorOutput());
$this->assertEquals('canceled', $b->getState());
}
public function testExitsAfterMaxRuntime()
{
$time = time();
- $output = $this->doRun(array('--max-runtime' => 1, '--worker-name' => 'test'));
+ $output = $this->runConsoleCommand(array('--max-runtime' => 1, '--worker-name' => 'test'));
$this->assertEquals('', $output);
$runtime = time() - $time;
@@ -47,7 +47,7 @@ public function testSuccessfulCommand()
$this->em->persist($job);
$this->em->flush($job);
- $this->doRun(array('--max-runtime' => 1, '--worker-name' => 'test'));
+ $this->runConsoleCommand(array('--max-runtime' => 1, '--worker-name' => 'test'));
$this->assertEquals('finished', $job->getState());
}
@@ -64,7 +64,7 @@ public function testQueueWithLimitedConcurrentJobs()
$this->em->flush();
- $this->doRun(array('--max-runtime' => 15, '--worker-name' => 'test'));
+ $this->runConsoleCommand(array('--max-runtime' => 15, '--worker-name' => 'test'));
$output = file_get_contents($outputFile);
unlink($outputFile);
@@ -97,7 +97,7 @@ public function testQueueWithMoreThanOneConcurrentJob()
}
$this->em->flush();
- $output = $this->doRun(array('--max-runtime' => 15, '--worker-name' => 'test'));
+ $output = $this->runConsoleCommand(array('--max-runtime' => 15, '--worker-name' => 'test'));
unlink($outputFile);
$this->assertStringStartsWith(<<em->persist($c);
$this->em->flush();
- $this->doRun(array('--max-runtime' => 1, '--queue' => array('other_queue'), '--worker-name' => 'test'));
+ $this->runConsoleCommand(array('--max-runtime' => 1, '--queue' => array('other_queue'), '--worker-name' => 'test'));
$this->assertEquals(Job::STATE_PENDING, $a->getState());
$this->assertEquals(Job::STATE_FINISHED, $b->getState());
$this->assertEquals(Job::STATE_PENDING, $c->getState());
@@ -150,7 +150,7 @@ public function testMultipleRestrictedQueues()
$this->em->persist($c);
$this->em->flush();
- $this->doRun(array('--max-runtime' => 1, '--queue' => array('other_queue', 'yet_another_queue'), '--worker-name' => 'test'));
+ $this->runConsoleCommand(array('--max-runtime' => 1, '--queue' => array('other_queue', 'yet_another_queue'), '--worker-name' => 'test'));
$this->assertEquals(Job::STATE_PENDING, $a->getState());
$this->assertEquals(Job::STATE_FINISHED, $b->getState());
$this->assertEquals(Job::STATE_FINISHED, $c->getState());
@@ -169,7 +169,7 @@ public function testNoRestrictedQueue()
$this->em->persist($c);
$this->em->flush();
- $this->doRun(array('--max-runtime' => 1, '--worker-name' => 'test'));
+ $this->runConsoleCommand(array('--max-runtime' => 1, '--worker-name' => 'test'));
$this->assertEquals(Job::STATE_FINISHED, $a->getState());
$this->assertEquals(Job::STATE_FINISHED, $b->getState());
$this->assertEquals(Job::STATE_FINISHED, $c->getState());
@@ -185,7 +185,7 @@ public function testRetry()
$this->em->persist($job);
$this->em->flush($job);
- $this->doRun(array('--max-runtime' => 12, '--verbose' => null, '--worker-name' => 'test'));
+ $this->runConsoleCommand(array('--max-runtime' => 12, '--verbose' => null, '--worker-name' => 'test'));
$this->assertEquals('finished', $job->getState());
$this->assertGreaterThan(0, count($job->getRetryJobs()));
@@ -199,7 +199,7 @@ public function testJobIsTerminatedIfMaxRuntimeIsExceeded()
$this->em->persist($job);
$this->em->flush($job);
- $this->doRun(array('--max-runtime' => 1, '--worker-name' => 'test'));
+ $this->runConsoleCommand(array('--max-runtime' => 1, '--worker-name' => 'test'));
$this->assertEquals('terminated', $job->getState());
}
@@ -215,7 +215,7 @@ public function testJobsWithHigherPriorityAreStartedFirst()
$this->em->persist($job);
$this->em->flush();
- $output = $this->doRun(array('--max-runtime' => 4, '--worker-name' => 'test'));
+ $output = $this->runConsoleCommand(array('--max-runtime' => 4, '--worker-name' => 'test'));
$this->assertEquals(<<em->persist($job);
$this->em->flush();
- $output = $this->doRun(array('--max-runtime' => 4, '--worker-name' => 'test'));
+ $output = $this->runConsoleCommand(array('--max-runtime' => 4, '--worker-name' => 'test'));
$this->assertEquals(<<assertNull($job->getMemoryUsage());
$this->assertNull($job->getMemoryUsageReal());
- $this->doRun(array('--max-runtime' => 1, '--worker-name' => 'test'));
+ $this->runConsoleCommand(array('--max-runtime' => 1, '--worker-name' => 'test'));
$this->assertNotNull($job->getStackTrace());
$this->assertNotNull($job->getMemoryUsage());
@@ -293,10 +293,12 @@ protected function setUp()
$this->em = self::$kernel->getContainer()->get('doctrine')->getManagerForClass('JMSJobQueueBundle:Job');
}
- private function doRun(array $args = array())
+ private function runConsoleCommand(array $args = array())
{
array_unshift($args, 'jms-job-queue:run');
$output = new MemoryOutput();
+
+ $_SERVER['SYMFONY_CONSOLE_FILE'] = __DIR__.'/console';
$this->app->run(new ArrayInput($args), $output);
return $output->getOutput();
diff --git a/Tests/Functional/SignalTest.php b/Tests/Functional/SignalTest.php
index 97c393db..0a6ee2e2 100644
--- a/Tests/Functional/SignalTest.php
+++ b/Tests/Functional/SignalTest.php
@@ -4,9 +4,10 @@
use Doctrine\ORM\EntityManager;
use JMS\JobQueueBundle\Entity\Job;
+use PHPUnit\Framework\TestCase;
use Symfony\Component\Process\Process;
-class SignalTest extends \PHPUnit_Framework_TestCase
+class SignalTest extends TestCase
{
public function testControlledExit()
{
diff --git a/Tests/Functional/TestBundle/Command/ScheduledEveryFewSecondsCommand.php b/Tests/Functional/TestBundle/Command/ScheduledEveryFewSecondsCommand.php
index e3c563a6..f136d0ae 100644
--- a/Tests/Functional/TestBundle/Command/ScheduledEveryFewSecondsCommand.php
+++ b/Tests/Functional/TestBundle/Command/ScheduledEveryFewSecondsCommand.php
@@ -4,27 +4,24 @@
use JMS\JobQueueBundle\Console\CronCommand;
use JMS\JobQueueBundle\Entity\Job;
-use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
+use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
-class ScheduledEveryFewSecondsCommand extends ContainerAwareCommand implements CronCommand
+class ScheduledEveryFewSecondsCommand extends Command implements CronCommand
{
- public function shouldBeScheduled(\DateTime $lastRunAt)
+ protected static $defaultName = 'scheduled-every-few-seconds';
+
+ public function shouldBeScheduled(\DateTime $lastRunAt): bool
{
return time() - $lastRunAt->getTimestamp() >= 5;
}
- public function createCronJob(\DateTime $_)
+ public function createCronJob(\DateTime $_): Job
{
return new Job('scheduled-every-few-seconds');
}
- protected function configure()
- {
- $this->setName('scheduled-every-few-seconds');
- }
-
protected function execute(InputInterface $input, OutputInterface $output)
{
$output->writeln('Done');
diff --git a/Tests/Functional/config/default.yml b/Tests/Functional/config/default.yml
index c0139084..4e37ea30 100644
--- a/Tests/Functional/config/default.yml
+++ b/Tests/Functional/config/default.yml
@@ -1,4 +1,4 @@
imports:
- { resource: framework.yml }
- { resource: doctrine.yml }
- - { resource: twig.yml }
+
diff --git a/Tests/Functional/config/framework.yml b/Tests/Functional/config/framework.yml
index 0f82607a..c49670f6 100644
--- a/Tests/Functional/config/framework.yml
+++ b/Tests/Functional/config/framework.yml
@@ -1,12 +1,12 @@
framework:
secret: test
- test: ~
- session:
- storage_id: session.storage.filesystem
- form: true
- csrf_protection: true
- validation:
- enabled: true
- enable_annotations: true
+ test: true
router:
- resource: %kernel.root_dir%/config/routing.yml
\ No newline at end of file
+ resource: "%kernel.root_dir%/config/routing.yml"
+
+services:
+ JMS\JobQueueBundle\Tests\Functional\TestBundle\Command\:
+ autoconfigure: true
+ autowire: true
+ resource: '../TestBundle/Command'
+ tags: ['console.command']
diff --git a/Tests/Functional/config/persistent_db.yml b/Tests/Functional/config/persistent_db.yml
index 472b75fa..ac6acd62 100644
--- a/Tests/Functional/config/persistent_db.yml
+++ b/Tests/Functional/config/persistent_db.yml
@@ -1,6 +1,5 @@
imports:
- { resource: framework.yml }
- - { resource: twig.yml }
parameters:
database_path: "%kernel.cache_dir%/database.sqlite"
@@ -11,7 +10,7 @@ doctrine:
path: "%database_path%"
orm:
- auto_generate_proxy_classes: %kernel.debug%
+ auto_generate_proxy_classes: "%kernel.debug%"
entity_managers:
default:
auto_mapping: true
diff --git a/Tests/Functional/config/twig.yml b/Tests/Functional/config/twig.yml
deleted file mode 100644
index 2c8539a6..00000000
--- a/Tests/Functional/config/twig.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-framework:
- templating:
- engines: [twig, php]
-
-twig:
- debug: %kernel.debug%
- strict_variables: %kernel.debug%
\ No newline at end of file
diff --git a/composer.json b/composer.json
index cd4be2c3..f1b8618b 100644
--- a/composer.json
+++ b/composer.json
@@ -1,7 +1,7 @@
{
"name": "jms/job-queue-bundle",
- "description": "Allows to schedule Symfony2 console commands as jobs.",
- "keywords": ["job","queue"],
+ "description": "Allows to run and schedule Symfony console commands as background jobs.",
+ "keywords": ["job","queue", "background", "cron", "scheduled"],
"homepage": "http://jmsyst.com/bundles/JMSJobQueueBundle",
"type": "symfony-bundle",
"license": "Apache-2.0",
@@ -12,11 +12,11 @@
}
],
"require": {
- "php": "^5.5.0 || ^7.0",
- "symfony/framework-bundle": "^2.1 || ^3.1 || ^4.0",
- "symfony/debug": "^2.3 || ^3.0 || ^4.0",
+ "php": "^7.1",
+ "symfony/framework-bundle": "^3.4 || ^4.0",
+ "symfony/debug": "^3.4 || ^4.0",
"doctrine/common": "^2.3",
- "jms/di-extra-bundle": "^1.1"
+ "symfony/process": "^3.4 || ^4.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "*",
@@ -26,27 +26,25 @@
"symfony/browser-kit": "*",
"symfony/finder": "*",
"symfony/css-selector": "*",
- "symfony/process": "*",
"doctrine/doctrine-bundle": "*",
"doctrine/orm": "*",
"symfony/twig-bundle": "*",
"symfony/form": "*",
"symfony/validator": "*",
- "phpunit/phpunit": "^5.2",
+ "phpunit/phpunit": "^6.0",
"symfony/intl": "*"
},
"suggest": {
"sensio/framework-extra-bundle": "Required when using the webinterface.",
"symfony/twig-bundle": "Required when using the webinterface."
},
- "minimum-stability": "dev",
"autoload": {
"psr-0": { "JMS\\JobQueueBundle": "" }
},
"target-dir": "JMS/JobQueueBundle",
"extra": {
"branch-alias": {
- "dev-master": "2.0.x-dev"
+ "dev-master": "3.0.x-dev"
}
}
}
diff --git a/composer.lock b/composer.lock
index b318611f..d600e46a 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,40 +4,39 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
- "hash": "35f218de6db38c6f08a84a2e5caba497",
- "content-hash": "e6819525494dff5136e2c2d63e88afa9",
+ "content-hash": "ace3489891b0f88ec1f4c02b9c634279",
"packages": [
{
"name": "doctrine/annotations",
- "version": "dev-master",
+ "version": "v1.6.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/annotations.git",
- "reference": "f4a91702ca3cd2e568c3736aa031ed00c3752af4"
+ "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/annotations/zipball/f4a91702ca3cd2e568c3736aa031ed00c3752af4",
- "reference": "f4a91702ca3cd2e568c3736aa031ed00c3752af4",
+ "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
+ "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
"shasum": ""
},
"require": {
"doctrine/lexer": "1.*",
- "php": ">=5.3.2"
+ "php": "^7.1"
},
"require-dev": {
"doctrine/cache": "1.*",
- "phpunit/phpunit": "4.*"
+ "phpunit/phpunit": "^6.4"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.3.x-dev"
+ "dev-master": "1.6.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Doctrine\\Common\\Annotations\\": "lib/"
+ "psr-4": {
+ "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -73,42 +72,47 @@
"docblock",
"parser"
],
- "time": "2015-06-17 12:21:22"
+ "time": "2017-12-06T07:11:42+00:00"
},
{
"name": "doctrine/cache",
- "version": "dev-master",
+ "version": "v1.8.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/cache.git",
- "reference": "e7b77e5abe230a2cc1db5005fb86435da213ae3b"
+ "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/cache/zipball/e7b77e5abe230a2cc1db5005fb86435da213ae3b",
- "reference": "e7b77e5abe230a2cc1db5005fb86435da213ae3b",
+ "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
+ "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
"shasum": ""
},
"require": {
- "php": ">=5.3.2"
+ "php": "~7.1"
},
"conflict": {
"doctrine/common": ">2.2,<2.4"
},
"require-dev": {
- "phpunit/phpunit": ">=3.7",
- "predis/predis": "~1.0",
- "satooshi/php-coveralls": "~0.6"
+ "alcaeus/mongo-php-adapter": "^1.1",
+ "doctrine/coding-standard": "^4.0",
+ "mongodb/mongodb": "^1.1",
+ "phpunit/phpunit": "^7.0",
+ "predis/predis": "~1.0"
+ },
+ "suggest": {
+ "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.5.x-dev"
+ "dev-master": "1.8.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Doctrine\\Common\\Cache\\": "lib/"
+ "psr-4": {
+ "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -138,37 +142,38 @@
}
],
"description": "Caching library offering an object-oriented API for many cache backends",
- "homepage": "http://www.doctrine-project.org",
+ "homepage": "https://www.doctrine-project.org",
"keywords": [
"cache",
"caching"
],
- "time": "2015-06-29 15:03:18"
+ "time": "2018-08-21T18:01:43+00:00"
},
{
"name": "doctrine/collections",
- "version": "v1.3.0",
+ "version": "v1.5.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/collections.git",
- "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
+ "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
- "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
+ "url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
+ "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
"shasum": ""
},
"require": {
- "php": ">=5.3.2"
+ "php": "^7.1"
},
"require-dev": {
- "phpunit/phpunit": "~4.0"
+ "doctrine/coding-standard": "~0.1@dev",
+ "phpunit/phpunit": "^5.7"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2.x-dev"
+ "dev-master": "1.3.x-dev"
}
},
"autoload": {
@@ -209,42 +214,48 @@
"collections",
"iterator"
],
- "time": "2015-04-14 22:21:58"
+ "time": "2017-07-22T10:37:32+00:00"
},
{
"name": "doctrine/common",
- "version": "dev-master",
+ "version": "v2.9.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/common.git",
- "reference": "ff72726b0876638fa7db2f28b0f26e3f1f6656ca"
+ "reference": "a210246d286c77d2b89040f8691ba7b3a713d2c1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/common/zipball/ff72726b0876638fa7db2f28b0f26e3f1f6656ca",
- "reference": "ff72726b0876638fa7db2f28b0f26e3f1f6656ca",
+ "url": "https://api.github.com/repos/doctrine/common/zipball/a210246d286c77d2b89040f8691ba7b3a713d2c1",
+ "reference": "a210246d286c77d2b89040f8691ba7b3a713d2c1",
"shasum": ""
},
"require": {
- "doctrine/annotations": "1.*",
- "doctrine/cache": "1.*",
- "doctrine/collections": "1.*",
- "doctrine/inflector": "1.*",
- "doctrine/lexer": "1.*",
- "php": ">=5.3.2"
+ "doctrine/annotations": "^1.0",
+ "doctrine/cache": "^1.0",
+ "doctrine/collections": "^1.0",
+ "doctrine/event-manager": "^1.0",
+ "doctrine/inflector": "^1.0",
+ "doctrine/lexer": "^1.0",
+ "doctrine/persistence": "^1.0",
+ "doctrine/reflection": "^1.0",
+ "php": "^7.1"
},
"require-dev": {
- "phpunit/phpunit": "~3.7"
+ "doctrine/coding-standard": "^1.0",
+ "phpunit/phpunit": "^6.3",
+ "squizlabs/php_codesniffer": "^3.0",
+ "symfony/phpunit-bridge": "^4.0.5"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.6.x-dev"
+ "dev-master": "2.9.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Doctrine\\Common\\": "lib/"
+ "psr-4": {
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -271,10 +282,14 @@
{
"name": "Johannes Schmitt",
"email": "schmittjoh@gmail.com"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
}
],
"description": "Common Library for Doctrine projects",
- "homepage": "http://www.doctrine-project.org",
+ "homepage": "https://www.doctrine-project.org",
"keywords": [
"annotations",
"collections",
@@ -282,37 +297,111 @@
"persistence",
"spl"
],
- "time": "2015-05-13 13:35:24"
+ "time": "2018-07-12T21:16:12+00:00"
+ },
+ {
+ "name": "doctrine/event-manager",
+ "version": "v1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/event-manager.git",
+ "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
+ "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1"
+ },
+ "conflict": {
+ "doctrine/common": "<2.9@dev"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^4.0",
+ "phpunit/phpunit": "^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "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"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
+ }
+ ],
+ "description": "Doctrine Event Manager component",
+ "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
+ "keywords": [
+ "event",
+ "eventdispatcher",
+ "eventmanager"
+ ],
+ "time": "2018-06-11T11:59:03+00:00"
},
{
"name": "doctrine/inflector",
- "version": "dev-master",
+ "version": "v1.3.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/inflector.git",
- "reference": "e5eaf8c7ded0877195b5d2848491e17b1c0a6c4d"
+ "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/e5eaf8c7ded0877195b5d2848491e17b1c0a6c4d",
- "reference": "e5eaf8c7ded0877195b5d2848491e17b1c0a6c4d",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
+ "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
"shasum": ""
},
"require": {
- "php": ">=5.3.2"
+ "php": "^7.1"
},
"require-dev": {
- "phpunit/phpunit": "4.*"
+ "phpunit/phpunit": "^6.2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "1.3.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Doctrine\\Common\\Inflector\\": "lib/"
+ "psr-4": {
+ "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -349,11 +438,11 @@
"singularize",
"string"
],
- "time": "2015-01-01 18:34:57"
+ "time": "2018-01-09T20:05:19+00:00"
},
{
"name": "doctrine/lexer",
- "version": "dev-master",
+ "version": "v1.0.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/lexer.git",
@@ -403,30 +492,48 @@
"lexer",
"parser"
],
- "time": "2014-09-09 13:34:57"
+ "time": "2014-09-09T13:34:57+00:00"
},
{
- "name": "ircmaxell/password-compat",
- "version": "1.0.x-dev",
+ "name": "doctrine/persistence",
+ "version": "v1.0.1",
"source": {
"type": "git",
- "url": "https://github.com/ircmaxell/password_compat.git",
- "reference": "9b99377557a33a4129c9194e60a97a685fab21e0"
+ "url": "https://github.com/doctrine/persistence.git",
+ "reference": "af1ec238659a83e320f03e0e454e200f689b4b97"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ircmaxell/password_compat/zipball/9b99377557a33a4129c9194e60a97a685fab21e0",
- "reference": "9b99377557a33a4129c9194e60a97a685fab21e0",
+ "url": "https://api.github.com/repos/doctrine/persistence/zipball/af1ec238659a83e320f03e0e454e200f689b4b97",
+ "reference": "af1ec238659a83e320f03e0e454e200f689b4b97",
"shasum": ""
},
+ "require": {
+ "doctrine/annotations": "^1.0",
+ "doctrine/cache": "^1.0",
+ "doctrine/collections": "^1.0",
+ "doctrine/event-manager": "^1.0",
+ "doctrine/reflection": "^1.0",
+ "php": "^7.1"
+ },
+ "conflict": {
+ "doctrine/common": "<2.9@dev"
+ },
"require-dev": {
- "phpunit/phpunit": "4.*"
+ "doctrine/coding-standard": "^4.0",
+ "phpstan/phpstan": "^0.8",
+ "phpunit/phpunit": "^7.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
"autoload": {
- "files": [
- "lib/password.php"
- ]
+ "psr-4": {
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -434,78 +541,124 @@
],
"authors": [
{
- "name": "Anthony Ferrara",
- "email": "ircmaxell@php.net",
- "homepage": "http://blog.ircmaxell.com"
+ "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"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
}
],
- "description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash",
- "homepage": "https://github.com/ircmaxell/password_compat",
+ "description": "Doctrine Persistence abstractions.",
+ "homepage": "https://doctrine-project.org/projects/persistence.html",
"keywords": [
- "hashing",
- "password"
+ "persistence"
],
- "time": "2014-11-20 19:18:42"
+ "time": "2018-07-12T12:37:50+00:00"
},
{
- "name": "jms/aop-bundle",
- "version": "dev-master",
- "target-dir": "JMS/AopBundle",
+ "name": "doctrine/reflection",
+ "version": "v1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/schmittjoh/JMSAopBundle.git",
- "reference": "a2ffe12932abe5bda25792e16c1a42763aedeaaf"
+ "url": "https://github.com/doctrine/reflection.git",
+ "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/schmittjoh/JMSAopBundle/zipball/a2ffe12932abe5bda25792e16c1a42763aedeaaf",
- "reference": "a2ffe12932abe5bda25792e16c1a42763aedeaaf",
+ "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6",
+ "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6",
"shasum": ""
},
"require": {
- "jms/cg": "1.*",
- "symfony/framework-bundle": "2.*"
+ "doctrine/annotations": "^1.0",
+ "ext-tokenizer": "*",
+ "php": "^7.1"
},
- "type": "symfony-bundle",
+ "require-dev": {
+ "doctrine/coding-standard": "^4.0",
+ "doctrine/common": "^2.8",
+ "phpstan/phpstan": "^0.9.2",
+ "phpstan/phpstan-phpunit": "^0.9.4",
+ "phpunit/phpunit": "^7.0",
+ "squizlabs/php_codesniffer": "^3.0"
+ },
+ "type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1.x-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
- "psr-0": {
- "JMS\\AopBundle": ""
+ "psr-4": {
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "Apache-2.0"
+ "MIT"
],
"authors": [
{
- "name": "Johannes M. Schmitt",
+ "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"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
}
],
- "description": "Adds AOP capabilities to Symfony2",
+ "description": "Doctrine Reflection component",
+ "homepage": "https://www.doctrine-project.org/projects/reflection.html",
"keywords": [
- "annotations",
- "aop"
+ "reflection"
],
- "time": "2015-01-14 15:37:27"
+ "time": "2018-06-14T14:45:07+00:00"
},
{
- "name": "jms/cg",
- "version": "dev-master",
+ "name": "psr/cache",
+ "version": "1.0.1",
"source": {
"type": "git",
- "url": "https://github.com/schmittjoh/cg-library.git",
- "reference": "dd7acb4cd356ed5281b8f4bb346bff51b394c7b2"
+ "url": "https://github.com/php-fig/cache.git",
+ "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/schmittjoh/cg-library/zipball/dd7acb4cd356ed5281b8f4bb346bff51b394c7b2",
- "reference": "dd7acb4cd356ed5281b8f4bb346bff51b394c7b2",
+ "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
+ "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
"shasum": ""
},
"require": {
@@ -514,157 +667,140 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
- "psr-0": {
- "CG\\": "src/"
+ "psr-4": {
+ "Psr\\Cache\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "Apache2"
+ "MIT"
],
"authors": [
{
- "name": "Johannes M. Schmitt",
- "email": "schmittjoh@gmail.com"
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
}
],
- "description": "Toolset for generating PHP code",
+ "description": "Common interface for caching libraries",
"keywords": [
- "code generation"
+ "cache",
+ "psr",
+ "psr-6"
],
- "time": "2015-01-26 09:49:13"
+ "time": "2016-08-06T20:24:11+00:00"
},
{
- "name": "jms/di-extra-bundle",
- "version": "dev-master",
- "target-dir": "JMS/DiExtraBundle",
+ "name": "psr/container",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/schmittjoh/JMSDiExtraBundle.git",
- "reference": "36f8b06e34e55582be59c810eac855396fc57221"
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/schmittjoh/JMSDiExtraBundle/zipball/36f8b06e34e55582be59c810eac855396fc57221",
- "reference": "36f8b06e34e55582be59c810eac855396fc57221",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
"shasum": ""
},
"require": {
- "jms/aop-bundle": ">=1.0.0,<1.2-dev",
- "jms/metadata": "1.*",
- "symfony/finder": "~2.1",
- "symfony/framework-bundle": "~2.1",
- "symfony/process": "~2.1"
- },
- "require-dev": {
- "doctrine/doctrine-bundle": "*",
- "doctrine/orm": "*",
- "jms/security-extra-bundle": "1.*",
- "phpcollection/phpcollection": ">=0.1,<0.3-dev",
- "sensio/framework-extra-bundle": "*",
- "symfony/browser-kit": "*",
- "symfony/class-loader": "*",
- "symfony/form": "*",
- "symfony/security-bundle": "*",
- "symfony/twig-bundle": "*",
- "symfony/validator": "*",
- "symfony/yaml": "*"
+ "php": ">=5.3.0"
},
- "type": "symfony-bundle",
+ "type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.5-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
- "psr-0": {
- "JMS\\DiExtraBundle": ""
+ "psr-4": {
+ "Psr\\Container\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "Apache"
+ "MIT"
],
"authors": [
{
- "name": "Johannes M. Schmitt",
- "email": "schmittjoh@gmail.com"
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
}
],
- "description": "Allows to configure dependency injection using annotations",
- "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
"keywords": [
- "annotations",
- "dependency injection"
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
],
- "time": "2015-05-21 14:28:38"
+ "time": "2017-02-14T16:28:37+00:00"
},
{
- "name": "jms/metadata",
- "version": "dev-master",
+ "name": "psr/log",
+ "version": "1.0.2",
"source": {
"type": "git",
- "url": "https://github.com/schmittjoh/metadata.git",
- "reference": "427a06e7c25d0fa1fbd37bf0325d9d3eb2dc383a"
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/427a06e7c25d0fa1fbd37bf0325d9d3eb2dc383a",
- "reference": "427a06e7c25d0fa1fbd37bf0325d9d3eb2dc383a",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
+ "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
- "require-dev": {
- "doctrine/cache": "~1.0"
- },
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.5.x-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Metadata\\": "src/"
+ "psr-4": {
+ "Psr\\Log\\": "Psr/Log/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "Apache-2.0"
+ "MIT"
],
"authors": [
{
- "name": "Johannes M. Schmitt",
- "email": "schmittjoh@gmail.com"
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
}
],
- "description": "Class/method/property metadata management in PHP",
+ "description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
"keywords": [
- "annotations",
- "metadata",
- "xml",
- "yaml"
+ "log",
+ "psr",
+ "psr-3"
],
- "time": "2015-01-14 15:37:39"
+ "time": "2016-10-10T12:19:37+00:00"
},
{
- "name": "psr/log",
- "version": "dev-master",
+ "name": "psr/simple-cache",
+ "version": "1.0.1",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/log.git",
- "reference": "9e45edca52cc9c954680072c93e621f8b71fab26"
+ "url": "https://github.com/php-fig/simple-cache.git",
+ "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/9e45edca52cc9c954680072c93e621f8b71fab26",
- "reference": "9e45edca52cc9c954680072c93e621f8b71fab26",
+ "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
+ "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
"shasum": ""
},
"require": {
@@ -678,7 +814,7 @@
},
"autoload": {
"psr-4": {
- "Psr\\Log\\": "Psr/Log/"
+ "Psr\\SimpleCache\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -691,48 +827,62 @@
"homepage": "http://www.php-fig.org/"
}
],
- "description": "Common interface for logging libraries",
+ "description": "Common interfaces for simple caching",
"keywords": [
- "log",
+ "cache",
+ "caching",
"psr",
- "psr-3"
+ "psr-16",
+ "simple-cache"
],
- "time": "2015-06-02 13:48:41"
+ "time": "2017-10-23T01:57:42+00:00"
},
{
- "name": "symfony/asset",
- "version": "dev-master",
+ "name": "symfony/cache",
+ "version": "v4.1.6",
"source": {
"type": "git",
- "url": "https://github.com/symfony/asset.git",
- "reference": "217f2479852eba3ec890907da296a7ca460725e0"
+ "url": "https://github.com/symfony/cache.git",
+ "reference": "05ce0ddc8bc1ffe592105398fc2c725cb3080a38"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/asset/zipball/217f2479852eba3ec890907da296a7ca460725e0",
- "reference": "217f2479852eba3ec890907da296a7ca460725e0",
+ "url": "https://api.github.com/repos/symfony/cache/zipball/05ce0ddc8bc1ffe592105398fc2c725cb3080a38",
+ "reference": "05ce0ddc8bc1ffe592105398fc2c725cb3080a38",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^7.1.3",
+ "psr/cache": "~1.0",
+ "psr/log": "~1.0",
+ "psr/simple-cache": "^1.0"
},
- "require-dev": {
- "symfony/http-foundation": "~2.8|~3.0",
- "symfony/phpunit-bridge": "~2.8|~3.0"
+ "conflict": {
+ "symfony/var-dumper": "<3.4"
},
- "suggest": {
- "symfony/http-foundation": ""
+ "provide": {
+ "psr/cache-implementation": "1.0",
+ "psr/simple-cache-implementation": "1.0"
+ },
+ "require-dev": {
+ "cache/integration-tests": "dev-master",
+ "doctrine/cache": "~1.6",
+ "doctrine/dbal": "~2.4",
+ "predis/predis": "~1.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Asset\\": ""
- }
+ "Symfony\\Component\\Cache\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -740,49 +890,66 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Asset Component",
+ "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
"homepage": "https://symfony.com",
- "time": "2015-05-12 15:48:43"
+ "keywords": [
+ "caching",
+ "psr6"
+ ],
+ "time": "2018-09-30T03:38:13+00:00"
},
{
"name": "symfony/config",
- "version": "2.8.x-dev",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/config.git",
- "reference": "0f8f94e6a32b5c480024eed5fa5cbd2790d0ad19"
+ "reference": "b3d4d7b567d7a49e6dfafb6d4760abc921177c96"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/config/zipball/0f8f94e6a32b5c480024eed5fa5cbd2790d0ad19",
- "reference": "0f8f94e6a32b5c480024eed5fa5cbd2790d0ad19",
+ "url": "https://api.github.com/repos/symfony/config/zipball/b3d4d7b567d7a49e6dfafb6d4760abc921177c96",
+ "reference": "b3d4d7b567d7a49e6dfafb6d4760abc921177c96",
"shasum": ""
},
"require": {
- "php": ">=5.3.9",
- "symfony/filesystem": "~2.3|~3.0.0"
+ "php": "^7.1.3",
+ "symfony/filesystem": "~3.4|~4.0",
+ "symfony/polyfill-ctype": "~1.8"
+ },
+ "conflict": {
+ "symfony/finder": "<3.4"
},
"require-dev": {
- "symfony/phpunit-bridge": "~2.7|~3.0.0"
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/event-dispatcher": "~3.4|~4.0",
+ "symfony/finder": "~3.4|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
+ },
+ "suggest": {
+ "symfony/yaml": "To use the yaml reference dumper"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Config\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -800,37 +967,36 @@
],
"description": "Symfony Config Component",
"homepage": "https://symfony.com",
- "time": "2016-02-22 16:12:45"
+ "time": "2018-09-08T13:24:10+00:00"
},
{
"name": "symfony/debug",
- "version": "2.8.x-dev",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/debug.git",
- "reference": "8c29235936a47473af16fb91c7c4b7b193c5693c"
+ "reference": "e3f76ce6198f81994e019bb2b4e533e9de1b9b90"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/debug/zipball/8c29235936a47473af16fb91c7c4b7b193c5693c",
- "reference": "8c29235936a47473af16fb91c7c4b7b193c5693c",
+ "url": "https://api.github.com/repos/symfony/debug/zipball/e3f76ce6198f81994e019bb2b4e533e9de1b9b90",
+ "reference": "e3f76ce6198f81994e019bb2b4e533e9de1b9b90",
"shasum": ""
},
"require": {
- "php": ">=5.3.9",
+ "php": "^7.1.3",
"psr/log": "~1.0"
},
"conflict": {
- "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
+ "symfony/http-kernel": "<3.4"
},
"require-dev": {
- "symfony/class-loader": "~2.2|~3.0.0",
- "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2|~3.0.0"
+ "symfony/http-kernel": "~3.4|~4.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
@@ -857,49 +1023,60 @@
],
"description": "Symfony Debug Component",
"homepage": "https://symfony.com",
- "time": "2016-09-06 10:55:00"
+ "time": "2018-10-02T16:36:10+00:00"
},
{
"name": "symfony/dependency-injection",
- "version": "2.8.x-dev",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/dependency-injection.git",
- "reference": "62251761a7615435b22ccf562384c588b431be44"
+ "reference": "f6b9d893ad28aefd8942dc0469c8397e2216fe30"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/62251761a7615435b22ccf562384c588b431be44",
- "reference": "62251761a7615435b22ccf562384c588b431be44",
+ "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f6b9d893ad28aefd8942dc0469c8397e2216fe30",
+ "reference": "f6b9d893ad28aefd8942dc0469c8397e2216fe30",
"shasum": ""
},
"require": {
- "php": ">=5.3.9"
+ "php": "^7.1.3",
+ "psr/container": "^1.0"
},
"conflict": {
- "symfony/expression-language": "<2.6"
+ "symfony/config": "<4.1.1",
+ "symfony/finder": "<3.4",
+ "symfony/proxy-manager-bridge": "<3.4",
+ "symfony/yaml": "<3.4"
+ },
+ "provide": {
+ "psr/container-implementation": "1.0"
},
"require-dev": {
- "symfony/config": "~2.2|~3.0.0",
- "symfony/expression-language": "~2.6|~3.0.0",
- "symfony/phpunit-bridge": "~2.7|~3.0.0",
- "symfony/yaml": "~2.1|~3.0.0"
+ "symfony/config": "~4.1",
+ "symfony/expression-language": "~3.4|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
},
"suggest": {
"symfony/config": "",
+ "symfony/expression-language": "For using expressions in service container configuration",
+ "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
"symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
"symfony/yaml": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\DependencyInjection\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -917,32 +1094,34 @@
],
"description": "Symfony DependencyInjection Component",
"homepage": "https://symfony.com",
- "time": "2016-02-28 16:34:46"
+ "time": "2018-10-02T12:40:59+00:00"
},
{
"name": "symfony/event-dispatcher",
- "version": "2.8.x-dev",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "78c468665c9568c3faaa9c416a7134308f2d85c3"
+ "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/78c468665c9568c3faaa9c416a7134308f2d85c3",
- "reference": "78c468665c9568c3faaa9c416a7134308f2d85c3",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/bfb30c2ad377615a463ebbc875eba64a99f6aa3e",
+ "reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e",
"shasum": ""
},
"require": {
- "php": ">=5.3.9"
+ "php": "^7.1.3"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<3.4"
},
"require-dev": {
"psr/log": "~1.0",
- "symfony/config": "~2.0,>=2.0.5|~3.0.0",
- "symfony/dependency-injection": "~2.6|~3.0.0",
- "symfony/expression-language": "~2.6|~3.0.0",
- "symfony/phpunit-bridge": "~2.7|~3.0.0",
- "symfony/stopwatch": "~2.3|~3.0.0"
+ "symfony/config": "~3.4|~4.0",
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/expression-language": "~3.4|~4.0",
+ "symfony/stopwatch": "~3.4|~4.0"
},
"suggest": {
"symfony/dependency-injection": "",
@@ -951,13 +1130,16 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\EventDispatcher\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -975,38 +1157,39 @@
],
"description": "Symfony EventDispatcher Component",
"homepage": "https://symfony.com",
- "time": "2016-01-27 05:14:19"
+ "time": "2018-07-26T09:10:45+00:00"
},
{
"name": "symfony/filesystem",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/filesystem.git",
- "reference": "c8a0b857efc7c19b087129a7d7555f866d61b557"
+ "reference": "596d12b40624055c300c8b619755b748ca5cf0b5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/c8a0b857efc7c19b087129a7d7555f866d61b557",
- "reference": "c8a0b857efc7c19b087129a7d7555f866d61b557",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/596d12b40624055c300c8b619755b748ca5cf0b5",
+ "reference": "596d12b40624055c300c8b619755b748ca5cf0b5",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
- },
- "require-dev": {
- "symfony/phpunit-bridge": "~2.8|~3.0"
+ "php": "^7.1.3",
+ "symfony/polyfill-ctype": "~1.8"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Filesystem\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -1024,38 +1207,38 @@
],
"description": "Symfony Filesystem Component",
"homepage": "https://symfony.com",
- "time": "2016-02-23 16:17:05"
+ "time": "2018-10-02T12:40:59+00:00"
},
{
"name": "symfony/finder",
- "version": "2.8.x-dev",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "877bb4b16ea573cc8c024e9590888fcf7eb7e0f7"
+ "reference": "1f17195b44543017a9c9b2d437c670627e96ad06"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/877bb4b16ea573cc8c024e9590888fcf7eb7e0f7",
- "reference": "877bb4b16ea573cc8c024e9590888fcf7eb7e0f7",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/1f17195b44543017a9c9b2d437c670627e96ad06",
+ "reference": "1f17195b44543017a9c9b2d437c670627e96ad06",
"shasum": ""
},
"require": {
- "php": ">=5.3.9"
- },
- "require-dev": {
- "symfony/phpunit-bridge": "~2.7|~3.0.0"
+ "php": "^7.1.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Finder\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -1073,73 +1256,106 @@
],
"description": "Symfony Finder Component",
"homepage": "https://symfony.com",
- "time": "2016-02-22 16:12:45"
+ "time": "2018-10-03T08:47:56+00:00"
},
{
"name": "symfony/framework-bundle",
- "version": "2.8.x-dev",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/framework-bundle.git",
- "reference": "212fda2c7fa4909ae11e7186cc197a036c741cd1"
+ "reference": "3a0f2ec035c6ecc0f751fda1a76b02310bc9bbfe"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/212fda2c7fa4909ae11e7186cc197a036c741cd1",
- "reference": "212fda2c7fa4909ae11e7186cc197a036c741cd1",
+ "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/3a0f2ec035c6ecc0f751fda1a76b02310bc9bbfe",
+ "reference": "3a0f2ec035c6ecc0f751fda1a76b02310bc9bbfe",
"shasum": ""
},
"require": {
- "doctrine/annotations": "~1.0",
- "php": ">=5.3.9",
- "symfony/asset": "~2.7|~3.0.0",
- "symfony/config": "~2.4",
- "symfony/dependency-injection": "~2.8",
- "symfony/event-dispatcher": "~2.8|~3.0.0",
- "symfony/filesystem": "~2.3|~3.0.0",
- "symfony/http-foundation": "~2.4.9|~2.5,>=2.5.4|~3.0.0",
- "symfony/http-kernel": "~2.7|~3.0.0",
- "symfony/routing": "~2.8|~3.0.0",
- "symfony/security-core": "~2.6|~3.0.0",
- "symfony/security-csrf": "~2.6|~3.0.0",
- "symfony/stopwatch": "~2.3|~3.0.0",
- "symfony/templating": "~2.1|~3.0.0",
- "symfony/translation": "~2.7|~3.0.0"
+ "ext-xml": "*",
+ "php": "^7.1.3",
+ "symfony/cache": "~3.4|~4.0",
+ "symfony/config": "~3.4|~4.0",
+ "symfony/dependency-injection": "^4.1.1",
+ "symfony/event-dispatcher": "^4.1",
+ "symfony/filesystem": "~3.4|~4.0",
+ "symfony/finder": "~3.4|~4.0",
+ "symfony/http-foundation": "^4.1",
+ "symfony/http-kernel": "^4.1",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/routing": "^4.1"
+ },
+ "conflict": {
+ "phpdocumentor/reflection-docblock": "<3.0",
+ "phpdocumentor/type-resolver": "<0.2.1",
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
+ "symfony/asset": "<3.4",
+ "symfony/console": "<3.4",
+ "symfony/form": "<4.1",
+ "symfony/messenger": ">=4.2",
+ "symfony/property-info": "<3.4",
+ "symfony/serializer": "<4.1",
+ "symfony/stopwatch": "<3.4",
+ "symfony/translation": "<3.4",
+ "symfony/twig-bridge": "<4.1.1",
+ "symfony/validator": "<4.1",
+ "symfony/workflow": "<4.1"
},
"require-dev": {
- "symfony/browser-kit": "~2.4|~3.0.0",
- "symfony/class-loader": "~2.1|~3.0.0",
- "symfony/console": "~2.7|~3.0.0",
- "symfony/css-selector": "~2.0,>=2.0.5|~3.0.0",
- "symfony/dom-crawler": "~2.0,>=2.0.5|~3.0.0",
- "symfony/expression-language": "~2.6|~3.0.0",
- "symfony/finder": "~2.0,>=2.0.5|~3.0.0",
- "symfony/form": "~2.8|~3.0.0",
- "symfony/intl": "~2.3|~3.0.0",
- "symfony/phpunit-bridge": "~2.7|~3.0.0",
- "symfony/process": "~2.0,>=2.0.5|~3.0.0",
- "symfony/security": "~2.6|~3.0.0",
- "symfony/validator": "~2.5|~3.0.0",
- "symfony/yaml": "~2.0,>=2.0.5|~3.0.0"
+ "doctrine/annotations": "~1.0",
+ "doctrine/cache": "~1.0",
+ "fig/link-util": "^1.0",
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0",
+ "symfony/asset": "~3.4|~4.0",
+ "symfony/browser-kit": "~3.4|~4.0",
+ "symfony/console": "~3.4|~4.0",
+ "symfony/css-selector": "~3.4|~4.0",
+ "symfony/dom-crawler": "~3.4|~4.0",
+ "symfony/expression-language": "~3.4|~4.0",
+ "symfony/form": "^4.1",
+ "symfony/lock": "~3.4|~4.0",
+ "symfony/messenger": "^4.1",
+ "symfony/polyfill-intl-icu": "~1.0",
+ "symfony/process": "~3.4|~4.0",
+ "symfony/property-info": "~3.4|~4.0",
+ "symfony/security": "~3.4|~4.0",
+ "symfony/security-core": "~3.4|~4.0",
+ "symfony/security-csrf": "~3.4|~4.0",
+ "symfony/serializer": "^4.1",
+ "symfony/stopwatch": "~3.4|~4.0",
+ "symfony/templating": "~3.4|~4.0",
+ "symfony/translation": "~3.4|~4.0",
+ "symfony/validator": "^4.1",
+ "symfony/var-dumper": "~3.4|~4.0",
+ "symfony/web-link": "~3.4|~4.0",
+ "symfony/workflow": "^4.1",
+ "symfony/yaml": "~3.4|~4.0",
+ "twig/twig": "~1.34|~2.4"
},
"suggest": {
- "doctrine/cache": "For using alternative cache drivers",
+ "ext-apcu": "For best performance of the system caches",
"symfony/console": "For using the console commands",
- "symfony/finder": "For using the translation loader and cache warmer",
"symfony/form": "For using forms",
+ "symfony/property-info": "For using the property_info service",
+ "symfony/serializer": "For using the serializer service",
"symfony/validator": "For using validation",
+ "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
"symfony/yaml": "For using the debug:config and lint:yaml commands"
},
"type": "symfony-bundle",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Bundle\\FrameworkBundle\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -1157,35 +1373,34 @@
],
"description": "Symfony FrameworkBundle",
"homepage": "https://symfony.com",
- "time": "2016-02-28 16:20:50"
+ "time": "2018-10-03T08:47:56+00:00"
},
{
"name": "symfony/http-foundation",
- "version": "2.8.x-dev",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "176b094c515ae8ad85484f93999ab6776ec4ac67"
+ "reference": "d528136617ff24f530e70df9605acc1b788b08d4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/176b094c515ae8ad85484f93999ab6776ec4ac67",
- "reference": "176b094c515ae8ad85484f93999ab6776ec4ac67",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d528136617ff24f530e70df9605acc1b788b08d4",
+ "reference": "d528136617ff24f530e70df9605acc1b788b08d4",
"shasum": ""
},
"require": {
- "php": ">=5.3.9",
- "symfony/polyfill-mbstring": "~1.1",
- "symfony/polyfill-php54": "~1.0",
- "symfony/polyfill-php55": "~1.0"
+ "php": "^7.1.3",
+ "symfony/polyfill-mbstring": "~1.1"
},
"require-dev": {
- "symfony/expression-language": "~2.4|~3.0.0"
+ "predis/predis": "~1.0",
+ "symfony/expression-language": "~3.4|~4.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
@@ -1212,69 +1427,76 @@
],
"description": "Symfony HttpFoundation Component",
"homepage": "https://symfony.com",
- "time": "2016-08-22 12:09:58"
+ "time": "2018-10-03T08:48:45+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "2.8.x-dev",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "a14e1553e76cac229f92eb01ac4968735f11d5e7"
+ "reference": "f5e7c15a5d010be0e16ce798594c5960451d4220"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a14e1553e76cac229f92eb01ac4968735f11d5e7",
- "reference": "a14e1553e76cac229f92eb01ac4968735f11d5e7",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f5e7c15a5d010be0e16ce798594c5960451d4220",
+ "reference": "f5e7c15a5d010be0e16ce798594c5960451d4220",
"shasum": ""
},
"require": {
- "php": ">=5.3.9",
+ "php": "^7.1.3",
"psr/log": "~1.0",
- "symfony/debug": "~2.6,>=2.6.2",
- "symfony/event-dispatcher": "~2.5.9|~2.6,>=2.6.2|~3.0.0",
- "symfony/http-foundation": "~2.5,>=2.5.4|~3.0.0"
+ "symfony/debug": "~3.4|~4.0",
+ "symfony/event-dispatcher": "~4.1",
+ "symfony/http-foundation": "^4.1.1",
+ "symfony/polyfill-ctype": "~1.8"
},
"conflict": {
- "symfony/config": "<2.7"
+ "symfony/config": "<3.4",
+ "symfony/dependency-injection": "<4.1",
+ "symfony/var-dumper": "<4.1.1",
+ "twig/twig": "<1.34|<2.4,>=2"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0"
},
"require-dev": {
- "symfony/browser-kit": "~2.3|~3.0.0",
- "symfony/class-loader": "~2.1|~3.0.0",
- "symfony/config": "~2.7",
- "symfony/console": "~2.3|~3.0.0",
- "symfony/css-selector": "~2.0,>=2.0.5|~3.0.0",
- "symfony/dependency-injection": "~2.2|~3.0.0",
- "symfony/dom-crawler": "~2.0,>=2.0.5|~3.0.0",
- "symfony/expression-language": "~2.4|~3.0.0",
- "symfony/finder": "~2.0,>=2.0.5|~3.0.0",
- "symfony/phpunit-bridge": "~2.7|~3.0.0",
- "symfony/process": "~2.0,>=2.0.5|~3.0.0",
- "symfony/routing": "~2.8|~3.0.0",
- "symfony/stopwatch": "~2.3|~3.0.0",
- "symfony/templating": "~2.2|~3.0.0",
- "symfony/translation": "~2.0,>=2.0.5|~3.0.0",
- "symfony/var-dumper": "~2.6|~3.0.0"
+ "psr/cache": "~1.0",
+ "symfony/browser-kit": "~3.4|~4.0",
+ "symfony/config": "~3.4|~4.0",
+ "symfony/console": "~3.4|~4.0",
+ "symfony/css-selector": "~3.4|~4.0",
+ "symfony/dependency-injection": "^4.1",
+ "symfony/dom-crawler": "~3.4|~4.0",
+ "symfony/expression-language": "~3.4|~4.0",
+ "symfony/finder": "~3.4|~4.0",
+ "symfony/process": "~3.4|~4.0",
+ "symfony/routing": "~3.4|~4.0",
+ "symfony/stopwatch": "~3.4|~4.0",
+ "symfony/templating": "~3.4|~4.0",
+ "symfony/translation": "~3.4|~4.0",
+ "symfony/var-dumper": "^4.1.1"
},
"suggest": {
"symfony/browser-kit": "",
- "symfony/class-loader": "",
"symfony/config": "",
"symfony/console": "",
"symfony/dependency-injection": "",
- "symfony/finder": "",
"symfony/var-dumper": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\HttpKernel\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -1292,37 +1514,37 @@
],
"description": "Symfony HttpKernel Component",
"homepage": "https://symfony.com",
- "time": "2016-02-28 21:27:55"
+ "time": "2018-10-03T12:53:38+00:00"
},
{
- "name": "symfony/polyfill-mbstring",
- "version": "dev-master",
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.10.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "988cbed31ec9493057bcfc545b13447521849702"
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/988cbed31ec9493057bcfc545b13447521849702",
- "reference": "988cbed31ec9493057bcfc545b13447521849702",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
+ "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
"shasum": ""
},
"require": {
"php": ">=5.3.3"
},
"suggest": {
- "ext-mbstring": "For best performance"
+ "ext-ctype": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2-dev"
+ "dev-master": "1.9-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Polyfill\\Mbstring\\": ""
+ "Symfony\\Polyfill\\Ctype\\": ""
},
"files": [
"bootstrap.php"
@@ -1333,111 +1555,54 @@
"MIT"
],
"authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill for the Mbstring extension",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "mbstring",
- "polyfill",
- "portable",
- "shim"
- ],
- "time": "2016-08-17 08:39:54"
- },
- {
- "name": "symfony/polyfill-php54",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php54.git",
- "reference": "34d761992f6f2cc6092cc0e5e93f38b53ba5e4f1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php54/zipball/34d761992f6f2cc6092cc0e5e93f38b53ba5e4f1",
- "reference": "34d761992f6f2cc6092cc0e5e93f38b53ba5e4f1",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.2-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\Php54\\": ""
- },
- "files": [
- "bootstrap.php"
- ],
- "classmap": [
- "Resources/stubs"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
},
{
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
}
],
- "description": "Symfony polyfill backporting some PHP 5.4+ features to lower PHP versions",
+ "description": "Symfony polyfill for ctype functions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
+ "ctype",
"polyfill",
- "portable",
- "shim"
+ "portable"
],
- "time": "2016-05-18 14:26:46"
+ "time": "2018-08-06T14:22:27+00:00"
},
{
- "name": "symfony/polyfill-php55",
- "version": "dev-master",
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.10.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php55.git",
- "reference": "bf2ff9ad6be1a4772cb873e4eea94d70daa95c6d"
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php55/zipball/bf2ff9ad6be1a4772cb873e4eea94d70daa95c6d",
- "reference": "bf2ff9ad6be1a4772cb873e4eea94d70daa95c6d",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
+ "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
"shasum": ""
},
"require": {
- "ircmaxell/password-compat": "~1.0",
"php": ">=5.3.3"
},
+ "suggest": {
+ "ext-mbstring": "For best performance"
+ },
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2-dev"
+ "dev-master": "1.9-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Polyfill\\Php55\\": ""
+ "Symfony\\Polyfill\\Mbstring\\": ""
},
"files": [
"bootstrap.php"
@@ -1457,46 +1622,47 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 5.5+ features to lower PHP versions",
+ "description": "Symfony polyfill for the Mbstring extension",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
+ "mbstring",
"polyfill",
"portable",
"shim"
],
- "time": "2016-05-18 14:26:46"
+ "time": "2018-09-21T13:07:52+00:00"
},
{
"name": "symfony/process",
- "version": "2.8.x-dev",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/process.git",
- "reference": "7dedd5b60550f33dca16dd7e94ef8aca8b67bbfe"
+ "reference": "ee33c0322a8fee0855afcc11fff81e6b1011b529"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/7dedd5b60550f33dca16dd7e94ef8aca8b67bbfe",
- "reference": "7dedd5b60550f33dca16dd7e94ef8aca8b67bbfe",
+ "url": "https://api.github.com/repos/symfony/process/zipball/ee33c0322a8fee0855afcc11fff81e6b1011b529",
+ "reference": "ee33c0322a8fee0855afcc11fff81e6b1011b529",
"shasum": ""
},
"require": {
- "php": ">=5.3.9"
- },
- "require-dev": {
- "symfony/phpunit-bridge": "~2.7|~3.0.0"
+ "php": "^7.1.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Process\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -1514,338 +1680,60 @@
],
"description": "Symfony Process Component",
"homepage": "https://symfony.com",
- "time": "2016-02-02 13:33:15"
+ "time": "2018-10-02T12:40:59+00:00"
},
{
"name": "symfony/routing",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
- "reference": "2a870783774b9cd5e19f03407e85813151fb3237"
+ "reference": "537803f0bdfede36b9acef052d2e4d447d9fa0e9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/2a870783774b9cd5e19f03407e85813151fb3237",
- "reference": "2a870783774b9cd5e19f03407e85813151fb3237",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/537803f0bdfede36b9acef052d2e4d447d9fa0e9",
+ "reference": "537803f0bdfede36b9acef052d2e4d447d9fa0e9",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
+ "php": "^7.1.3"
},
"conflict": {
- "symfony/config": "<2.8"
+ "symfony/config": "<3.4",
+ "symfony/dependency-injection": "<3.4",
+ "symfony/yaml": "<3.4"
},
"require-dev": {
"doctrine/annotations": "~1.0",
- "doctrine/common": "~2.2",
- "psr/log": "~1.0",
- "symfony/config": "~2.8|~3.0",
- "symfony/expression-language": "~2.8|~3.0",
- "symfony/http-foundation": "~2.8|~3.0",
- "symfony/phpunit-bridge": "~2.8|~3.0",
- "symfony/yaml": "~2.8|~3.0"
- },
- "suggest": {
- "doctrine/annotations": "For using the annotation loader",
- "symfony/config": "For using the all-in-one router or any loader",
- "symfony/expression-language": "For using expression matching",
- "symfony/yaml": "For using the YAML loader"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Routing\\": ""
- }
- },
- "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 Routing Component",
- "homepage": "https://symfony.com",
- "keywords": [
- "router",
- "routing",
- "uri",
- "url"
- ],
- "time": "2016-02-04 13:53:40"
- },
- {
- "name": "symfony/security-core",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/security-core.git",
- "reference": "b5ad001602f47ebdc90dda7ba5539a5438c3a305"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/security-core/zipball/b5ad001602f47ebdc90dda7ba5539a5438c3a305",
- "reference": "b5ad001602f47ebdc90dda7ba5539a5438c3a305",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9"
- },
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/event-dispatcher": "~2.8|~3.0",
- "symfony/expression-language": "~2.8|~3.0",
- "symfony/http-foundation": "~2.8|~3.0",
- "symfony/phpunit-bridge": "~2.8|~3.0",
- "symfony/translation": "~2.8|~3.0",
- "symfony/validator": "~2.8|~3.0"
- },
- "suggest": {
- "symfony/event-dispatcher": "",
- "symfony/expression-language": "For using the expression voter",
- "symfony/http-foundation": "",
- "symfony/validator": "For using the user password constraint"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Security\\Core\\": ""
- }
- },
- "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 Security Component - Core Library",
- "homepage": "https://symfony.com",
- "time": "2015-07-02 06:18:34"
- },
- {
- "name": "symfony/security-csrf",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/security-csrf.git",
- "reference": "c7e3965b3564396d94d22ffc3937211776706c86"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/security-csrf/zipball/c7e3965b3564396d94d22ffc3937211776706c86",
- "reference": "c7e3965b3564396d94d22ffc3937211776706c86",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9",
- "symfony/security-core": "~2.8|~3.0"
- },
- "require-dev": {
- "symfony/http-foundation": "~2.8|~3.0",
- "symfony/phpunit-bridge": "~2.8|~3.0"
- },
- "suggest": {
- "symfony/http-foundation": "For using the class SessionTokenStorage."
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Security\\Csrf\\": ""
- }
- },
- "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 Security Component - CSRF Library",
- "homepage": "https://symfony.com",
- "time": "2015-05-13 11:38:41"
- },
- {
- "name": "symfony/stopwatch",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/stopwatch.git",
- "reference": "00045f8fd6f14b7c6c1be2434828ed5c57fd7a99"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/stopwatch/zipball/00045f8fd6f14b7c6c1be2434828ed5c57fd7a99",
- "reference": "00045f8fd6f14b7c6c1be2434828ed5c57fd7a99",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9"
- },
- "require-dev": {
- "symfony/phpunit-bridge": "~2.8|~3.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Stopwatch\\": ""
- }
- },
- "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 Stopwatch Component",
- "homepage": "https://symfony.com",
- "time": "2016-01-03 15:35:40"
- },
- {
- "name": "symfony/templating",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/templating.git",
- "reference": "71afa3904611ae200f2fad28b77bc89b3aeab6cd"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/templating/zipball/71afa3904611ae200f2fad28b77bc89b3aeab6cd",
- "reference": "71afa3904611ae200f2fad28b77bc89b3aeab6cd",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9"
- },
- "require-dev": {
"psr/log": "~1.0",
- "symfony/phpunit-bridge": "~2.8|~3.0"
+ "symfony/config": "~3.4|~4.0",
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/expression-language": "~3.4|~4.0",
+ "symfony/http-foundation": "~3.4|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
},
"suggest": {
- "psr/log": "For using debug logging in loaders"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Templating\\": ""
- }
- },
- "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-01-03 15:35:40"
- },
- {
- "name": "symfony/translation",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/translation.git",
- "reference": "74893d6cb2536d7ec0152a0cff48859e6c80aceb"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/74893d6cb2536d7ec0152a0cff48859e6c80aceb",
- "reference": "74893d6cb2536d7ec0152a0cff48859e6c80aceb",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.9"
- },
- "conflict": {
- "symfony/config": "<2.8"
- },
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "~2.8|~3.0",
- "symfony/intl": "~2.8|~3.0",
- "symfony/phpunit-bridge": "~2.8|~3.0",
- "symfony/yaml": "~2.8|~3.0"
- },
- "suggest": {
- "psr/log": "To use logging capability in translator",
- "symfony/config": "",
- "symfony/yaml": ""
+ "doctrine/annotations": "For using the annotation loader",
+ "symfony/config": "For using the all-in-one router or any loader",
+ "symfony/dependency-injection": "For loading routes from a service",
+ "symfony/expression-language": "For using expression matching",
+ "symfony/http-foundation": "For using a Symfony Request object",
+ "symfony/yaml": "For using the YAML loader"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Translation\\": ""
- }
+ "Symfony\\Component\\Routing\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -1861,37 +1749,46 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Translation Component",
+ "description": "Symfony Routing Component",
"homepage": "https://symfony.com",
- "time": "2016-02-04 12:57:09"
+ "keywords": [
+ "router",
+ "routing",
+ "uri",
+ "url"
+ ],
+ "time": "2018-10-02T12:40:59+00:00"
}
],
"packages-dev": [
{
"name": "doctrine/data-fixtures",
- "version": "dev-master",
+ "version": "v1.3.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/data-fixtures.git",
- "reference": "bd44f6b6e40247b6530bc8abe802e4e4d914976a"
+ "reference": "3a1e2c3c600e615a2dffe56d4ca0875cc5233e0a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/bd44f6b6e40247b6530bc8abe802e4e4d914976a",
- "reference": "bd44f6b6e40247b6530bc8abe802e4e4d914976a",
+ "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/3a1e2c3c600e615a2dffe56d4ca0875cc5233e0a",
+ "reference": "3a1e2c3c600e615a2dffe56d4ca0875cc5233e0a",
"shasum": ""
},
"require": {
"doctrine/common": "~2.2",
- "php": ">=5.3.2"
+ "php": "^7.1"
},
"conflict": {
- "doctrine/orm": "< 2.4"
+ "doctrine/phpcr-odm": "<1.3.0"
},
"require-dev": {
- "doctrine/orm": "~2.4"
+ "doctrine/dbal": "^2.5.4",
+ "doctrine/orm": "^2.5.4",
+ "phpunit/phpunit": "^7.0"
},
"suggest": {
+ "alcaeus/mongo-php-adapter": "For using MongoDB ODM with PHP 7",
"doctrine/mongodb-odm": "For loading MongoDB ODM fixtures",
"doctrine/orm": "For loading ORM fixtures",
"doctrine/phpcr-odm": "For loading PHPCR ODM fixtures"
@@ -1899,12 +1796,12 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1.x-dev"
+ "dev-master": "1.3.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Doctrine\\Common\\DataFixtures": "lib/"
+ "psr-4": {
+ "Doctrine\\Common\\DataFixtures\\": "lib/Doctrine/Common/DataFixtures"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1922,34 +1819,50 @@
"keywords": [
"database"
],
- "time": "2015-03-30 12:14:13"
+ "time": "2018-03-20T09:06:36+00:00"
},
{
"name": "doctrine/dbal",
- "version": "2.4.x-dev",
+ "version": "v2.8.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
- "reference": "4845507add849eea92e88f38882d826301e22cfb"
+ "reference": "5140a64c08b4b607b9bedaae0cedd26f04a0e621"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/dbal/zipball/4845507add849eea92e88f38882d826301e22cfb",
- "reference": "4845507add849eea92e88f38882d826301e22cfb",
+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/5140a64c08b4b607b9bedaae0cedd26f04a0e621",
+ "reference": "5140a64c08b4b607b9bedaae0cedd26f04a0e621",
"shasum": ""
},
"require": {
- "doctrine/common": "~2.4",
- "php": ">=5.3.2"
+ "doctrine/cache": "^1.0",
+ "doctrine/event-manager": "^1.0",
+ "ext-pdo": "*",
+ "php": "^7.1"
},
"require-dev": {
- "phpunit/phpunit": "3.7.*",
- "symfony/console": "~2.0"
+ "doctrine/coding-standard": "^4.0",
+ "jetbrains/phpstorm-stubs": "^2018.1.2",
+ "phpstan/phpstan": "^0.10.1",
+ "phpunit/phpunit": "^7.1.2",
+ "phpunit/phpunit-mock-objects": "!=3.2.4,!=3.2.5",
+ "symfony/console": "^2.0.5|^3.0|^4.0",
+ "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
},
"suggest": {
"symfony/console": "For helpful console commands such as SQL execution and import of files."
},
+ "bin": [
+ "bin/doctrine-dbal"
+ ],
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.8.x-dev",
+ "dev-develop": "3.0.x-dev"
+ }
+ },
"autoload": {
"psr-0": {
"Doctrine\\DBAL\\": "lib/"
@@ -1985,47 +1898,54 @@
"persistence",
"queryobject"
],
- "time": "2015-04-30 17:02:20"
+ "time": "2018-07-13T03:16:35+00:00"
},
{
"name": "doctrine/doctrine-bundle",
- "version": "dev-master",
+ "version": "1.9.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/DoctrineBundle.git",
- "reference": "2f28f691d8bba2aedb3537d12917d92ba3f63cb8"
+ "reference": "703fad32e4c8cbe609caf45a71a1d4266c830f0f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/2f28f691d8bba2aedb3537d12917d92ba3f63cb8",
- "reference": "2f28f691d8bba2aedb3537d12917d92ba3f63cb8",
+ "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/703fad32e4c8cbe609caf45a71a1d4266c830f0f",
+ "reference": "703fad32e4c8cbe609caf45a71a1d4266c830f0f",
"shasum": ""
},
"require": {
- "doctrine/dbal": "~2.3",
- "doctrine/doctrine-cache-bundle": "~1.0",
- "jdorn/sql-formatter": "~1.1",
- "php": ">=5.3.2",
- "symfony/console": "~2.3|~3.0",
- "symfony/doctrine-bridge": "~2.2|~3.0",
- "symfony/framework-bundle": "~2.3|~3.0"
+ "doctrine/dbal": "^2.5.12",
+ "doctrine/doctrine-cache-bundle": "~1.2",
+ "jdorn/sql-formatter": "^1.2.16",
+ "php": "^5.5.9|^7.0",
+ "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.22|~3.0|~4.0"
+ },
+ "conflict": {
+ "symfony/http-foundation": "<2.6"
},
"require-dev": {
- "doctrine/orm": "~2.3",
- "phpunit/phpunit": "~4",
- "satooshi/php-coveralls": "~0.6.1",
- "symfony/validator": "~2.2|~3.0",
- "symfony/yaml": "~2.2|~3.0",
- "twig/twig": "~1.10"
+ "doctrine/orm": "~2.4",
+ "phpunit/phpunit": "^4.8.36|^5.7|^6.4",
+ "satooshi/php-coveralls": "^1.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/web-profiler-bundle": "~2.7|~3.0|~4.0",
+ "symfony/yaml": "~2.7|~3.0|~4.0",
+ "twig/twig": "~1.26|~2.0"
},
"suggest": {
"doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
- "symfony/web-profiler-bundle": "to use the data collector"
+ "symfony/web-profiler-bundle": "To use the data collector."
},
"type": "symfony-bundle",
"extra": {
"branch-alias": {
- "dev-master": "1.5.x-dev"
+ "dev-master": "1.8.x-dev"
}
},
"autoload": {
@@ -2063,46 +1983,51 @@
"orm",
"persistence"
],
- "time": "2015-06-15 18:00:22"
+ "time": "2018-04-19T14:07:39+00:00"
},
{
"name": "doctrine/doctrine-cache-bundle",
- "version": "dev-master",
+ "version": "1.3.3",
"source": {
"type": "git",
"url": "https://github.com/doctrine/DoctrineCacheBundle.git",
- "reference": "30f0ed4b5681842a2a78b861f54136782fbea963"
+ "reference": "4c8e363f96427924e7e519c5b5119b4f54512697"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/30f0ed4b5681842a2a78b861f54136782fbea963",
- "reference": "30f0ed4b5681842a2a78b861f54136782fbea963",
+ "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/4c8e363f96427924e7e519c5b5119b4f54512697",
+ "reference": "4c8e363f96427924e7e519c5b5119b4f54512697",
"shasum": ""
},
"require": {
- "doctrine/cache": "~1.3",
+ "doctrine/cache": "^1.4.2",
"doctrine/inflector": "~1.0",
"php": ">=5.3.2",
- "symfony/doctrine-bridge": "~2.2",
- "symfony/security": "~2.2"
+ "symfony/doctrine-bridge": "~2.7|~3.3|~4.0"
},
"require-dev": {
"instaclick/coding-standard": "~1.1",
"instaclick/object-calisthenics-sniffs": "dev-master",
"instaclick/symfony2-coding-standard": "dev-remaster",
- "phpunit/phpunit": "~4",
- "satooshi/php-coveralls": "~0.6.1",
+ "phpunit/phpunit": "~4|~5",
+ "predis/predis": "~0.8",
+ "satooshi/php-coveralls": "^1.0",
"squizlabs/php_codesniffer": "~1.5",
- "symfony/console": "~2.2",
- "symfony/finder": "~2.2",
- "symfony/framework-bundle": "~2.2",
- "symfony/validator": "~2.2",
- "symfony/yaml": "~2.2"
+ "symfony/console": "~2.7|~3.3|~4.0",
+ "symfony/finder": "~2.7|~3.3|~4.0",
+ "symfony/framework-bundle": "~2.7|~3.3|~4.0",
+ "symfony/phpunit-bridge": "~2.7|~3.3|~4.0",
+ "symfony/security-acl": "~2.7|~3.3",
+ "symfony/validator": "~2.7|~3.3|~4.0",
+ "symfony/yaml": "~2.7|~3.3|~4.0"
+ },
+ "suggest": {
+ "symfony/security-acl": "For using this bundle to cache ACLs"
},
"type": "symfony-bundle",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "1.3.x-dev"
}
},
"autoload": {
@@ -2140,44 +2065,47 @@
"email": "fabien@symfony.com"
}
],
- "description": "Symfony2 Bundle for Doctrine Cache",
+ "description": "Symfony Bundle for Doctrine Cache",
"homepage": "http://www.doctrine-project.org",
"keywords": [
"cache",
"caching"
],
- "time": "2015-06-26 14:39:14"
+ "time": "2018-03-27T09:22:12+00:00"
},
{
"name": "doctrine/doctrine-fixtures-bundle",
- "version": "dev-master",
- "target-dir": "Doctrine/Bundle/FixturesBundle",
+ "version": "3.0.2",
"source": {
"type": "git",
"url": "https://github.com/doctrine/DoctrineFixturesBundle.git",
- "reference": "c5ff0542772102ddd4e2fbe173e9ad40ad67c22f"
+ "reference": "7fc29d2b18c61ed99826b21fbfd1ff9969cc2e7f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/c5ff0542772102ddd4e2fbe173e9ad40ad67c22f",
- "reference": "c5ff0542772102ddd4e2fbe173e9ad40ad67c22f",
+ "url": "https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/7fc29d2b18c61ed99826b21fbfd1ff9969cc2e7f",
+ "reference": "7fc29d2b18c61ed99826b21fbfd1ff9969cc2e7f",
"shasum": ""
},
"require": {
"doctrine/data-fixtures": "~1.0",
"doctrine/doctrine-bundle": "~1.0",
- "php": ">=5.3.2",
- "symfony/doctrine-bridge": "~2.1"
+ "php": ">=5.5.9|^7.0",
+ "symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
+ "symfony/framework-bundle": "^3.3|^4.0"
+ },
+ "require-dev": {
+ "symfony/phpunit-bridge": "^3.3"
},
"type": "symfony-bundle",
"extra": {
"branch-alias": {
- "dev-master": "2.2.x-dev"
+ "dev-master": "3.0.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Doctrine\\Bundle\\FixturesBundle": ""
+ "psr-4": {
+ "Doctrine\\Bundle\\FixturesBundle\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2204,36 +2132,36 @@
"Fixture",
"persistence"
],
- "time": "2015-01-19 02:21:37"
+ "time": "2017-12-04T20:26:38+00:00"
},
{
"name": "doctrine/instantiator",
- "version": "dev-master",
+ "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": {
@@ -2258,49 +2186,54 @@
"constructor",
"instantiate"
],
- "time": "2015-06-14 21:17:01"
+ "time": "2017-07-22T11:58:36+00:00"
},
{
"name": "doctrine/orm",
- "version": "2.4.x-dev",
+ "version": "v2.6.2",
"source": {
"type": "git",
"url": "https://github.com/doctrine/doctrine2.git",
- "reference": "0cf7e0e628c1409c9235c9b107c9623a2e8a80ef"
+ "reference": "d2b4dd71d2a276edd65d0c170375b445f8a4a4a8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/0cf7e0e628c1409c9235c9b107c9623a2e8a80ef",
- "reference": "0cf7e0e628c1409c9235c9b107c9623a2e8a80ef",
+ "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/d2b4dd71d2a276edd65d0c170375b445f8a4a4a8",
+ "reference": "d2b4dd71d2a276edd65d0c170375b445f8a4a4a8",
"shasum": ""
},
"require": {
- "doctrine/collections": "~1.1",
- "doctrine/dbal": "~2.4",
+ "doctrine/annotations": "~1.5",
+ "doctrine/cache": "~1.6",
+ "doctrine/collections": "^1.4",
+ "doctrine/common": "^2.7.1",
+ "doctrine/dbal": "^2.6",
+ "doctrine/instantiator": "~1.1",
"ext-pdo": "*",
- "php": ">=5.3.2",
- "symfony/console": "~2.0"
+ "php": "^7.1",
+ "symfony/console": "~3.0|~4.0"
},
"require-dev": {
- "satooshi/php-coveralls": "dev-master",
- "symfony/yaml": "~2.1"
+ "doctrine/coding-standard": "^1.0",
+ "phpunit/phpunit": "^6.5",
+ "squizlabs/php_codesniffer": "^3.2",
+ "symfony/yaml": "~3.4|~4.0"
},
"suggest": {
"symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
},
"bin": [
- "bin/doctrine",
- "bin/doctrine.php"
+ "bin/doctrine"
],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.4.x-dev"
+ "dev-master": "2.6.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Doctrine\\ORM\\": "lib/"
+ "psr-4": {
+ "Doctrine\\ORM\\": "lib/Doctrine/ORM"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2323,6 +2256,10 @@
{
"name": "Jonathan Wage",
"email": "jonwage@gmail.com"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
}
],
"description": "Object-Relational-Mapper for PHP",
@@ -2331,20 +2268,20 @@
"database",
"orm"
],
- "time": "2015-03-31 07:45:37"
+ "time": "2018-07-12T20:47:13+00:00"
},
{
"name": "jdorn/sql-formatter",
- "version": "dev-master",
+ "version": "v1.2.17",
"source": {
"type": "git",
"url": "https://github.com/jdorn/sql-formatter.git",
- "reference": "ffecdad6ca3f6235f941e960bc9d290a20054586"
+ "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/ffecdad6ca3f6235f941e960bc9d290a20054586",
- "reference": "ffecdad6ca3f6235f941e960bc9d290a20054586",
+ "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
+ "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
"shasum": ""
},
"require": {
@@ -2353,9 +2290,6 @@
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
- "bin": [
- "bin/sql-formatter"
- ],
"type": "library",
"extra": {
"branch-alias": {
@@ -2384,41 +2318,47 @@
"highlight",
"sql"
],
- "time": "2015-03-30 17:07:12"
+ "time": "2014-01-12T16:20:24+00:00"
},
{
"name": "myclabs/deep-copy",
- "version": "1.5.0",
+ "version": "1.8.1",
"source": {
"type": "git",
"url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "e3abefcd7f106677fd352cd7c187d6c969aa9ddc"
+ "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/e3abefcd7f106677fd352cd7c187d6c969aa9ddc",
- "reference": "e3abefcd7f106677fd352cd7c187d6c969aa9ddc",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
+ "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
"shasum": ""
},
"require": {
- "php": ">=5.4.0"
+ "php": "^7.1"
+ },
+ "replace": {
+ "myclabs/deep-copy": "self.version"
},
"require-dev": {
- "doctrine/collections": "1.*",
- "phpunit/phpunit": "~4.1"
+ "doctrine/collections": "^1.0",
+ "doctrine/common": "^2.6",
+ "phpunit/phpunit": "^7.1"
},
"type": "library",
"autoload": {
"psr-4": {
"DeepCopy\\": "src/DeepCopy/"
- }
+ },
+ "files": [
+ "src/DeepCopy/deep_copy.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"description": "Create deep copies (clones) of your objects",
- "homepage": "https://github.com/myclabs/DeepCopy",
"keywords": [
"clone",
"copy",
@@ -2426,44 +2366,129 @@
"object",
"object graph"
],
- "time": "2015-11-07 22:20:37"
+ "time": "2018-06-11T23:09:50+00:00"
},
{
- "name": "pagerfanta/pagerfanta",
- "version": "dev-master",
+ "name": "phar-io/manifest",
+ "version": "1.0.1",
"source": {
"type": "git",
- "url": "https://github.com/whiteoctober/Pagerfanta.git",
- "reference": "0eec60b48d38132333369a681db2e32c42ad117d"
+ "url": "https://github.com/phar-io/manifest.git",
+ "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/0eec60b48d38132333369a681db2e32c42ad117d",
- "reference": "0eec60b48d38132333369a681db2e32c42ad117d",
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
+ "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
"shasum": ""
},
"require": {
- "php": ">=5.3.0"
+ "ext-dom": "*",
+ "ext-phar": "*",
+ "phar-io/version": "^1.0.1",
+ "php": "^5.6 || ^7.0"
},
- "require-dev": {
- "doctrine/orm": "~2.3",
- "doctrine/phpcr-odm": "1.*",
- "jackalope/jackalope-doctrine-dbal": "1.*",
- "jmikola/geojson": "~1.0",
- "mandango/mandango": "~1.0@dev",
- "mandango/mondator": "~1.0@dev",
- "phpunit/phpunit": "~4",
- "propel/propel1": "~1.6",
- "ruflin/elastica": "~1.3",
- "solarium/solarium": "~3.1"
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
},
- "suggest": {
- "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
- "doctrine/orm": "To use the DoctrineORMAdapter.",
- "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
- "mandango/mandango": "To use the MandangoAdapter.",
- "propel/propel1": "To use the PropelAdapter",
- "solarium/solarium": "To use the SolariumAdapter."
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
+ "time": "2017-03-05T18:14:27+00:00"
+ },
+ {
+ "name": "phar-io/version",
+ "version": "1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/version.git",
+ "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
+ "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.6 || ^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Library for handling version information and constraints",
+ "time": "2017-03-05T17:38:23+00:00"
+ },
+ {
+ "name": "phpdocumentor/reflection-common",
+ "version": "1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
+ "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
+ "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.6"
},
"type": "library",
"extra": {
@@ -2472,8 +2497,10 @@
}
},
"autoload": {
- "psr-0": {
- "Pagerfanta\\": "src/"
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": [
+ "src"
+ ]
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2482,52 +2509,103 @@
],
"authors": [
{
- "name": "Pablo DÃez",
- "email": "pablodip@gmail.com"
+ "name": "Jaap van Otterdijk",
+ "email": "opensource@ijaap.nl"
}
],
- "description": "Pagination for PHP 5.3",
+ "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
+ "homepage": "http://www.phpdoc.org",
"keywords": [
- "page",
- "pagination",
- "paginator",
- "paging"
+ "FQSEN",
+ "phpDocumentor",
+ "phpdoc",
+ "reflection",
+ "static analysis"
],
- "time": "2014-11-21 09:25:05"
+ "time": "2017-09-11T18:02:19+00:00"
},
{
"name": "phpdocumentor/reflection-docblock",
- "version": "2.0.4",
+ "version": "4.3.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8"
+ "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d68dbdc53dc358a816f00b300704702b2eaff7b8",
- "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
+ "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^7.0",
+ "phpdocumentor/reflection-common": "^1.0.0",
+ "phpdocumentor/type-resolver": "^0.4.0",
+ "webmozart/assert": "^1.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.0"
+ "doctrine/instantiator": "~1.0.5",
+ "mockery/mockery": "^1.0",
+ "phpunit/phpunit": "^6.4"
},
- "suggest": {
- "dflydev/markdown": "~1.0",
- "erusev/parsedown": "~1.0"
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": [
+ "src/"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Mike van Riel",
+ "email": "me@mikevanriel.com"
+ }
+ ],
+ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
+ "time": "2017-11-30T07:14:17+00:00"
+ },
+ {
+ "name": "phpdocumentor/type-resolver",
+ "version": "0.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/TypeResolver.git",
+ "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
+ "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.5 || ^7.0",
+ "phpdocumentor/reflection-common": "^1.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^0.9.4",
+ "phpunit/phpunit": "^5.2||^4.8.24"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0.x-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
- "psr-0": {
- "phpDocumentor": [
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": [
"src/"
]
}
@@ -2539,39 +2617,40 @@
"authors": [
{
"name": "Mike van Riel",
- "email": "mike.vanriel@naenius.com"
+ "email": "me@mikevanriel.com"
}
],
- "time": "2015-02-03 12:10:50"
+ "time": "2017-07-14T14:27:02+00:00"
},
{
"name": "phpspec/prophecy",
- "version": "dev-master",
+ "version": "1.8.0",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
- "reference": "b02221e42163be673f9b44a0bc92a8b4907a7c6d"
+ "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b02221e42163be673f9b44a0bc92a8b4907a7c6d",
- "reference": "b02221e42163be673f9b44a0bc92a8b4907a7c6d",
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
+ "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
"shasum": ""
},
"require": {
"doctrine/instantiator": "^1.0.2",
"php": "^5.3|^7.0",
- "phpdocumentor/reflection-docblock": "~2.0",
- "sebastian/comparator": "~1.1",
- "sebastian/recursion-context": "~1.0"
+ "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
+ "sebastian/comparator": "^1.1|^2.0|^3.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.35 || ^5.7 || ^6.5 || ^7.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.6.x-dev"
+ "dev-master": "1.8.x-dev"
}
},
"autoload": {
@@ -2604,44 +2683,44 @@
"spy",
"stub"
],
- "time": "2016-02-21 17:41:21"
+ "time": "2018-08-05T17:53:17+00:00"
},
{
"name": "phpunit/php-code-coverage",
- "version": "dev-master",
+ "version": "5.3.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "a58f95ae76fe201b571fad3e8370a50c4368678c"
+ "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/a58f95ae76fe201b571fad3e8370a50c4368678c",
- "reference": "a58f95ae76fe201b571fad3e8370a50c4368678c",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
+ "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
"shasum": ""
},
"require": {
- "php": "^5.6 || ^7.0",
- "phpunit/php-file-iterator": "~1.3",
- "phpunit/php-text-template": "~1.2",
- "phpunit/php-token-stream": "^1.4.2",
- "sebastian/code-unit-reverse-lookup": "~1.0",
- "sebastian/environment": "^1.3.2",
- "sebastian/version": "~1.0|~2.0"
+ "ext-dom": "*",
+ "ext-xmlwriter": "*",
+ "php": "^7.0",
+ "phpunit/php-file-iterator": "^1.4.2",
+ "phpunit/php-text-template": "^1.2.1",
+ "phpunit/php-token-stream": "^2.0.1",
+ "sebastian/code-unit-reverse-lookup": "^1.0.1",
+ "sebastian/environment": "^3.0",
+ "sebastian/version": "^2.0.1",
+ "theseer/tokenizer": "^1.1"
},
"require-dev": {
- "ext-xdebug": ">=2.1.4",
- "phpunit/phpunit": "~5"
+ "phpunit/phpunit": "^6.0"
},
"suggest": {
- "ext-dom": "*",
- "ext-xdebug": ">=2.2.1",
- "ext-xmlwriter": "*"
+ "ext-xdebug": "^2.5.5"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2.x-dev"
+ "dev-master": "5.3.x-dev"
}
},
"autoload": {
@@ -2656,7 +2735,7 @@
"authors": [
{
"name": "Sebastian Bergmann",
- "email": "sb@sebastian-bergmann.de",
+ "email": "sebastian@phpunit.de",
"role": "lead"
}
],
@@ -2667,20 +2746,20 @@
"testing",
"xunit"
],
- "time": "2016-02-18 07:31:12"
+ "time": "2018-04-06T15:36:58+00:00"
},
{
"name": "phpunit/php-file-iterator",
- "version": "dev-master",
+ "version": "1.4.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
+ "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
},
"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/730b01bc3e867237eaac355e06a36b85dd93a8b4",
+ "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
"shasum": ""
},
"require": {
@@ -2714,7 +2793,7 @@
"filesystem",
"iterator"
],
- "time": "2015-06-21 13:08:43"
+ "time": "2017-11-27T13:52:08+00:00"
},
{
"name": "phpunit/php-text-template",
@@ -2755,26 +2834,34 @@
"keywords": [
"template"
],
- "time": "2015-06-21 13:50:34"
+ "time": "2015-06-21T13:50:34+00:00"
},
{
"name": "phpunit/php-timer",
- "version": "dev-master",
+ "version": "1.0.9",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b"
+ "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
- "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
+ "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.8.35 || ^5.7 || ^6.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
"autoload": {
"classmap": [
"src/"
@@ -2796,33 +2883,33 @@
"keywords": [
"timer"
],
- "time": "2015-06-21 08:01:12"
+ "time": "2017-02-26T11:10:40+00:00"
},
{
"name": "phpunit/php-token-stream",
- "version": "dev-master",
+ "version": "2.0.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-token-stream.git",
- "reference": "cab6c6fefee93d7b7c3a01292a0fe0884ea66644"
+ "reference": "791198a2c6254db10131eecfe8c06670700904db"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/cab6c6fefee93d7b7c3a01292a0fe0884ea66644",
- "reference": "cab6c6fefee93d7b7c3a01292a0fe0884ea66644",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
+ "reference": "791198a2c6254db10131eecfe8c06670700904db",
"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": {
@@ -2845,48 +2932,57 @@
"keywords": [
"tokenizer"
],
- "time": "2015-09-23 14:46:55"
+ "time": "2017-11-27T05:48:46+00:00"
},
{
"name": "phpunit/phpunit",
- "version": "dev-master",
+ "version": "6.5.13",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "e9597cce0f7d794180ebfd02ae0845adcce8e721"
+ "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e9597cce0f7d794180ebfd02ae0845adcce8e721",
- "reference": "e9597cce0f7d794180ebfd02ae0845adcce8e721",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
+ "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-json": "*",
- "ext-pcre": "*",
- "ext-reflection": "*",
- "ext-spl": "*",
- "myclabs/deep-copy": "~1.3",
- "php": "^5.6 || ^7.0",
- "phpspec/prophecy": "^1.3.1",
- "phpunit/php-code-coverage": "^3.2.1",
- "phpunit/php-file-iterator": "~1.4",
- "phpunit/php-text-template": "~1.2",
- "phpunit/php-timer": ">=1.0.6",
- "phpunit/phpunit-mock-objects": ">=3.0.5",
- "sebastian/comparator": "~1.1",
- "sebastian/diff": "~1.2",
- "sebastian/environment": "~1.3",
- "sebastian/exporter": "~1.2",
- "sebastian/global-state": "~1.0",
- "sebastian/object-enumerator": "~1.0",
- "sebastian/resource-operations": "~1.0",
- "sebastian/version": "~1.0|~2.0",
- "symfony/yaml": "~2.1|~3.0"
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-xml": "*",
+ "myclabs/deep-copy": "^1.6.1",
+ "phar-io/manifest": "^1.0.1",
+ "phar-io/version": "^1.0",
+ "php": "^7.0",
+ "phpspec/prophecy": "^1.7",
+ "phpunit/php-code-coverage": "^5.3",
+ "phpunit/php-file-iterator": "^1.4.3",
+ "phpunit/php-text-template": "^1.2.1",
+ "phpunit/php-timer": "^1.0.9",
+ "phpunit/phpunit-mock-objects": "^5.0.9",
+ "sebastian/comparator": "^2.1",
+ "sebastian/diff": "^2.0",
+ "sebastian/environment": "^3.1",
+ "sebastian/exporter": "^3.1",
+ "sebastian/global-state": "^2.0",
+ "sebastian/object-enumerator": "^3.0.3",
+ "sebastian/resource-operations": "^1.0",
+ "sebastian/version": "^2.0.1"
+ },
+ "conflict": {
+ "phpdocumentor/reflection-docblock": "3.0.2",
+ "phpunit/dbunit": "<3.0"
+ },
+ "require-dev": {
+ "ext-pdo": "*"
},
"suggest": {
- "phpunit/php-invoker": "~1.1"
+ "ext-xdebug": "*",
+ "phpunit/php-invoker": "^1.1"
},
"bin": [
"phpunit"
@@ -2894,7 +2990,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "5.4.x-dev"
+ "dev-master": "6.5.x-dev"
}
},
"autoload": {
@@ -2920,30 +3016,33 @@
"testing",
"xunit"
],
- "time": "2016-02-25 12:40:14"
+ "time": "2018-09-08T15:10:43+00:00"
},
{
"name": "phpunit/phpunit-mock-objects",
- "version": "dev-master",
+ "version": "5.0.10",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
- "reference": "c4dd0c9e7fcbf53c6aa48012902be692318c7566"
+ "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/c4dd0c9e7fcbf53c6aa48012902be692318c7566",
- "reference": "c4dd0c9e7fcbf53c6aa48012902be692318c7566",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
+ "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
"shasum": ""
},
"require": {
- "doctrine/instantiator": "^1.0.2",
- "php": ">=5.6",
- "phpunit/php-text-template": "~1.2",
- "sebastian/exporter": "~1.2"
+ "doctrine/instantiator": "^1.0.5",
+ "php": "^7.0",
+ "phpunit/php-text-template": "^1.2.1",
+ "sebastian/exporter": "^3.1"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<6.0"
},
"require-dev": {
- "phpunit/phpunit": "~5"
+ "phpunit/phpunit": "^6.5.11"
},
"suggest": {
"ext-soap": "*"
@@ -2951,7 +3050,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1.x-dev"
+ "dev-master": "5.0.x-dev"
}
},
"autoload": {
@@ -2966,7 +3065,7 @@
"authors": [
{
"name": "Sebastian Bergmann",
- "email": "sb@sebastian-bergmann.de",
+ "email": "sebastian@phpunit.de",
"role": "lead"
}
],
@@ -2976,27 +3075,27 @@
"mock",
"xunit"
],
- "time": "2015-12-08 08:54:19"
+ "time": "2018-08-09T05:50:03+00:00"
},
{
"name": "sebastian/code-unit-reverse-lookup",
- "version": "dev-master",
+ "version": "1.0.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
- "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe"
+ "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
- "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
+ "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
"shasum": ""
},
"require": {
- "php": ">=5.6"
+ "php": "^5.6 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~5"
+ "phpunit/phpunit": "^5.7 || ^6.0"
},
"type": "library",
"extra": {
@@ -3021,34 +3120,34 @@
],
"description": "Looks up which function or method a line of code belongs to",
"homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
- "time": "2016-02-13 06:45:14"
+ "time": "2017-03-04T06:30:41+00:00"
},
{
"name": "sebastian/comparator",
- "version": "dev-master",
+ "version": "2.1.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
+ "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
- "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
+ "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
"shasum": ""
},
"require": {
- "php": ">=5.3.3",
- "sebastian/diff": "~1.2",
- "sebastian/exporter": "~1.2"
+ "php": "^7.0",
+ "sebastian/diff": "^2.0 || ^3.0",
+ "sebastian/exporter": "^3.1"
},
"require-dev": {
- "phpunit/phpunit": "~4.4"
+ "phpunit/phpunit": "^6.4"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2.x-dev"
+ "dev-master": "2.1.x-dev"
}
},
"autoload": {
@@ -3079,38 +3178,38 @@
}
],
"description": "Provides the functionality to compare PHP values for equality",
- "homepage": "http://www.github.com/sebastianbergmann/comparator",
+ "homepage": "https://github.com/sebastianbergmann/comparator",
"keywords": [
"comparator",
"compare",
"equality"
],
- "time": "2015-07-26 15:48:44"
+ "time": "2018-02-01T13:46:46+00:00"
},
{
"name": "sebastian/diff",
- "version": "dev-master",
+ "version": "2.0.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
+ "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
- "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
+ "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.8"
+ "phpunit/phpunit": "^6.2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.4-dev"
+ "dev-master": "2.0-dev"
}
},
"autoload": {
@@ -3137,32 +3236,32 @@
"keywords": [
"diff"
],
- "time": "2015-12-08 07:14:41"
+ "time": "2017-08-03T08:09:46+00:00"
},
{
"name": "sebastian/environment",
- "version": "dev-master",
+ "version": "3.1.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf"
+ "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf",
- "reference": "dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
+ "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.4"
+ "phpunit/phpunit": "^6.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.3.x-dev"
+ "dev-master": "3.1.x-dev"
}
},
"autoload": {
@@ -3187,34 +3286,34 @@
"environment",
"hhvm"
],
- "time": "2016-02-26 18:40:46"
+ "time": "2017-07-01T08:51:00+00:00"
},
{
"name": "sebastian/exporter",
- "version": "dev-master",
+ "version": "3.1.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "f88f8936517d54ae6d589166810877fb2015d0a2"
+ "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/f88f8936517d54ae6d589166810877fb2015d0a2",
- "reference": "f88f8936517d54ae6d589166810877fb2015d0a2",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
+ "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
"shasum": ""
},
"require": {
- "php": ">=5.3.3",
- "sebastian/recursion-context": "~1.0"
+ "php": "^7.0",
+ "sebastian/recursion-context": "^3.0"
},
"require-dev": {
"ext-mbstring": "*",
- "phpunit/phpunit": "~4.4"
+ "phpunit/phpunit": "^6.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.3.x-dev"
+ "dev-master": "3.1.x-dev"
}
},
"autoload": {
@@ -3242,47 +3341,97 @@
{
"name": "Sebastian Bergmann",
"email": "sebastian@phpunit.de"
- },
- {
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ }
+ ],
+ "description": "Provides the functionality to export PHP variables for visualization",
+ "homepage": "http://www.github.com/sebastianbergmann/exporter",
+ "keywords": [
+ "export",
+ "exporter"
+ ],
+ "time": "2017-04-03T13:19:02+00:00"
+ },
+ {
+ "name": "sebastian/global-state",
+ "version": "2.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/global-state.git",
+ "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
+ "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.0"
+ },
+ "suggest": {
+ "ext-uopz": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
}
],
- "description": "Provides the functionality to export PHP variables for visualization",
- "homepage": "http://www.github.com/sebastianbergmann/exporter",
+ "description": "Snapshotting of global state",
+ "homepage": "http://www.github.com/sebastianbergmann/global-state",
"keywords": [
- "export",
- "exporter"
+ "global state"
],
- "time": "2015-08-09 04:23:41"
+ "time": "2017-04-27T15:39:26+00:00"
},
{
- "name": "sebastian/global-state",
- "version": "1.1.1",
+ "name": "sebastian/object-enumerator",
+ "version": "3.0.3",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
+ "url": "https://github.com/sebastianbergmann/object-enumerator.git",
+ "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
- "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
+ "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^7.0",
+ "sebastian/object-reflector": "^1.1.1",
+ "sebastian/recursion-context": "^3.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.2"
- },
- "suggest": {
- "ext-uopz": "*"
+ "phpunit/phpunit": "^6.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0-dev"
+ "dev-master": "3.0.x-dev"
}
},
"autoload": {
@@ -3300,38 +3449,34 @@
"email": "sebastian@phpunit.de"
}
],
- "description": "Snapshotting of global state",
- "homepage": "http://www.github.com/sebastianbergmann/global-state",
- "keywords": [
- "global state"
- ],
- "time": "2015-10-12 03:26:01"
+ "description": "Traverses array structures and object graphs to enumerate all referenced objects",
+ "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
+ "time": "2017-08-03T12:35:26+00:00"
},
{
- "name": "sebastian/object-enumerator",
- "version": "dev-master",
+ "name": "sebastian/object-reflector",
+ "version": "1.1.1",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/object-enumerator.git",
- "reference": "d4ca2fb70344987502567bc50081c03e6192fb26"
+ "url": "https://github.com/sebastianbergmann/object-reflector.git",
+ "reference": "773f97c67f28de00d397be301821b06708fca0be"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/d4ca2fb70344987502567bc50081c03e6192fb26",
- "reference": "d4ca2fb70344987502567bc50081c03e6192fb26",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
+ "reference": "773f97c67f28de00d397be301821b06708fca0be",
"shasum": ""
},
"require": {
- "php": ">=5.6",
- "sebastian/recursion-context": "~1.0"
+ "php": "^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~5"
+ "phpunit/phpunit": "^6.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "1.1-dev"
}
},
"autoload": {
@@ -3349,34 +3494,34 @@
"email": "sebastian@phpunit.de"
}
],
- "description": "Traverses array structures and object graphs to enumerate all referenced objects",
- "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
- "time": "2016-01-28 13:25:10"
+ "description": "Allows reflection of object attributes, including inherited and non-public ones",
+ "homepage": "https://github.com/sebastianbergmann/object-reflector/",
+ "time": "2017-03-29T09:07:27+00:00"
},
{
"name": "sebastian/recursion-context",
- "version": "dev-master",
+ "version": "3.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "7ff5b1b3dcc55b8ab8ae61ef99d4730940856ee7"
+ "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/7ff5b1b3dcc55b8ab8ae61ef99d4730940856ee7",
- "reference": "7ff5b1b3dcc55b8ab8ae61ef99d4730940856ee7",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
+ "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.4"
+ "phpunit/phpunit": "^6.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "3.0.x-dev"
}
},
"autoload": {
@@ -3404,11 +3549,11 @@
],
"description": "Provides functionality to recursively process PHP variables",
"homepage": "http://www.github.com/sebastianbergmann/recursion-context",
- "time": "2016-01-28 05:39:29"
+ "time": "2017-03-03T06:23:57+00:00"
},
{
"name": "sebastian/resource-operations",
- "version": "dev-master",
+ "version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/resource-operations.git",
@@ -3446,20 +3591,20 @@
],
"description": "Provides a list of PHP built-in functions that operate on resources",
"homepage": "https://www.github.com/sebastianbergmann/resource-operations",
- "time": "2015-07-28 20:34:47"
+ "time": "2015-07-28T20:34:47+00:00"
},
{
"name": "sebastian/version",
- "version": "dev-master",
+ "version": "2.0.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/version.git",
- "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5"
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
- "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
"shasum": ""
},
"require": {
@@ -3489,29 +3634,45 @@
],
"description": "Library that helps with managing the version number of Git-hosted PHP projects",
"homepage": "https://github.com/sebastianbergmann/version",
- "time": "2016-02-04 12:56:52"
+ "time": "2016-10-03T07:35:21+00:00"
},
{
"name": "sensio/framework-extra-bundle",
- "version": "dev-master",
+ "version": "v5.2.2",
"source": {
"type": "git",
"url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
- "reference": "0616fd568da051adc19ca63006cc808531ba2da4"
+ "reference": "9ef408febe2f12e70118ef61c6515035a06c5830"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/0616fd568da051adc19ca63006cc808531ba2da4",
- "reference": "0616fd568da051adc19ca63006cc808531ba2da4",
+ "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/9ef408febe2f12e70118ef61c6515035a06c5830",
+ "reference": "9ef408febe2f12e70118ef61c6515035a06c5830",
"shasum": ""
},
"require": {
- "doctrine/common": "~2.2",
- "symfony/framework-bundle": "~2.3"
+ "doctrine/common": "^2.2",
+ "symfony/config": "^3.3|^4.0",
+ "symfony/dependency-injection": "^3.3|^4.0",
+ "symfony/framework-bundle": "^3.4|^4.0",
+ "symfony/http-kernel": "^3.3|^4.0"
},
"require-dev": {
- "symfony/expression-language": "~2.4",
- "symfony/security-bundle": "~2.4"
+ "doctrine/doctrine-bundle": "^1.6",
+ "doctrine/orm": "^2.5",
+ "symfony/browser-kit": "^3.3|^4.0",
+ "symfony/dom-crawler": "^3.3|^4.0",
+ "symfony/expression-language": "^3.3|^4.0",
+ "symfony/finder": "^3.3|^4.0",
+ "symfony/monolog-bridge": "^3.0|^4.0",
+ "symfony/monolog-bundle": "^3.2",
+ "symfony/phpunit-bridge": "^3.3|^4.0",
+ "symfony/psr-http-message-bridge": "^0.3",
+ "symfony/security-bundle": "^3.3|^4.0",
+ "symfony/twig-bundle": "^3.3|^4.0",
+ "symfony/yaml": "^3.3|^4.0",
+ "twig/twig": "~1.12|~2.0",
+ "zendframework/zend-diactoros": "^1.3"
},
"suggest": {
"symfony/expression-language": "",
@@ -3521,7 +3682,7 @@
"type": "symfony-bundle",
"extra": {
"branch-alias": {
- "dev-master": "3.0.x-dev"
+ "dev-master": "5.2.x-dev"
}
},
"autoload": {
@@ -3544,30 +3705,29 @@
"annotations",
"controllers"
],
- "time": "2015-06-05 13:59:21"
+ "time": "2018-10-26T14:09:02+00:00"
},
{
"name": "symfony/browser-kit",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/browser-kit.git",
- "reference": "113bfa915c2b013da771def5743861401775057e"
+ "reference": "c55fe9257003b2d95c0211b3f6941e8dfd26dffd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/browser-kit/zipball/113bfa915c2b013da771def5743861401775057e",
- "reference": "456ba77df5d5a7c32145f0c45f9e04836aec66f1",
+ "url": "https://api.github.com/repos/symfony/browser-kit/zipball/c55fe9257003b2d95c0211b3f6941e8dfd26dffd",
+ "reference": "c55fe9257003b2d95c0211b3f6941e8dfd26dffd",
"shasum": ""
},
"require": {
- "php": ">=5.5.9",
- "symfony/dom-crawler": "~2.8|~3.0"
+ "php": "^7.1.3",
+ "symfony/dom-crawler": "~3.4|~4.0"
},
"require-dev": {
- "symfony/css-selector": "~2.8|~3.0",
- "symfony/phpunit-bridge": "~2.8|~3.0",
- "symfony/process": "~2.8|~3.0"
+ "symfony/css-selector": "~3.4|~4.0",
+ "symfony/process": "~3.4|~4.0"
},
"suggest": {
"symfony/process": ""
@@ -3575,13 +3735,16 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\BrowserKit\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3599,39 +3762,45 @@
],
"description": "Symfony BrowserKit Component",
"homepage": "https://symfony.com",
- "time": "2016-02-04 12:57:09"
+ "time": "2018-07-26T09:10:45+00:00"
},
{
"name": "symfony/class-loader",
- "version": "dev-master",
+ "version": "v3.4.17",
"source": {
"type": "git",
"url": "https://github.com/symfony/class-loader.git",
- "reference": "dd93569b7689d32ce35e12cea6fd397554a0003c"
+ "reference": "f31333bdff54c7595f834d510a6d2325573ddb36"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/class-loader/zipball/dd93569b7689d32ce35e12cea6fd397554a0003c",
- "reference": "4d45c984d7fa7a2b6f27ea7cca58495e61d35ce2",
+ "url": "https://api.github.com/repos/symfony/class-loader/zipball/f31333bdff54c7595f834d510a6d2325573ddb36",
+ "reference": "f31333bdff54c7595f834d510a6d2325573ddb36",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
+ "php": "^5.5.9|>=7.0.8"
},
"require-dev": {
- "symfony/finder": "~2.8|~3.0",
- "symfony/phpunit-bridge": "~2.8|~3.0"
+ "symfony/finder": "~2.8|~3.0|~4.0",
+ "symfony/polyfill-apcu": "~1.1"
+ },
+ "suggest": {
+ "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\ClassLoader\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3649,46 +3818,57 @@
],
"description": "Symfony ClassLoader Component",
"homepage": "https://symfony.com",
- "time": "2016-02-04 12:57:09"
+ "time": "2018-10-02T12:28:39+00:00"
},
{
"name": "symfony/console",
- "version": "2.8.x-dev",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "56cc5caf051189720b8de974e4746090aaa10d44"
+ "reference": "dc7122fe5f6113cfaba3b3de575d31112c9aa60b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/56cc5caf051189720b8de974e4746090aaa10d44",
- "reference": "333ddb595b2bc54f03bd093cf6b8b0f5c526b2eb",
+ "url": "https://api.github.com/repos/symfony/console/zipball/dc7122fe5f6113cfaba3b3de575d31112c9aa60b",
+ "reference": "dc7122fe5f6113cfaba3b3de575d31112c9aa60b",
"shasum": ""
},
"require": {
- "php": ">=5.3.9"
+ "php": "^7.1.3",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<3.4",
+ "symfony/process": "<3.3"
},
"require-dev": {
"psr/log": "~1.0",
- "symfony/event-dispatcher": "~2.1|~3.0.0",
- "symfony/phpunit-bridge": "~2.7|~3.0.0",
- "symfony/process": "~2.1|~3.0.0"
+ "symfony/config": "~3.4|~4.0",
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/event-dispatcher": "~3.4|~4.0",
+ "symfony/lock": "~3.4|~4.0",
+ "symfony/process": "~3.4|~4.0"
},
"suggest": {
- "psr/log": "For using the console logger",
+ "psr/log-implementation": "For using the console logger",
"symfony/event-dispatcher": "",
+ "symfony/lock": "",
"symfony/process": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Console\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3706,38 +3886,38 @@
],
"description": "Symfony Console Component",
"homepage": "https://symfony.com",
- "time": "2016-02-28 16:20:50"
+ "time": "2018-10-03T08:15:46+00:00"
},
{
"name": "symfony/css-selector",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
- "reference": "608aae2b48d9f6e5144d407919527a0fdf10c201"
+ "reference": "d67de79a70a27d93c92c47f37ece958bf8de4d8a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/608aae2b48d9f6e5144d407919527a0fdf10c201",
- "reference": "c9a0ba13d7f64a376554c49a2279a838ed6aa30f",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/d67de79a70a27d93c92c47f37ece958bf8de4d8a",
+ "reference": "d67de79a70a27d93c92c47f37ece958bf8de4d8a",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
- },
- "require-dev": {
- "symfony/phpunit-bridge": "~2.8|~3.0"
+ "php": "^7.1.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\CssSelector\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3759,58 +3939,69 @@
],
"description": "Symfony CssSelector Component",
"homepage": "https://symfony.com",
- "time": "2016-02-04 12:57:09"
+ "time": "2018-10-02T16:36:10+00:00"
},
{
"name": "symfony/doctrine-bridge",
- "version": "2.8.x-dev",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/doctrine-bridge.git",
- "reference": "d593c309d3ffb82cc238ca8b6ced8688c410d245"
+ "reference": "ad230829c4eb9ef13c8fcbba6077971c6377c18c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/d593c309d3ffb82cc238ca8b6ced8688c410d245",
- "reference": "ad2a9a5cd3e2e88f1b9648fb78f546ff5fb407f7",
+ "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/ad230829c4eb9ef13c8fcbba6077971c6377c18c",
+ "reference": "ad230829c4eb9ef13c8fcbba6077971c6377c18c",
"shasum": ""
},
"require": {
- "doctrine/common": "~2.3",
- "php": ">=5.3.9"
+ "doctrine/common": "~2.4",
+ "php": "^7.1.3",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
+ "symfony/dependency-injection": "<3.4"
},
"require-dev": {
"doctrine/data-fixtures": "1.0.*",
- "doctrine/dbal": "~2.2",
- "doctrine/orm": "~2.2,>=2.2.3",
- "symfony/dependency-injection": "~2.2|~3.0.0",
- "symfony/expression-language": "~2.2|~3.0.0",
- "symfony/form": "~2.7,>=2.7.1|~3.0.0",
- "symfony/http-kernel": "~2.2|~3.0.0",
- "symfony/phpunit-bridge": "~2.7|~3.0.0",
- "symfony/property-access": "~2.3|~3.0.0",
- "symfony/security": "~2.2|~3.0.0",
- "symfony/stopwatch": "~2.2|~3.0.0",
- "symfony/translation": "~2.0,>=2.0.5|~3.0.0",
- "symfony/validator": "~2.5,>=2.5.5|~3.0.0"
+ "doctrine/dbal": "~2.4",
+ "doctrine/orm": "^2.4.5",
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/expression-language": "~3.4|~4.0",
+ "symfony/form": "~3.4|~4.0",
+ "symfony/http-kernel": "~3.4|~4.0",
+ "symfony/property-access": "~3.4|~4.0",
+ "symfony/property-info": "~3.4|~4.0",
+ "symfony/proxy-manager-bridge": "~3.4|~4.0",
+ "symfony/security": "~3.4|~4.0",
+ "symfony/stopwatch": "~3.4|~4.0",
+ "symfony/translation": "~3.4|~4.0",
+ "symfony/validator": "~3.4|~4.0"
},
"suggest": {
"doctrine/data-fixtures": "",
"doctrine/dbal": "",
"doctrine/orm": "",
"symfony/form": "",
+ "symfony/property-info": "",
"symfony/validator": ""
},
"type": "symfony-bridge",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Bridge\\Doctrine\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3828,28 +4019,29 @@
],
"description": "Symfony Doctrine Bridge",
"homepage": "https://symfony.com",
- "time": "2016-02-15 08:50:51"
+ "time": "2018-10-02T12:40:59+00:00"
},
{
"name": "symfony/dom-crawler",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/dom-crawler.git",
- "reference": "021139982239531f29ce7661beb764012b31048f"
+ "reference": "80e60271bb288de2a2259662cff125cff4f93f95"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/021139982239531f29ce7661beb764012b31048f",
- "reference": "6bf50c092a5fcfb700e53addabb82ebd77625b27",
+ "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/80e60271bb288de2a2259662cff125cff4f93f95",
+ "reference": "80e60271bb288de2a2259662cff125cff4f93f95",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
+ "php": "^7.1.3",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.0"
},
"require-dev": {
- "symfony/css-selector": "~2.8|~3.0",
- "symfony/phpunit-bridge": "~2.8|~3.0"
+ "symfony/css-selector": "~3.4|~4.0"
},
"suggest": {
"symfony/css-selector": ""
@@ -3857,13 +4049,16 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\DomCrawler\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3881,42 +4076,50 @@
],
"description": "Symfony DomCrawler Component",
"homepage": "https://symfony.com",
- "time": "2016-02-28 16:28:07"
+ "time": "2018-10-02T12:40:59+00:00"
},
{
"name": "symfony/form",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/form.git",
- "reference": "a6c30a1665ab76d1746ad8b58d5ad910a9050127"
+ "reference": "360f22cdb0278d69fbd571b293df04065b2a2279"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/form/zipball/a6c30a1665ab76d1746ad8b58d5ad910a9050127",
- "reference": "df3fc5f5aa0ac69f4727ccf5c96409137c7820f5",
+ "url": "https://api.github.com/repos/symfony/form/zipball/360f22cdb0278d69fbd571b293df04065b2a2279",
+ "reference": "360f22cdb0278d69fbd571b293df04065b2a2279",
"shasum": ""
},
"require": {
- "php": ">=5.5.9",
- "symfony/event-dispatcher": "~2.8|~3.0",
- "symfony/intl": "~2.8|~3.0",
- "symfony/options-resolver": "~2.8|~3.0",
- "symfony/property-access": "~2.8|~3.0"
+ "php": "^7.1.3",
+ "symfony/event-dispatcher": "~3.4|~4.0",
+ "symfony/intl": "~3.4|~4.0",
+ "symfony/options-resolver": "~3.4|~4.0",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/property-access": "~3.4|~4.0"
},
"conflict": {
- "symfony/doctrine-bridge": "<2.7",
- "symfony/framework-bundle": "<2.7",
- "symfony/twig-bridge": "<2.7"
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
+ "symfony/dependency-injection": "<3.4",
+ "symfony/doctrine-bridge": "<3.4",
+ "symfony/framework-bundle": "<3.4",
+ "symfony/http-kernel": "<3.4",
+ "symfony/twig-bridge": "<3.4.5|<4.0.5,>=4.0"
},
"require-dev": {
"doctrine/collections": "~1.0",
- "symfony/http-foundation": "~2.8|~3.0",
- "symfony/http-kernel": "~2.8|~3.0",
- "symfony/phpunit-bridge": "~2.8|~3.0",
- "symfony/security-csrf": "~2.8|~3.0",
- "symfony/translation": "~2.8|~3.0",
- "symfony/validator": "~2.8|~3.0"
+ "symfony/config": "~3.4|~4.0",
+ "symfony/console": "~3.4|~4.0",
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/http-foundation": "~3.4|~4.0",
+ "symfony/http-kernel": "~3.4|~4.0",
+ "symfony/security-csrf": "~3.4|~4.0",
+ "symfony/translation": "~3.4|~4.0",
+ "symfony/validator": "~3.4|~4.0",
+ "symfony/var-dumper": "~3.4|~4.0"
},
"suggest": {
"symfony/framework-bundle": "For templating with PHP.",
@@ -3927,13 +4130,16 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Form\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3951,28 +4157,86 @@
],
"description": "Symfony Form Component",
"homepage": "https://symfony.com",
- "time": "2016-02-28 16:28:07"
+ "time": "2018-10-02T12:40:59+00:00"
+ },
+ {
+ "name": "symfony/inflector",
+ "version": "v4.1.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/inflector.git",
+ "reference": "07810b5c88ec0c2e98972571a40a126b44664e13"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/inflector/zipball/07810b5c88ec0c2e98972571a40a126b44664e13",
+ "reference": "07810b5c88ec0c2e98972571a40a126b44664e13",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1.3",
+ "symfony/polyfill-ctype": "~1.8"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.1-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Inflector\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Inflector Component",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "inflection",
+ "pluralize",
+ "singularize",
+ "string",
+ "symfony",
+ "words"
+ ],
+ "time": "2018-07-26T08:55:25+00:00"
},
{
"name": "symfony/intl",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/intl.git",
- "reference": "64f7897639d2733b500b7b9d32b594c32dfc8c18"
+ "reference": "793437f519a51bca4ac9b23bdaa479bb78535f6c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/intl/zipball/64f7897639d2733b500b7b9d32b594c32dfc8c18",
- "reference": "64f7897639d2733b500b7b9d32b594c32dfc8c18",
+ "url": "https://api.github.com/repos/symfony/intl/zipball/793437f519a51bca4ac9b23bdaa479bb78535f6c",
+ "reference": "793437f519a51bca4ac9b23bdaa479bb78535f6c",
"shasum": ""
},
"require": {
- "php": ">=5.5.9",
+ "php": "^7.1.3",
"symfony/polyfill-intl-icu": "~1.0"
},
"require-dev": {
- "symfony/filesystem": "~2.8|~3.0"
+ "symfony/filesystem": "~3.4|~4.0"
},
"suggest": {
"ext-intl": "to use the component with locales other than \"en\""
@@ -3980,7 +4244,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
@@ -4026,38 +4290,38 @@
"l10n",
"localization"
],
- "time": "2016-08-10 07:06:11"
+ "time": "2018-10-02T12:40:59+00:00"
},
{
"name": "symfony/options-resolver",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/options-resolver.git",
- "reference": "0d15b40701e1778bdbc206c8545ad423402021c4"
+ "reference": "40f0e40d37c1c8a762334618dea597d64bbb75ff"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0d15b40701e1778bdbc206c8545ad423402021c4",
- "reference": "07da60af1b11d92585c1ef6b83205aa98f2c92a7",
+ "url": "https://api.github.com/repos/symfony/options-resolver/zipball/40f0e40d37c1c8a762334618dea597d64bbb75ff",
+ "reference": "40f0e40d37c1c8a762334618dea597d64bbb75ff",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
- },
- "require-dev": {
- "symfony/phpunit-bridge": "~2.8|~3.0"
+ "php": "^7.1.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\OptionsResolver\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4080,25 +4344,25 @@
"configuration",
"options"
],
- "time": "2016-01-21 10:01:50"
+ "time": "2018-09-18T12:45:12+00:00"
},
{
"name": "symfony/polyfill-intl-icu",
- "version": "dev-master",
+ "version": "v1.10.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-icu.git",
- "reference": "0f8dc2c45f69f8672379e9210bca4a115cd5146f"
+ "reference": "f22a90256d577c7ef7efad8df1f0201663d57644"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/0f8dc2c45f69f8672379e9210bca4a115cd5146f",
- "reference": "0f8dc2c45f69f8672379e9210bca4a115cd5146f",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/f22a90256d577c7ef7efad8df1f0201663d57644",
+ "reference": "f22a90256d577c7ef7efad8df1f0201663d57644",
"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"
@@ -4106,7 +4370,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2-dev"
+ "dev-master": "1.9-dev"
}
},
"autoload": {
@@ -4138,38 +4402,45 @@
"portable",
"shim"
],
- "time": "2016-05-18 14:26:46"
+ "time": "2018-08-06T14:22:27+00:00"
},
{
"name": "symfony/property-access",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/property-access.git",
- "reference": "03ac1b282faa90b1d612dffe2bdad51106d7586c"
+ "reference": "ae5620fb79729bc8b5dd83b75507cbcae24f83ee"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/property-access/zipball/03ac1b282faa90b1d612dffe2bdad51106d7586c",
- "reference": "c9a431d583d60e34c5ec05d411b8e450ddc45678",
+ "url": "https://api.github.com/repos/symfony/property-access/zipball/ae5620fb79729bc8b5dd83b75507cbcae24f83ee",
+ "reference": "ae5620fb79729bc8b5dd83b75507cbcae24f83ee",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
+ "php": "^7.1.3",
+ "symfony/inflector": "~3.4|~4.0"
},
"require-dev": {
- "symfony/phpunit-bridge": "~2.8|~3.0"
+ "symfony/cache": "~3.4|~4.0"
+ },
+ "suggest": {
+ "psr/cache-implementation": "To cache access methods."
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\PropertyAccess\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4198,59 +4469,58 @@
"property path",
"reflection"
],
- "time": "2016-02-26 06:20:42"
+ "time": "2018-10-02T12:40:59+00:00"
},
{
- "name": "symfony/security",
- "version": "2.3.x-dev",
- "target-dir": "Symfony/Component/Security",
+ "name": "symfony/translation",
+ "version": "v4.1.6",
"source": {
"type": "git",
- "url": "https://github.com/symfony/security.git",
- "reference": "9839231d5d543ec697d1f5643d14af9bca31dd00"
+ "url": "https://github.com/symfony/translation.git",
+ "reference": "9f0b61e339160a466ebcde167a6c5521c810e304"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/security/zipball/9839231d5d543ec697d1f5643d14af9bca31dd00",
- "reference": "1738333e52f972aabad7764e53722c9682354beb",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/9f0b61e339160a466ebcde167a6c5521c810e304",
+ "reference": "9f0b61e339160a466ebcde167a6c5521c810e304",
"shasum": ""
},
"require": {
- "php": ">=5.3.3",
- "symfony/event-dispatcher": "~2.2",
- "symfony/http-foundation": "~2.1",
- "symfony/http-kernel": "~2.1"
+ "php": "^7.1.3",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/config": "<3.4",
+ "symfony/dependency-injection": "<3.4",
+ "symfony/yaml": "<3.4"
},
"require-dev": {
- "doctrine/common": "~2.2",
- "doctrine/dbal": "~2.2",
- "ircmaxell/password-compat": "~1.0",
"psr/log": "~1.0",
- "symfony/form": "~2.0,>=2.0.5",
- "symfony/intl": "~2.3",
- "symfony/phpunit-bridge": "~2.7",
- "symfony/routing": "~2.2",
- "symfony/validator": "~2.2"
+ "symfony/config": "~3.4|~4.0",
+ "symfony/console": "~3.4|~4.0",
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/finder": "~2.8|~3.0|~4.0",
+ "symfony/intl": "~3.4|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
},
"suggest": {
- "doctrine/dbal": "to use the built-in ACL implementation",
- "ircmaxell/password-compat": "",
- "symfony/class-loader": "",
- "symfony/finder": "",
- "symfony/form": "",
- "symfony/routing": "",
- "symfony/validator": ""
+ "psr/log-implementation": "To use logging capability in translator",
+ "symfony/config": "",
+ "symfony/yaml": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.3-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
- "psr-0": {
- "Symfony\\Component\\Security\\": ""
- }
+ "psr-4": {
+ "Symfony\\Component\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4266,44 +4536,52 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Security Component",
+ "description": "Symfony Translation Component",
"homepage": "https://symfony.com",
- "time": "2016-02-23 18:12:35"
+ "time": "2018-10-02T16:36:10+00:00"
},
{
"name": "symfony/twig-bridge",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/twig-bridge.git",
- "reference": "26b5b0a2d34333dc6bd3b034a562fdc759c0dcb4"
+ "reference": "7af4d9e7c38c1eb8c0d4e2528c33e6d23728ff7e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/26b5b0a2d34333dc6bd3b034a562fdc759c0dcb4",
- "reference": "8362b61939b8f4614aa0e53d8dcd58ae5a299202",
+ "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/7af4d9e7c38c1eb8c0d4e2528c33e6d23728ff7e",
+ "reference": "7af4d9e7c38c1eb8c0d4e2528c33e6d23728ff7e",
"shasum": ""
},
"require": {
- "php": ">=5.5.9",
- "twig/twig": "~1.18"
+ "php": "^7.1.3",
+ "twig/twig": "^1.35|^2.4.4"
+ },
+ "conflict": {
+ "symfony/console": "<3.4",
+ "symfony/form": "<4.1.2"
},
"require-dev": {
- "symfony/asset": "~2.8|~3.0",
- "symfony/console": "~2.8|~3.0",
- "symfony/expression-language": "~2.8|~3.0",
- "symfony/finder": "~2.8|~3.0",
- "symfony/form": "~2.8|~3.0",
- "symfony/http-kernel": "~2.8|~3.0",
- "symfony/intl": "~2.8|~3.0",
- "symfony/phpunit-bridge": "~2.8|~3.0",
- "symfony/routing": "~2.8|~3.0",
- "symfony/security": "~2.8|~3.0",
- "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/yaml": "~2.8|~3.0"
+ "symfony/asset": "~3.4|~4.0",
+ "symfony/console": "~3.4|~4.0",
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/expression-language": "~3.4|~4.0",
+ "symfony/finder": "~3.4|~4.0",
+ "symfony/form": "^4.1.5",
+ "symfony/http-foundation": "~3.4|~4.0",
+ "symfony/http-kernel": "~3.4|~4.0",
+ "symfony/polyfill-intl-icu": "~1.0",
+ "symfony/routing": "~3.4|~4.0",
+ "symfony/security": "~3.4|~4.0",
+ "symfony/security-acl": "~2.8|~3.0",
+ "symfony/stopwatch": "~3.4|~4.0",
+ "symfony/templating": "~3.4|~4.0",
+ "symfony/translation": "~3.4|~4.0",
+ "symfony/var-dumper": "~3.4|~4.0",
+ "symfony/web-link": "~3.4|~4.0",
+ "symfony/workflow": "~3.4|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
},
"suggest": {
"symfony/asset": "For using the AssetExtension",
@@ -4317,18 +4595,22 @@
"symfony/templating": "For using the TwigEngine",
"symfony/translation": "For using the TranslationExtension",
"symfony/var-dumper": "For using the DumpExtension",
+ "symfony/web-link": "For using the WebLinkExtension",
"symfony/yaml": "For using the YamlExtension"
},
"type": "symfony-bridge",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Bridge\\Twig\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4346,44 +4628,54 @@
],
"description": "Symfony Twig Bridge",
"homepage": "https://symfony.com",
- "time": "2016-02-23 16:17:05"
+ "time": "2018-10-02T12:40:59+00:00"
},
{
"name": "symfony/twig-bundle",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/twig-bundle.git",
- "reference": "b6babfc710b0fe042eafe7572b13760dfc64052b"
+ "reference": "efc59fa344a2b7985afae56877a6cf59de9954e2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/b6babfc710b0fe042eafe7572b13760dfc64052b",
- "reference": "b6babfc710b0fe042eafe7572b13760dfc64052b",
+ "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/efc59fa344a2b7985afae56877a6cf59de9954e2",
+ "reference": "efc59fa344a2b7985afae56877a6cf59de9954e2",
"shasum": ""
},
"require": {
- "php": ">=5.5.9",
- "symfony/asset": "~2.8|~3.0",
- "symfony/http-foundation": "~2.8|~3.0",
- "symfony/http-kernel": "~2.8|~3.0",
- "symfony/twig-bridge": "~2.8|~3.0"
+ "php": "^7.1.3",
+ "symfony/config": "~3.4|~4.0",
+ "symfony/http-foundation": "~4.1",
+ "symfony/http-kernel": "~4.1",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/twig-bridge": "^3.4.3|^4.0.3",
+ "twig/twig": "~1.34|~2.4"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<4.1",
+ "symfony/framework-bundle": "<4.1"
},
"require-dev": {
- "symfony/config": "~2.8|~3.0",
- "symfony/dependency-injection": "~2.8|~3.0",
- "symfony/expression-language": "~2.8|~3.0",
- "symfony/finder": "~2.8|~3.0",
- "symfony/framework-bundle": "~2.8|~3.0",
- "symfony/routing": "~2.8|~3.0",
- "symfony/stopwatch": "~2.8|~3.0",
- "symfony/templating": "~2.8|~3.0",
- "symfony/yaml": "~2.8|~3.0"
+ "doctrine/annotations": "~1.0",
+ "doctrine/cache": "~1.0",
+ "symfony/asset": "~3.4|~4.0",
+ "symfony/dependency-injection": "~4.1",
+ "symfony/expression-language": "~3.4|~4.0",
+ "symfony/finder": "~3.4|~4.0",
+ "symfony/form": "~3.4|~4.0",
+ "symfony/framework-bundle": "~4.1",
+ "symfony/routing": "~3.4|~4.0",
+ "symfony/stopwatch": "~3.4|~4.0",
+ "symfony/templating": "~3.4|~4.0",
+ "symfony/web-link": "~3.4|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
},
"type": "symfony-bundle",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
@@ -4410,59 +4702,75 @@
],
"description": "Symfony TwigBundle",
"homepage": "https://symfony.com",
- "time": "2016-07-28 11:15:50"
+ "time": "2018-09-30T03:38:13+00:00"
},
{
"name": "symfony/validator",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/validator.git",
- "reference": "e7d6b389f69f5f52b127f269ae6c9c090a4ae4fa"
+ "reference": "eccf669ccfa447e5b9d850cd34db3a0539867773"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/validator/zipball/e7d6b389f69f5f52b127f269ae6c9c090a4ae4fa",
- "reference": "f728f96a56693cbf31e786d57aa2db6f2a395d86",
+ "url": "https://api.github.com/repos/symfony/validator/zipball/eccf669ccfa447e5b9d850cd34db3a0539867773",
+ "reference": "eccf669ccfa447e5b9d850cd34db3a0539867773",
"shasum": ""
},
"require": {
- "php": ">=5.5.9",
- "symfony/translation": "~2.8|~3.0"
+ "php": "^7.1.3",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/translation": "~3.4|~4.0"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
+ "symfony/dependency-injection": "<3.4",
+ "symfony/http-kernel": "<3.4",
+ "symfony/intl": "<4.1",
+ "symfony/yaml": "<3.4"
},
"require-dev": {
"doctrine/annotations": "~1.0",
"doctrine/cache": "~1.0",
- "egulias/email-validator": "~1.2,>=1.2.1",
- "symfony/config": "~2.8|~3.0",
- "symfony/expression-language": "~2.8|~3.0",
- "symfony/http-foundation": "~2.8|~3.0",
- "symfony/intl": "~2.8|~3.0",
- "symfony/phpunit-bridge": "~2.8|~3.0",
- "symfony/property-access": "~2.8|~3.0",
- "symfony/yaml": "~2.8|~3.0"
+ "egulias/email-validator": "^1.2.8|~2.0",
+ "symfony/cache": "~3.4|~4.0",
+ "symfony/config": "~3.4|~4.0",
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/expression-language": "~3.4|~4.0",
+ "symfony/http-foundation": "~4.1",
+ "symfony/http-kernel": "~3.4|~4.0",
+ "symfony/intl": "~4.1",
+ "symfony/property-access": "~3.4|~4.0",
+ "symfony/var-dumper": "~3.4|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
},
"suggest": {
"doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
"doctrine/cache": "For using the default cached annotation reader and metadata cache.",
"egulias/email-validator": "Strict (RFC compliant) email validation",
+ "psr/cache-implementation": "For using the metadata cache.",
"symfony/config": "",
- "symfony/expression-language": "For using the 2.4 Expression validator",
+ "symfony/expression-language": "For using the Expression validator",
"symfony/http-foundation": "",
"symfony/intl": "",
- "symfony/property-access": "For using the 2.4 Validator API",
+ "symfony/property-access": "For accessing properties within comparison constraints",
"symfony/yaml": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Validator\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4480,38 +4788,48 @@
],
"description": "Symfony Validator Component",
"homepage": "https://symfony.com",
- "time": "2016-02-26 04:26:33"
+ "time": "2018-10-02T16:36:10+00:00"
},
{
"name": "symfony/yaml",
- "version": "dev-master",
+ "version": "v4.1.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
- "reference": "939b8e10c4e0e1135144fb09e12a3d32ff129e4a"
+ "reference": "367e689b2fdc19965be435337b50bc8adf2746c9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/939b8e10c4e0e1135144fb09e12a3d32ff129e4a",
- "reference": "6a39d07f534ad980872a864d339ff979173467cf",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/367e689b2fdc19965be435337b50bc8adf2746c9",
+ "reference": "367e689b2fdc19965be435337b50bc8adf2746c9",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
+ "php": "^7.1.3",
+ "symfony/polyfill-ctype": "~1.8"
+ },
+ "conflict": {
+ "symfony/console": "<3.4"
},
"require-dev": {
- "symfony/phpunit-bridge": "~2.8|~3.0"
+ "symfony/console": "~3.4|~4.0"
+ },
+ "suggest": {
+ "symfony/console": "For validating YAML files using the lint command"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Yaml\\": ""
- }
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4529,38 +4847,84 @@
],
"description": "Symfony Yaml Component",
"homepage": "https://symfony.com",
- "time": "2016-02-28 10:09:55"
+ "time": "2018-10-02T16:36:10+00:00"
+ },
+ {
+ "name": "theseer/tokenizer",
+ "version": "1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/theseer/tokenizer.git",
+ "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
+ "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-tokenizer": "*",
+ "ext-xmlwriter": "*",
+ "php": "^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
+ "time": "2017-04-07T12:08:54+00:00"
},
{
"name": "twig/twig",
- "version": "1.x-dev",
+ "version": "v2.5.0",
"source": {
"type": "git",
"url": "https://github.com/twigphp/Twig.git",
- "reference": "ffa2b812b07cceb163b30091aa54048b856d087b"
+ "reference": "6a5f676b77a90823c2d4eaf76137b771adf31323"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/twigphp/Twig/zipball/ffa2b812b07cceb163b30091aa54048b856d087b",
- "reference": "ffa2b812b07cceb163b30091aa54048b856d087b",
+ "url": "https://api.github.com/repos/twigphp/Twig/zipball/6a5f676b77a90823c2d4eaf76137b771adf31323",
+ "reference": "6a5f676b77a90823c2d4eaf76137b771adf31323",
"shasum": ""
},
"require": {
- "php": ">=5.2.7"
+ "php": "^7.0",
+ "symfony/polyfill-ctype": "^1.8",
+ "symfony/polyfill-mbstring": "~1.0"
},
"require-dev": {
- "symfony/debug": "~2.7",
- "symfony/phpunit-bridge": "~2.7"
+ "psr/container": "^1.0",
+ "symfony/debug": "^2.7",
+ "symfony/phpunit-bridge": "^3.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.24-dev"
+ "dev-master": "2.5-dev"
}
},
"autoload": {
"psr-0": {
"Twig_": "lib/"
+ },
+ "psr-4": {
+ "Twig\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4581,27 +4945,75 @@
},
{
"name": "Twig Team",
- "homepage": "http://twig.sensiolabs.org/contributors",
+ "homepage": "https://twig.symfony.com/contributors",
"role": "Contributors"
}
],
"description": "Twig, the flexible, fast, and secure template language for PHP",
- "homepage": "http://twig.sensiolabs.org",
+ "homepage": "https://twig.symfony.com",
"keywords": [
"templating"
],
- "time": "2016-08-18 00:09:08"
+ "time": "2018-07-13T07:18:09+00:00"
+ },
+ {
+ "name": "webmozart/assert",
+ "version": "1.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/webmozart/assert.git",
+ "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
+ "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.3 || ^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.6",
+ "sebastian/version": "^1.0.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.3-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Webmozart\\Assert\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Assertions to validate method input/output with nice error messages.",
+ "keywords": [
+ "assert",
+ "check",
+ "validate"
+ ],
+ "time": "2018-01-29T19:49:41+00:00"
}
],
"aliases": [],
- "minimum-stability": "dev",
- "stability-flags": {
- "pagerfanta/pagerfanta": 20
- },
+ "minimum-stability": "stable",
+ "stability-flags": [],
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
- "php": "^5.5.0 || ^7.0"
+ "php": "^7.1"
},
"platform-dev": []
}