Skip to content
This repository was archived by the owner on Apr 13, 2022. It is now read-only.
Open
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
24 changes: 22 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,21 @@ jobs:

strategy:
matrix:
php: ['7.1', '7.2', '7.3', '7.4', '8.0']
laravel: ['5.5', '5.6', '5.7', '5.8', '6', '7', '8']
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
laravel: ['5.5', '5.6', '5.7', '5.8', '6', '7', '8', '9']
exclude:
- php: '7.1'
laravel: '6'
- php: '7.1'
laravel: '7'
- php: '7.1'
laravel: '8'
- php: '7.1'
laravel: '9'
- php: '7.2'
laravel: '8'
- php: '7.2'
laravel: '9'
- php: '8.0'
laravel: '5.5'
- php: '8.0'
Expand All @@ -30,6 +34,14 @@ jobs:
laravel: '5.7'
- php: '8.0'
laravel: '5.8'
- php: '8.1'
laravel: '5.5'
- php: '8.1'
laravel: '5.6'
- php: '8.1'
laravel: '5.7'
- php: '8.1'
laravel: '5.8'

steps:
- name: Checkout Code
Expand Down Expand Up @@ -101,6 +113,14 @@ jobs:
command: composer require "laravel/framework:8.*" "phpunit/phpunit:^9.3" --no-update --no-interaction
if: "matrix.laravel == '8'"

- name: Select Laravel 9
uses: nick-invision/retry@v1
with:
timeout_minutes: 5
max_attempts: 5
command: composer require "laravel/framework:9.*" "phpunit/phpunit:^9.5" --no-update --no-interaction
if: "matrix.laravel == '9'"

- name: Install PHP 7 Dependencies
uses: nick-invision/retry@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

## Installation

Alt Three Locker is a lock manager for Laravel. This version requires [PHP](https://php.net) 7.1-8.0, and supports Laravel 5.5-8. Simply require the package using [Composer](https://getcomposer.org):
Alt Three Locker is a lock manager for Laravel. This version requires [PHP](https://php.net) 7.1-8.1, and supports Laravel 5.5-9. Simply require the package using [Composer](https://getcomposer.org):

```bash
$ composer require alt-three/locker:^6.4
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
],
"require": {
"php": "^7.1.3 || ^8.0",
"illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0",
"illuminate/redis": "^5.5 || ^6.0 || ^7.0 || ^8.0"
"illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/redis": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"require-dev": {
"graham-campbell/analyzer": "^2.4 || ^3.0",
Expand Down