Skip to content

Commit

Permalink
Merge pull request #5 from elephfront/php71
Browse files Browse the repository at this point in the history
Supports only PHP >= 7.1.0
  • Loading branch information
HavokInspiration authored Jun 26, 2017
2 parents 416bd98 + 661cc5b commit 7877799
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ language: php

php:
- 7.1
- 7.0
- 5.6

sudo: false

Expand All @@ -18,10 +16,10 @@ matrix:
fast_finish: true

include:
- php: 7.0
- php: 7.1
env: CODECOVERAGE=1 DEFAULT=0

- php: 7.0
- php: 7.1
env: PHPSTAN=1 DEFAULT=0

before_script:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This [Robo](https://github.com/consolidation/robo) task brings an import method

## Requirements

- PHP >= 5.6.0
- PHP >= 7.1.0
- Robo

## Installation
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"php": ">=5.6.0",
"php": ">=7.1.0",
"consolidation/robo": "*"
},
"require-dev": {
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase/Robo/Task/Assets/ImportJavascriptTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace Elephfront\RoboImportJs\Tests;

use Elephfront\RoboImportJs\Task\Assets\ImportJavascript;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
use Robo\Result;
use Robo\Robo;
Expand All @@ -14,7 +14,7 @@
*
* @package Mystiq\AlphaTheme\Tests
*/
class ImportJavascriptTest extends PHPUnit_Framework_TestCase
class ImportJavascriptTest extends TestCase
{

/**
Expand Down

0 comments on commit 7877799

Please sign in to comment.