Skip to content

Commit 0d0259e

Browse files
committed
php 8.2, cleanup build matrix
1 parent 3b2affb commit 0d0259e

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

.github/workflows/static.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717

1818
- name: PHPStan
1919
uses: OskarStark/[email protected]
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232

3333
- name: PHP-CS-Fixer
3434
uses: docker://oskarstark/php-cs-fixer-ga

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
15+
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
1616

1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Setup PHP
2222
uses: shivammathur/setup-php@v2
@@ -42,11 +42,11 @@ jobs:
4242
runs-on: ubuntu-latest
4343
strategy:
4444
matrix:
45-
php: ['7.1', '7.2', '7.3', '7.4']
45+
php: ['7.1', '7.4', '8.0', '8.2']
4646

4747
steps:
4848
- name: Checkout code
49-
uses: actions/checkout@v2
49+
uses: actions/checkout@v3
5050

5151
- name: Setup PHP
5252
uses: shivammathur/setup-php@v2
@@ -72,12 +72,12 @@ jobs:
7272

7373
steps:
7474
- name: Checkout code
75-
uses: actions/checkout@v2
75+
uses: actions/checkout@v3
7676

7777
- name: Setup PHP
7878
uses: shivammathur/setup-php@v2
7979
with:
80-
php-version: 7.1
80+
php-version: 7.4
8181
tools: composer:v2
8282
coverage: none
8383

@@ -101,7 +101,7 @@ jobs:
101101

102102
steps:
103103
- name: Checkout code
104-
uses: actions/checkout@v2
104+
uses: actions/checkout@v3
105105

106106
- name: Setup PHP
107107
uses: shivammathur/setup-php@v2

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
[![Latest Version](https://img.shields.io/github/release/php-http/client-common.svg?style=flat-square)](https://github.com/php-http/client-common/releases)
44
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
55
[![Build Status](https://github.com/php-http/client-common/actions/workflows/tests.yml/badge.svg)](https://github.com/php-http/client-common/actions/workflows/tests.yml)
6+
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/php-http/client-common.svg?style=flat-square)](https://scrutinizer-ci.com/g/php-http/client-common)
7+
[![Quality Score](https://img.shields.io/scrutinizer/g/php-http/client-common.svg?style=flat-square)](https://scrutinizer-ci.com/g/php-http/client-common)
68
[![Total Downloads](https://img.shields.io/packagist/dt/php-http/client-common.svg?style=flat-square)](https://packagist.org/packages/php-http/client-common)
79

810
**Common HTTP Client implementations and tools for HTTPlug.**

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"nyholm/psr7": "^1.2",
2828
"phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
2929
"phpspec/prophecy": "^1.10.2",
30-
"phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
30+
"phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7"
3131
},
3232
"suggest": {
3333
"ext-json": "To detect JSON responses with the ContentTypePlugin",

0 commit comments

Comments
 (0)