Skip to content

Commit ce2587d

Browse files
committed
Merge branch 'release/2.3.0'
2 parents 55f50aa + 0891286 commit ce2587d

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
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.2.0
1+
2.3.0

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
],
2222
"require": {
2323
"php": ">=7.2",
24-
"illuminate/contracts": "~5.5|~6",
25-
"illuminate/support": "~5.5|~6",
24+
"illuminate/contracts": "~5.5|~6|~7",
25+
"illuminate/support": "~5.5|~6|~7",
2626
"phayes/geophp": "~1.2"
2727
},
2828
"require-dev": {
29-
"mockery/mockery": "^1",
30-
"phpunit/phpunit": "~7.0.1|~8.0",
31-
"psy/psysh": "^0.9.0",
29+
"mockery/mockery": "^1.3.1",
30+
"phpunit/phpunit": "^8.4|^9.0",
31+
"psy/psysh": "^0.10",
3232
"symfony/thanks": "^1.1",
33-
"symfony/var-dumper": "~3.0|^4.2"
33+
"symfony/var-dumper": "^5.0"
3434
},
3535
"autoload": {
3636
"psr-4": {

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

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

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ abstract class TestCase extends PHPUnitTestCase
2828
*
2929
* @return void
3030
*/
31-
protected function mockArrayIterator(MockInterface $mock, array $items)
31+
protected function mockArrayIterator(MockInterface $mock, array $items): void
3232
{
3333
if ($mock instanceof ArrayAccess) {
3434
foreach ($items as $key => $val) {

0 commit comments

Comments
 (0)