Skip to content
This repository was archived by the owner on Sep 13, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '7.1', '7.2', '7.3', '7.4' ]
php-versions: [ '7.2', '7.3', '7.4' ]
name: PHP ${{ matrix.php-versions }} - PHPUnit
steps:
- name: Checkout
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
}
],
"require": {
"php": ">=7.0",
"illuminate/database": "^5.4 || ^6.0",
"illuminate/support": "^5.4 || ^6.0",
"illuminate/validation": "^5.4 || ^6.0",
"php": ">=7.2.5",
"illuminate/database": "^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0",
"illuminate/validation": "^6.0 || ^7.0 || ^8.0",
"saritasa/php-common": "^1.0",
"propaganistas/laravel-phone": "^3.0 || ^4.0 || ^5.0"
"propaganistas/laravel-phone": "^4.0 || ^5.0"
},
"require-dev": {
"mockery/mockery": "^0.9",
"phpunit/phpunit": "^6.0",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
Expand Down
1 change: 0 additions & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
>
<testsuites>
Expand Down
2 changes: 1 addition & 1 deletion tests/CustomRulesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class CustomRulesTest extends TestCase
/**
* Reset mocked configuration after each test
*/
protected function tearDown()
protected function tearDown(): void
{
Config::clearResolvedInstances();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/DatabaseRulesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class DatabaseRulesTest extends TestCase
/**
* Reset mocked configuration after each test
*/
protected function tearDown()
protected function tearDown(): void
{
Config::clearResolvedInstances();
}
Expand Down