Skip to content

Commit

Permalink
Merge 76efb91 into 4aabbc4
Browse files Browse the repository at this point in the history
  • Loading branch information
peter279k committed Dec 31, 2019
2 parents 4aabbc4 + 76efb91 commit b7f5e59
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
15 changes: 7 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,19 @@ language: php

sudo: false

php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4

notifications:
email: deploy@peter-gribanov.ru

matrix:
fast_finish: true
include:
- php: 5.4
- php: 7.3
- php: 7.2
- php: 7.1
- php: 7.0
- php: 5.6
- php: 5.5
dist: trusty
env: COVERAGE=1

before_install:
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
}
},
"require": {
"php": ">=5.0",
"php": ">=5.5",
"ext-shmop": "*"
},
"require-dev" : {
"phpunit/phpunit": "4.8.*",
"phpunit/phpunit": "^4.8.36",
"scrutinizer/ocular": "~1.3",
"satooshi/php-coveralls": "^1.0"
"php-coveralls/php-coveralls": "^1.0"
}
}
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<directory suffix=".php">./lib</directory>
</whitelist>
</filter>
</phpunit>
3 changes: 2 additions & 1 deletion tests/BlockTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
namespace GpsLab\Component\Shmop\Tests;

use GpsLab\Component\Shmop\Block;
use PHPUnit\Framework\TestCase;

class BlockTest extends \PHPUnit_Framework_TestCase
class BlockTest extends TestCase
{
/**
* @var int
Expand Down

0 comments on commit b7f5e59

Please sign in to comment.