Skip to content

Commit

Permalink
Remove PHP 8 support due to lack of PHP extension (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
devanych committed Jan 28, 2022
1 parent 567510e commit fdde38f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ jobs:

php:
- 7.4
- 8.0
- 8.1

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- windows-latest

php:
- 8.1
- 7.4

steps:
- name: Checkout
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ jobs:

php:
- 7.4
- 8.0
- 8.1

steps:
- name: Checkout
Expand Down
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# Yii WinCache Change Log


## 1.0.1 under development

- no changes in this release.
- Bug #31: Remove PHP 8 support due to lack of PHP extension (devanych)

## 1.0.0 February 02, 2021

- Initial release.
- Initial release.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ This package uses the PHP [Windows Cache](https://sourceforge.net/projects/winca
([see also](https://www.php.net/manual/book.wincache.php)) extension and implements
[PSR-16](https://www.php-fig.org/psr/psr-16/) cache.

## Requirements

- PHP 7.4.
- `WinCache` PHP extension.

## Installation

The package could be installed with composer:
Expand Down Expand Up @@ -67,6 +72,8 @@ To work with values in a more efficient manner, batch operations should be used:

This package can be used as a cache handler for the [Yii Caching Library](https://github.com/yiisoft/cache).

## Testing

### Unit testing

The package is tested with [PHPUnit](https://phpunit.de/). To run tests:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"source": "https://github.com/yiisoft/cache-wincache"
},
"require": {
"php": "^7.4|^8.0",
"php": "^7.4",
"ext-wincache": "*",
"psr/simple-cache": "^1.0.1"
},
Expand Down

0 comments on commit fdde38f

Please sign in to comment.