Skip to content

Commit

Permalink
PHPUnit version update
Browse files Browse the repository at this point in the history
  • Loading branch information
remorhaz committed Apr 12, 2017
1 parent 19d6fcd commit 55e6e8f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: php

php:
- '7.0'
- '7.1'

before_script:
- composer self-update
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
],
"require": {
"php": ">=7.0",
"remorhaz/php-json-data": "0.2.1",
"remorhaz/php-json-pointer": "0.3.1"
"remorhaz/php-json-data": "~0.3.0",
"remorhaz/php-json-pointer": "~0.4.0"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"phpunit/phpunit": "~6.1",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
Expand Down
3 changes: 2 additions & 1 deletion tests/PatchTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

namespace Remorhaz\JSON\Test\Patch;

use PHPUnit\Framework\TestCase;
use Remorhaz\JSON\Data\Reference\Selector;
use Remorhaz\JSON\Data\Reference\Writer;
use Remorhaz\JSON\Patch\Patch;

class PatchTest extends \PHPUnit_Framework_TestCase
class PatchTest extends TestCase
{


Expand Down

0 comments on commit 55e6e8f

Please sign in to comment.