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

Commit f2c095c

Browse files
committed
Update dependency versions
1 parent 838d440 commit f2c095c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
package.xml
33
/vendor
44
.idea
5+
*.cache

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=7.0",
14+
"php": ">=7.1",
1515
"illuminate/database": "^5.4 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
1616
"illuminate/support": "^5.4 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
1717
"illuminate/validation": "^5.4 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
1818
"saritasa/php-common": "^1.0",
1919
"propaganistas/laravel-phone": "^3.0 || ^4.0 || ^5.0"
2020
},
2121
"require-dev": {
22-
"mockery/mockery": "^0.9",
23-
"phpunit/phpunit": "^6.0",
22+
"mockery/mockery": "^1.0",
23+
"phpunit/phpunit": "^6.0 || ^7.0 || ^8.0",
2424
"squizlabs/php_codesniffer": "^3.0"
2525
},
2626
"autoload": {

phpunit.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
convertWarningsToExceptions="true"
88
processIsolation="false"
99
stopOnFailure="false"
10-
syntaxCheck="false"
1110
bootstrap="vendor/autoload.php"
1211
>
1312
<testsuites>

tests/CustomRulesTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class CustomRulesTest extends TestCase
1212
/**
1313
* Reset mocked configuration after each test
1414
*/
15-
protected function tearDown()
15+
protected function tearDown(): void
1616
{
1717
Config::clearResolvedInstances();
1818
}

tests/DatabaseRulesTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class DatabaseRulesTest extends TestCase
1717
/**
1818
* Reset mocked configuration after each test
1919
*/
20-
protected function tearDown()
20+
protected function tearDown(): void
2121
{
2222
Config::clearResolvedInstances();
2323
}
@@ -144,4 +144,4 @@ class TestUserModel extends Model
144144
{
145145
protected $table = 'users';
146146
protected $primaryKey = 'user_id';
147-
}
147+
}

0 commit comments

Comments
 (0)