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

test on recent php versions #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
language: php

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3

before_script: composer install -n

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"monolog/monolog": "1.*"
},
"require-dev": {
"phpunit/phpunit": "~4.5"
"phpunit/phpunit": "^6.5"
},
"license": "MIT",
"authors": [
Expand Down
4 changes: 2 additions & 2 deletions tests/Dubture/Monolog/Reader/Test/LogReaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@

namespace Dubture\Monolog\Reader\Test;

use Dubture\Monolog\Reader\ReverseLogReader;
use Dubture\Monolog\Reader\LogReader;
use PHPUnit;

/**
* Class LogReaderTest
* @package Dubture\Monolog\Reader\Test
*/
class LogReaderTest extends \PHPUnit_Framework_TestCase
class LogReaderTest extends PHPUnit\Framework\TestCase
{
public function testReader()
{
Expand Down
3 changes: 2 additions & 1 deletion tests/Dubture/Monolog/Reader/Test/ParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@
namespace Dubture\Monolog\Reader\Test;

use Dubture\Monolog\Parser\LineLogParser;
use PHPUnit;

/**
* Class ParserTest
* @package Dubture\Monolog\Reader\Test
*/
class ParserTest extends \PHPUnit_Framework_TestCase
class ParserTest extends PHPUnit\Framework\TestCase
{
public function testLineFormatter()
{
Expand Down