Skip to content
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

documentation/release-matrix #2

Merged
merged 1 commit into from
Apr 16, 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
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,16 @@ Use this if you need to:
- :white_check_mark: Execute commands without going into server console.
- :white_check_mark: Keep the visibility, control, and reviewability of the schedule configurations in your codebase.

## Compatiblity Matrix

| <span align="left">Laravel</span> | <span align="left">Schedule Police</span> |
|:----------------------------------|------------------------------------------:|
| 8.x ~ 10.x | 1.x |

## Installation
1. Install the package
```shell
composer require acdphp/laravel-schedule-police
composer require acdphp/laravel-schedule-police:^1.0
```

2. Run the migration.
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
],
"minimum-stability": "stable",
"require": {
"php": "^8.0"
"php": "^8.0",
"laravel/framework": "^8.0|^9.0|^10.0"
},
"require-dev": {
"laravel/pint": "^1.5",
Expand Down
1 change: 1 addition & 0 deletions config/schedule-police.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
*/
'blacklisted_commands' => [
'migrate:fresh',
'migrate:refresh',
],

/*
Expand Down
Loading