Skip to content

Commit

Permalink
fix: phpcs and phpunit for php 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
clphillips committed Jun 5, 2017
1 parent a64a7fb commit 68d1fce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"php": ">=5.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^6.2"
"squizlabs/php_codesniffer": "^2.0",
"phpunit/phpunit": "^4.0"
}
}
1 change: 0 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
bootstrap="./vendor/autoload.php"
backupGlobals="false"
beStrictAboutTestsThatDoNotTestAnything="true"
checkForUnintentionallyCoveredCode="true"
forceCoversAnnotation="true"
>
<testsuites>
Expand Down
4 changes: 2 additions & 2 deletions tests/Integration/AesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
namespace PhpAes\Aes\Tests\Integration;

use PhpAes\Aes;
use PHPUnit\Framework\TestCase;
use PHPUnit_Framework_TestCase;

/**
* @coversDefaultClass \PhpAes\Aes
*/
class AesTest extends TestCase
class AesTest extends PHPUnit_Framework_TestCase
{
/**
* Test the cipher
Expand Down

0 comments on commit 68d1fce

Please sign in to comment.