Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MultiDomainBundle] upgraded dev dependencies #2326

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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