Skip to content

Commit

Permalink
Merge branch 'release/2.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmypuckett committed Apr 3, 2020
2 parents 55f50aa + 0891286 commit ce2587d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ matrix:
- php: 7.3
- php: 7.3
env: SETUP=lowest
- php: 7.4
- php: 7.4
env: SETUP=lowest

sudo: false

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.0
2.3.0
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
],
"require": {
"php": ">=7.2",
"illuminate/contracts": "~5.5|~6",
"illuminate/support": "~5.5|~6",
"illuminate/contracts": "~5.5|~6|~7",
"illuminate/support": "~5.5|~6|~7",
"phayes/geophp": "~1.2"
},
"require-dev": {
"mockery/mockery": "^1",
"phpunit/phpunit": "~7.0.1|~8.0",
"psy/psysh": "^0.9.0",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^8.4|^9.0",
"psy/psysh": "^0.10",
"symfony/thanks": "^1.1",
"symfony/var-dumper": "~3.0|^4.2"
"symfony/var-dumper": "^5.0"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 1 addition & 2 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="true"
processIsolation="false"
stopOnFailure="false"
verbose="true">

Expand Down Expand Up @@ -48,7 +48,6 @@
showOnlySummary="true"
showUncoveredFiles="false"/>
<log type="coverage-clover" target="build/phpunit/logs/clover.xml"/>
<log type="json" target="./build/phpunit/logs/logfile.json"/>
<log type="junit" target="./build/phpunit/logs/junit.xml"/>
</logging>
</phpunit>
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ abstract class TestCase extends PHPUnitTestCase
*
* @return void
*/
protected function mockArrayIterator(MockInterface $mock, array $items)
protected function mockArrayIterator(MockInterface $mock, array $items): void
{
if ($mock instanceof ArrayAccess) {
foreach ($items as $key => $val) {
Expand Down

0 comments on commit ce2587d

Please sign in to comment.