Skip to content
Merged
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
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,20 @@ cache:

env:
global:
- PHPUNIT_FLAGS='--verbose'
- PHPUNIT_FLAGS='--testdox --verbose'

sudo: false

notifications:
email: false

php:
- 7.2
- 7.3
- 7.4

matrix:
fast_finish: true

before_install:

install:
- composer update

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Integration testing library in PHP for databases and other common infrastructure related tests.

[![Build Status](https://travis-ci.com/hrodic/php-integration-testing.svg?branch=master)](https://travis-ci.com/hrodic/php-integration-testing)

It is developed as a set of extensions for PHPUnit that hooks on different events and executes your fixtures.

Currently you can run custom fixtures on the following PHPUnit hooks:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.2",
"php": "^7.3",
"ext-pdo": "*",
"ext-json": "*"
},
Expand Down