Skip to content

Commit

Permalink
Merge pull request #57 from olssonm/dev/laravel-9
Browse files Browse the repository at this point in the history
Add support for Laravel 9
  • Loading branch information
olssonm authored Jan 30, 2022
2 parents a34f992 + 8bb1d33 commit af56806
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 39 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
strategy:
matrix:
include:
- php: 8.1
illuminate: ^9.0
phpunit: ^9.0
- php: 8.1
illuminate: ^8.0
phpunit: ^9.0
Expand Down
23 changes: 0 additions & 23 deletions .scrutinizer.yml

This file was deleted.

11 changes: 4 additions & 7 deletions README.jp.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
[![Total downloads][ico-downloads]][link-packagist]
[![Software License][ico-license]](LICENSE.md)
[![Build Status][ico-build]][link-build]
[![Scrutinizer Score][ico-scrutinizer]][link-scrutinizer]

![very-basic-auth](https://user-images.githubusercontent.com/907114/40575964-331559ce-60ef-11e8-8366-aba700fc5567.png)

Expand All @@ -27,10 +26,10 @@ Basic認証は望まないユーザーからのアクセスを排除すること

## 対応バージョン

Laravel | l5-very-basic-auth
:------------------------------------------------------|:----------
`^5.4` | `5.*`
<code>^6 &#124;&#124; ^7 &#124;&#124; ^8</code> | `6.*`
Laravel | l5-very-basic-auth
:----------------------------------------------------------------------|:----------
`^5.4` | `5.*`
<code>^6 &#124;&#124; ^7 &#124;&#124; ^8 &#124;&#124; ^9</code> | `6.*`

#### Laravel4.xを使っている場合

Expand Down Expand Up @@ -155,7 +154,5 @@ MITライセンスです。 詳しくはこちらを見てください。[Licens
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ico-build]: https://img.shields.io/github/workflow/status/olssonm/l5-very-basic-auth/Run%20tests.svg?style=flat-square&label=tests
[ico-downloads]: https://img.shields.io/packagist/dt/olssonm/l5-very-basic-auth.svg?style=flat-square
[ico-scrutinizer]: https://img.shields.io/scrutinizer/g/olssonm/l5-very-basic-auth.svg?style=flat-square
[link-packagist]: https://packagist.org/packages/olssonm/l5-very-basic-auth
[link-build]: https://github.com/olssonm/l5-very-basic-auth/actions?query=workflow%3A%22Run+tests%22
[link-scrutinizer]: https://scrutinizer-ci.com/g/olssonm/l5-very-basic-auth
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ While HTTP Basic Auth does give you a protection layer against unwanted visitors

## Version Compatibility

Laravel | l5-very-basic-auth
:------------------------------------------------------|:----------
`^5.4` | `5.*`
<code>^6 &#124;&#124; ^7 &#124;&#124; ^8</code> | `6.*`
Laravel | l5-very-basic-auth
:----------------------------------------------------------------------|:----------
`^5.4` | `5.*`
<code>^6 &#124;&#124; ^7 &#124;&#124; ^8 &#124;&#124; ^9</code> | `6.*`

*The odd versioning is due to breaking changes in the testing framework and PHP versions. `3.x`-releases are for Laravel 5.4 (PHP 5.6 and up) and `4.x`-releases for Laravel 5.5.*

Expand Down Expand Up @@ -184,7 +184,5 @@ The MIT License (MIT). Please see [License File](LICENSE.md) for more informatio
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ico-build]: https://img.shields.io/github/workflow/status/olssonm/l5-very-basic-auth/Run%20tests.svg?style=flat-square&label=tests
[ico-downloads]: https://img.shields.io/packagist/dt/olssonm/l5-very-basic-auth.svg?style=flat-square
[ico-scrutinizer]: https://img.shields.io/scrutinizer/g/olssonm/l5-very-basic-auth.svg?style=flat-square
[link-packagist]: https://packagist.org/packages/olssonm/l5-very-basic-auth
[link-build]: https://github.com/olssonm/l5-very-basic-auth/actions?query=workflow%3A%22Run+tests%22
[link-scrutinizer]: https://scrutinizer-ci.com/g/olssonm/l5-very-basic-auth
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "olssonm/l5-very-basic-auth",
"description": "Stateless HTTP basic auth without the need for a database. For Laravel 5",
"description": "Laravel stateless HTTP basic auth without the need for a database",
"keywords": [
"olssonm",
"laravel",
Expand All @@ -17,7 +17,7 @@
}
],
"require": {
"illuminate/support": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
"php" : "^7.2|^8.0",
"squizlabs/php_codesniffer": "^3.5"
},
Expand Down Expand Up @@ -51,5 +51,6 @@
]
}
},
"minimum-stability": "stable"
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit af56806

Please sign in to comment.