Skip to content

remove laravel 6 support as the package doesn't function for laravel 6 anymore #107

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 23, 2024
Merged
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
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
{
//
}
Loading