Skip to content

Commit

Permalink
Merge pull request #2326 from deZinc/feature/multidomainbundle-upgrad…
Browse files Browse the repository at this point in the history
…e-dev

[MultiDomainBundle] upgraded dev dependencies
  • Loading branch information
sandergo90 committed Feb 1, 2019
2 parents 8e54dbe + 6b11513 commit 8db9036
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

use Kunstmaan\MultiDomainBundle\DependencyInjection\Configuration;
use Matthias\SymfonyConfigTest\PhpUnit\ConfigurationTestCaseTrait;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;

/**
* Class ConfigurationTest
*/
class ConfigurationTest extends PHPUnit_Framework_TestCase
class ConfigurationTest extends TestCase
{
use ConfigurationTestCaseTrait;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
namespace Kunstmaan\MultiDomainBundle\Tests\DependencyInjection;

use Kunstmaan\MultiDomainBundle\DependencyInjection\KunstmaanMultiDomainExtension;
use Matthias\SymfonyDependencyInjectionTest\PhpUnit\AbstractExtensionTestCase;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
use Kunstmaan\AdminBundle\Tests\unit\AbstractPrependableExtensionTestCase;

/**
* Class KunstmaanMultiDomainExtensionTest
*/
class KunstmaanMultiDomainExtensionTest extends AbstractPrependableExtensionTestCase
class KunstmaanMultiDomainExtensionTest extends AbstractExtensionTestCase
{
/**
* @return ExtensionInterface[]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
namespace Kunstmaan\MultiDomainBundle\Tests\EventListener;

use Kunstmaan\MultiDomainBundle\EventListener\HostOverrideListener;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\HttpKernelInterface;

class HostOverrideListenerTest extends PHPUnit_Framework_TestCase
class HostOverrideListenerTest extends TestCase
{
/**
* @var HostOverrideListener
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
namespace Kunstmaan\MultiDomainBundle\Tests\Helper\AdminPanel;

use Kunstmaan\MultiDomainBundle\Helper\AdminPanel\SitesAdminPanelAdaptor;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;

class SitesAdminPanelAdaptorTest extends PHPUnit_Framework_TestCase
class SitesAdminPanelAdaptorTest extends TestCase
{
/**
* @var SitesAdminPanelAdaptor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

use Kunstmaan\MultiDomainBundle\Helper\DomainConfiguration;
use Kunstmaan\NodeBundle\Entity\Node;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use ReflectionClass;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;

class DomainConfigurationTest extends PHPUnit_Framework_TestCase
class DomainConfigurationTest extends TestCase
{
/**
* @var Node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

use Kunstmaan\MultiDomainBundle\Helper\DomainConfiguration;
use Kunstmaan\MultiDomainBundle\Helper\HostOverrideCleanupHandler;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;

class HostOverrideCleanupHandlerTest extends PHPUnit_Framework_TestCase
class HostOverrideCleanupHandlerTest extends TestCase
{
/**
* @var HostOverrideCleanupHandler
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

use Kunstmaan\MultiDomainBundle\Router\DomainBasedLocaleRouter;
use Kunstmaan\NodeBundle\Entity\NodeTranslation;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use ReflectionClass;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;

class DomainBasedLocaleRouterTest extends PHPUnit_Framework_TestCase
class DomainBasedLocaleRouterTest extends TestCase
{
public function testGenerate()
{
Expand Down
13 changes: 6 additions & 7 deletions src/Kunstmaan/MultiDomainBundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@
"minimum-stability": "dev",
"require": {
"php": "^7.1",
"kunstmaan/adminlist-bundle": "~5.2",
"kunstmaan/node-bundle": "~5.2"
"kunstmaan/adminlist-bundle": "~5.2"
},
"require-dev": {
"codeception/codeception": "^2.4",
"matthiasnoback/symfony-config-test": "2.2.0",
"matthiasnoback/symfony-dependency-injection-test": "1.2.0",
"phpunit/phpunit": "^5.7",
"symfony/phpunit-bridge": "~3.0"
"codeception/codeception": "^2.5",
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.1",
"symfony/phpunit-bridge": "^4.2",
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": { "Kunstmaan\\MultiDomainBundle\\": "" }
Expand Down

0 comments on commit 8db9036

Please sign in to comment.