Skip to content

Commit 4921cda

Browse files
authored
libraries update - php8.3 added, actions/checkout updated, codeception/lib-innerbrowser updated (#28)
- Update actions/checkout to use v4 - Added support to PHP 8.3 - Added support to codeception/lib-innerbrowser ^4.0
1 parent 3c809aa commit 4921cda

File tree

8 files changed

+18
-12
lines changed

8 files changed

+18
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 10
1111
matrix:
12-
php: [ '8.0', '8.1', '8.2' ]
12+
php: [ '8.0', '8.1', '8.2', '8.3' ]
1313

1414
steps:
1515
- name: Set up PHP
@@ -20,7 +20,7 @@ jobs:
2020
tools: composer:v2
2121

2222
- name: Checkout code
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: Download dependencies
2626
run: composer update --no-interaction --prefer-dist

.github/workflows/static-analysis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99

1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: Setup PHP
1515
uses: shivammathur/setup-php@v2
1616
with:
17-
php-version: '8.0'
17+
php-version: '8.1'
1818
coverage: none
1919

2020
- name: Download dependencies
@@ -32,12 +32,12 @@ jobs:
3232

3333
steps:
3434
- name: Checkout code
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636

3737
- name: Setup PHP
3838
uses: shivammathur/setup-php@v2
3939
with:
40-
php-version: '8.0'
40+
php-version: '8.1'
4141
coverage: none
4242

4343
- name: Download dependencies
@@ -55,12 +55,12 @@ jobs:
5555

5656
steps:
5757
- name: Checkout code
58-
uses: actions/checkout@v3
58+
uses: actions/checkout@v4
5959

6060
- name: Setup PHP
6161
uses: shivammathur/setup-php@v2
6262
with:
63-
php-version: '8.0'
63+
php-version: '8.1'
6464
coverage: none
6565

6666
- name: Download dependencies

CHANGELOG-4.0.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
### Added
9+
- PHP 8.3 support
10+
- codeception/lib-innerbrowser ^4.0 support
11+
712
## [4.1.0] - 2023-03-17
813
### Added
914
- PHP 8.2 support

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,4 @@ local-ci:
4747
$(DOCKER_RUN) php:8.0-cli vendor/bin/codecept run
4848
$(DOCKER_RUN) php:8.1-cli vendor/bin/codecept run
4949
$(DOCKER_RUN) php:8.2-cli vendor/bin/codecept run
50+
$(DOCKER_RUN) php:8.3-cli vendor/bin/codecept run

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"require": {
1212
"php": "^8.0",
1313
"codeception/codeception": "^5.0",
14-
"codeception/lib-innerbrowser": "^3.0",
14+
"codeception/lib-innerbrowser": "^3.0 || ^4.0",
1515
"slim/psr7": "^1.3",
1616
"slim/slim": "^4.7"
1717
},

vendor-bin/php-cs-fixer/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require-dev": {
3-
"php": "^8.0",
3+
"php": "^8.1",
44
"friendsofphp/php-cs-fixer": "^3.15"
55
},
66
"config": {

vendor-bin/phpstan/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require-dev": {
3-
"php": "^8.0",
3+
"php": "^8.1",
44
"phpstan/phpstan": "^1.10",
55
"phpstan/phpstan-deprecation-rules": "^1.1"
66
},

vendor-bin/psalm/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require-dev": {
3-
"php": "^8.0",
3+
"php": "^8.1",
44
"psalm/phar": "^5.8"
55
},
66
"config": {

0 commit comments

Comments
 (0)