Skip to content

Commit

Permalink
Add support for laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
duxthefux committed Oct 21, 2024
1 parent d95572b commit 7bc0b1d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
]
},
"require": {
"php": ">=7.4.0",
"php": ">=7.4.0|^8.2|^8.3",
"ext-intl": "*",
"illuminate/support": "^8",
"illuminate/translation": "^8",
"illuminate/validation": "^8"
"illuminate/support": "^8|^9|^10|^11",
"illuminate/translation": "^8|^9|^10|^11",
"illuminate/validation": "^8|^9|^10|^11"
},
"require-dev": {
"orchestra/testbench": "6.2.0",
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^2.16"
"orchestra/testbench": "9.5.2",
"phpunit/phpunit": "^10",
"friendsofphp/php-cs-fixer": "^3.64"
},
"scripts": {
"lint-fix": "php vendor/bin/php-cs-fixer fix --config=.php_cs",
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class TestCase extends Orchestra\Testbench\TestCase
{
protected ?string $fixturesPath;

public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/TranslationDatabaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
class TranslationDatabaseTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
parent::setUp();

Expand Down

0 comments on commit 7bc0b1d

Please sign in to comment.