Skip to content

Commit

Permalink
Merge pull request #46 from rappasoft/develop
Browse files Browse the repository at this point in the history
v2.0.0
  • Loading branch information
rappasoft committed Feb 19, 2022
2 parents 616bf9f + 63355b4 commit 9cba918
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 15 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: run-tests

on:
push:
branches: [main]
branches: [main, develop]
pull_request:
branches: [main]
branches: [main, develop]

jobs:
test:
Expand All @@ -13,12 +13,12 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0, 7.4]
laravel: [8.*]
php: [8.0, 8.1]
laravel: [9.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.6
- laravel: 9.*
testbench: 7.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to `Laravel Authentication Log` will be documented in this file.

### 2.0.0 - 2022-02-19

### Added

- Laravel 9 Support

### 1.3.0 - 2022-01-17

### Changed
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ Laravel Authentication Log is a package which tracks your user's authentication

See the [documentation](https://rappasoft.com/docs/laravel-authentication-log) for detailed installation and usage instructions.

## Version Compatibility

Laravel | Authentication Log
:---------|:------------------
8.x | 1.x
9.x | 2.x

## Testing

```bash
Expand Down
21 changes: 12 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
}
],
"require": {
"php": "^7.4|^8.0",
"illuminate/contracts": "^8.37",
"php": "^8.0",
"illuminate/contracts": "^9.0",
"spatie/laravel-package-tools": "^1.4.3"
},
"require-dev": {
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.15",
"pestphp/pest": "^1.18",
"pestphp/pest-plugin-laravel": "^1.1",
"spatie/laravel-ray": "^1.23",
"vimeo/psalm": "^4.8"
"nunomaduro/collision": "^6.0",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.2",
"spatie/laravel-ray": "^1.29",
"vimeo/psalm": "^4.20"
},
"autoload": {
"psr-4": {
Expand All @@ -44,7 +44,10 @@
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
Expand Down

0 comments on commit 9cba918

Please sign in to comment.