Skip to content

Commit

Permalink
Merge pull request #107 from andreaselia/andreaselia-patch-1
Browse files Browse the repository at this point in the history
remove laravel 6 support as the package doesn't function for laravel 6 anymore
  • Loading branch information
tomirons authored Jul 23, 2024
2 parents 977c451 + 16c30c8 commit 5997639
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
1 change: 0 additions & 1 deletion .styleci.yml

This file was deleted.

10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/config": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/console": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/routing": "^7.0|^8.0|^9.0|^10.0|^11.0",
"phpstan/phpdoc-parser": "^1.26"
},
"extra": {
Expand Down
1 change: 1 addition & 0 deletions src/Authentication/AuthenticationMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ abstract class AuthenticationMethod implements Arrayable
{
public function __construct(protected ?string $token = null)
{
//
}

public function toArray(): array
Expand Down
5 changes: 5 additions & 0 deletions tests/Fixtures/AuditLogController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,26 @@ class AuditLogController extends Controller
{
public function index()
{
//
}

public function store(Request $request)
{
//
}

public function show($id)
{
//
}

public function update(Request $request, ExampleModel $auditLog)
{
//
}

public function destroy($id)
{
//
}
}
1 change: 1 addition & 0 deletions tests/Fixtures/ExampleModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@

class ExampleModel extends Model
{
//
}

0 comments on commit 5997639

Please sign in to comment.