Skip to content

Commit

Permalink
Merge pull request #9 from dungnh/support_laravel_11_php8.3
Browse files Browse the repository at this point in the history
upgrade to support Laravel 11 and PHP 8.3
  • Loading branch information
dungnh authored May 10, 2024
2 parents 7785261 + b6dbcd7 commit 7b6873d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
"homepage": "https://coliving.com"
}],
"require": {
"php": "^8.0|^8.1|^8.2",
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"php": "^8.0|^8.1|^8.2|^8.3",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
"kalnoy/nestedset": "^6.0"
},
"require-dev": {
"graham-campbell/testbench": "^5.7",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "7.*|8.*|9.*|10.*"
"phpunit/phpunit": "7.*|8.*|9.*|10.*|11.*"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/AbstractTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ abstract class AbstractTestCase extends AbstractPackageTestCase
*
* @return string
*/
protected function getServiceProviderClass($app): string
protected function getServiceProviderClass($app)
{
return \Artisanry\Commentable\CommentableServiceProvider::class;
}
Expand Down

0 comments on commit 7b6873d

Please sign in to comment.