Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit b0487ce

Browse files
authored
Merge pull request #30 from spinen/develop
Add PHP 7.4 to travis
2 parents 50472ae + b0b0361 commit b0487ce

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ matrix:
1313
- php: 7.3
1414
- php: 7.3
1515
env: SETUP=lowest
16+
- php: 7.4
17+
- php: 7.4
18+
env: SETUP=lowest
1619

1720
sudo: false
1821

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.0
1+
2.4.0

composer.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,24 @@
1212
{
1313
"name": "Jimmy Puckett",
1414
"email": "[email protected]"
15+
},
16+
{
17+
"name": "Stephen Finney",
18+
"email": "[email protected]"
1519
}
1620
],
1721
"require": {
1822
"php": ">=7.2",
19-
"illuminate/console": "~5.5|~6",
20-
"illuminate/database": "~5.5|~6",
21-
"illuminate/support": "~5.5|~6",
23+
"illuminate/console": "~5.5|~6|~7",
24+
"illuminate/database": "~5.5|~6|~7",
25+
"illuminate/support": "~5.5|~6|~7",
2226
"nesbot/carbon": "~1.20|^2.0",
2327
"psr/log": "^1.0"
2428
},
2529
"require-dev": {
26-
"mockery/mockery": "^1",
27-
"phpunit/phpunit": "~7.0.1|~8.0",
28-
"psy/psysh": "^0.9.9",
30+
"mockery/mockery": "^1.3.1",
31+
"phpunit/phpunit": "^8.4|^9.0",
32+
"psy/psysh": "^0.10",
2933
"symfony/thanks": "^1.1",
3034
"symfony/var-dumper": "~3.0|^4.2"
3135
},

phpunit.xml.dist

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
convertErrorsToExceptions="true"
1515
convertNoticesToExceptions="true"
1616
convertWarningsToExceptions="true"
17-
processIsolation="true"
17+
processIsolation="false"
1818
stopOnFailure="false"
1919
verbose="true">
2020

@@ -47,7 +47,6 @@
4747
showOnlySummary="true"
4848
showUncoveredFiles="false"/>
4949
<log type="coverage-clover" target="build/phpunit/logs/clover.xml"/>
50-
<log type="json" target="./build/phpunit/logs/logfile.json"/>
5150
<log type="junit" target="./build/phpunit/logs/junit.xml"/>
5251
</logging>
5352
</phpunit>

0 commit comments

Comments
 (0)