Skip to content

Commit

Permalink
Add php 8 and laravel 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
MannikJ committed Aug 6, 2021
1 parent d8a5abb commit eed874c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
}
],
"require": {
"php": "^7.2.5",
"illuminate/support": "^7.0"
"php": "^7.3|^8.0",
"illuminate/support": "^7.0|^8.0",
"laravel/legacy-factories": "^1.1"
},
"require-dev": {
"doctrine/dbal": "^2.9",
"mockery/mockery": "^1.1",
"orchestra/testbench": "^5.0",
"phpunit/phpunit": "^9.0"
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -62,4 +62,4 @@
"scripts": {
"test": "vendor/bin/phpunit tests --colors=always --verbose --testdox"
}
}
}
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ protected function getPackageProviders($app)
];
}

protected function getPackageAliases()
protected function getPackageAliases($app)
{
return [
'Wallet' => WalletFacade::class
Expand Down

0 comments on commit eed874c

Please sign in to comment.