Skip to content

Commit 238c73c

Browse files
authored
Drop support for php 8.0 (#4)
1 parent ec93dda commit 238c73c

File tree

4 files changed

+1415
-703
lines changed

4 files changed

+1415
-703
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ jobs:
88
strategy:
99
matrix:
1010
php-version:
11-
- "8.0"
1211
- "8.1"
1312
- "8.2"
1413

@@ -23,19 +22,8 @@ jobs:
2322
php-version: "${{ matrix.php-version }}"
2423
ini-values: memory_limit=-1
2524

26-
- name: Get Composer Cache Directory
27-
id: composer-cache
28-
run: |
29-
echo "::set-output name=dir::$(composer config cache-files-dir)"
30-
- uses: actions/cache@v2
31-
with:
32-
path: ${{ steps.composer-cache.outputs.dir }}
33-
key: ${{ runner.os }}-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.lock') }}
34-
restore-keys: |
35-
${{ runner.os }}-${{ matrix.php-version }}-composer-
36-
37-
- name: Install dependencies
38-
run: composer install
25+
- name: "Install composer dependencies"
26+
uses: "ramsey/composer-install@v2"
3927

4028
- name: Run test suite
4129
run: PHP_CS_FIXER_IGNORE_ENV=1 composer build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ChaosMonkey 🐒 for PHP
22

3-
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.0-8892BF.svg)](https://php.net/)
3+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.1-8892BF.svg)](https://php.net/)
44
[![build](https://github.com/chaos-php/chaos-monkey/actions/workflows/build.yml/badge.svg)](https://github.com/chaos-php/chaos-monkey/actions/workflows/build.yml)
55
[![Latest Stable Version](https://poser.pugx.org/chaos-php/chaos-monkey/v/stable?format=flat)](https://packagist.org/packages/chaos-php/chaos-monkey)
66
![GitHub](https://img.shields.io/github/license/chaos-php/chaos-monkey)

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^8.0",
21-
"akondas/php-runtime": "^0.1.0"
20+
"php": "^8.1",
21+
"akondas/php-runtime": "^1.1"
2222
},
2323
"require-dev": {
2424
"friendsofphp/php-cs-fixer": "^3.27",
@@ -39,7 +39,7 @@
3939
},
4040
"config": {
4141
"platform": {
42-
"php": "8.0"
42+
"php": "8.1"
4343
}
4444
},
4545
"scripts": {

0 commit comments

Comments
 (0)