Skip to content

Commit 5f4c1d8

Browse files
committed
Reverting back to not officially supporting PHP 5.4
1 parent 6416025 commit 5f4c1d8

3 files changed

Lines changed: 5 additions & 9 deletions

File tree

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 5.4
54
- 5.5
65
- 5.6
76
- 7.0
@@ -19,8 +18,7 @@ install:
1918
- composer install
2019

2120
script:
22-
- vendor/bin/phpunit --configuration build/phpunit.xml
23-
- cat build/testdox.txt build/coverage.txt
21+
- vendor/bin/phpunit --configuration build/phpunit.xml && cat build/testdox.txt build/coverage.txt
2422

2523
after_script:
2624
# @TODO: ocular or coveralls?

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php" : ">=5.4.0",
23+
"php" : ">=5.5",
2424
"knplabs/github-api": "^1.4",
2525
"league/flysystem": "^1.0"
2626
},

phpunit.xml.dist

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
printerClass="NyanCat\PHPUnit\ResultPrinter"
2020
>
2121
<testsuites>
22-
<testsuite name="Potherca Test Suite">
22+
<testsuite name="Flysystem Github Adapter Test Suite">
2323
<directory>tests</directory>
2424
</testsuite>
2525
</testsuites>
@@ -29,11 +29,9 @@
2929
</whitelist>
3030
</filter>
3131
<logging>
32-
<log type="testdox-text" target="build/testdox.txt"/>
33-
<log type="tap" target="build/report.tap"/>
34-
<log type="junit" target="build/report.junit.xml"/>
32+
<log type="testdox-text" target="php://stdout"/>
3533
<log type="coverage-clover" showUncoveredFiles="true" target="build/logs/clover.xml"/>
36-
<log type="coverage-text" showUncoveredFiles="true" target="build/coverage.txt"/>
34+
<log type="coverage-text" showUncoveredFiles="true" target="php://stdout"/>
3735
<log type="coverage-html" showUncoveredFiles="true" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
3836
</logging>
3937
</phpunit>

0 commit comments

Comments
 (0)