Skip to content

Commit

Permalink
Update to PHPUnit 6
Browse files Browse the repository at this point in the history
  • Loading branch information
kangaroo-val committed Aug 20, 2019
1 parent c87ef52 commit 36f4704
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"squizlabs/php_codesniffer": "~2.0"
"phpunit/phpunit": "~6.0",
"mockery/mockery": "~1.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/src/Provider/LightspeedResourceOwnerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use League\OAuth2\Client\Provider\LightspeedResourceOwner;

class LightspeedResourceOwnerTest extends \PHPUnit_Framework_TestCase
class LightspeedResourceOwnerTest extends \PHPUnit\Framework\TestCase
{
/**
* @var LightspeedResourceOwner
Expand Down
2 changes: 1 addition & 1 deletion tests/src/Provider/LightspeedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ protected function fetchResourceOwnerDetails(AccessToken $token)
}
}

class LightspeedTest extends \PHPUnit_Framework_TestCase
class LightspeedTest extends \PHPUnit\Framework\TestCase
{

/**
Expand Down

0 comments on commit 36f4704

Please sign in to comment.