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

[VotingBundle] upgraded dev dependencies #2318

Merged
merged 1 commit into from
Feb 1, 2019
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
namespace Kunstmaan\VotingBundle\Tests\DependencyInjection;

use Kunstmaan\VotingBundle\DependencyInjection\KunstmaanVotingExtension;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\ContainerBuilder;

class KunstmaanVotingExtensionTest extends \PHPUnit_Framework_TestCase
class KunstmaanVotingExtensionTest extends TestCase
{
/**
* @var KunstmaanVotingExtension
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

use DateTime;
use Kunstmaan\VotingBundle\Entity\Facebook\FacebookLike;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;

/**
* Class AbstractVoteTest
*/
class AbstractVoteTest extends PHPUnit_Framework_TestCase
class AbstractVoteTest extends TestCase
{
public function testGetters()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
namespace Kunstmaan\NodeBundle\Tests\Event;

use Kunstmaan\VotingBundle\Event\Facebook\FacebookLikeEvent;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

/**
* Class FacebookLikeEventTest
*/
class FacebookLikeEventTest extends PHPUnit_Framework_TestCase
class FacebookLikeEventTest extends TestCase
{
public function testGetSet()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
namespace Kunstmaan\NodeBundle\Tests\Event;

use Kunstmaan\VotingBundle\Event\Facebook\FacebookSendEvent;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

/**
* Class FacebookSendEventTest
*/
class FacebookSendEventTest extends PHPUnit_Framework_TestCase
class FacebookSendEventTest extends TestCase
{
public function testGetSet()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
namespace Kunstmaan\NodeBundle\Tests\Event;

use Kunstmaan\VotingBundle\Event\LinkedIn\LinkedInShareEvent;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

/**
* Class LinkedInShareEventTest
*/
class LinkedInShareEventTest extends PHPUnit_Framework_TestCase
class LinkedInShareEventTest extends TestCase
{
public function testGetSet()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
namespace Kunstmaan\NodeBundle\Tests\Event;

use Kunstmaan\VotingBundle\Event\UpDown\DownVoteEvent;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

/**
* Class DownVoteEventTest
*/
class DownVoteEventTest extends PHPUnit_Framework_TestCase
class DownVoteEventTest extends TestCase
{
public function testGetSet()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
namespace Kunstmaan\NodeBundle\Tests\Event;

use Kunstmaan\VotingBundle\Event\UpDown\UpVoteEvent;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

/**
* Class UpVoteEventTest
*/
class UpVoteEventTest extends PHPUnit_Framework_TestCase
class UpVoteEventTest extends TestCase
{
public function testGetSet()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@

use Kunstmaan\VotingBundle\Event\Facebook\FacebookLikeEvent;
use Kunstmaan\VotingBundle\EventListener\Security\MaxNumberByIpEventListener;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

/**
* Test Max Number by Ip event listener
*/
class MaxNumberByIpEventListenerTest extends \PHPUnit_Framework_TestCase
class MaxNumberByIpEventListenerTest extends TestCase
{
/**
* @param $returnNull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
namespace Kunstmaan\VotingBundle\Tests\Services;

use Kunstmaan\VotingBundle\Services\RepositoryResolver;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;

/**
* Unit test for repository resolver
*/
class RepositoryResolverTest extends PHPUnit_Framework_TestCase
class RepositoryResolverTest extends TestCase
{
/**
* @dataProvider dataRepositoryEvent
Expand Down
10 changes: 5 additions & 5 deletions src/Kunstmaan/VotingBundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
"symfony/routing": "^3.4|^4.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~3.0",
"phpunit/phpunit": "^5.7",
"codeception/codeception": "^2.4",
"matthiasnoback/symfony-config-test": "2.2.0",
"matthiasnoback/symfony-dependency-injection-test": "1.2.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\\VotingBundle\\": "" }
Expand Down