Skip to content

Commit

Permalink
libraries update - details are following:
Browse files Browse the repository at this point in the history
    lib update actions/checkout to use v4
    dropped php8.0 support
    added php8.3 support
    lib update: codeception/lib-innerbrowser version ^4.0
  • Loading branch information
xklid101 committed Mar 13, 2024
1 parent 3c809aa commit 5ba2e2f
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 10
matrix:
php: [ '8.0', '8.1', '8.2' ]
php: [ '8.1', '8.2', '8.3' ]

steps:
- name: Set up PHP
Expand All @@ -20,7 +20,7 @@ jobs:
tools: composer:v2

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download dependencies
run: composer update --no-interaction --prefer-dist
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'
coverage: none

- name: Download dependencies
Expand All @@ -32,12 +32,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'
coverage: none

- name: Download dependencies
Expand All @@ -55,12 +55,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'
coverage: none

- name: Download dependencies
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,4 @@ local-ci:
$(DOCKER_RUN) php:8.0-cli vendor/bin/codecept run
$(DOCKER_RUN) php:8.1-cli vendor/bin/codecept run
$(DOCKER_RUN) php:8.2-cli vendor/bin/codecept run
$(DOCKER_RUN) php:8.3-cli vendor/bin/codecept run
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Inspiration comes from [herloct/codeception-slim-module](https://github.com/herl
## Install

### Minimal requirements
- php: `^8.0`
- php: `^8.1`
- slim/slim: `^4.7`
- codeception/codeception: `^5.0`

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"type": "library",
"license": "MIT",
"require": {
"php": "^8.0",
"php": "^8.1",
"codeception/codeception": "^5.0",
"codeception/lib-innerbrowser": "^3.0",
"codeception/lib-innerbrowser": "^4.0",
"slim/psr7": "^1.3",
"slim/slim": "^4.7"
},
Expand Down
2 changes: 1 addition & 1 deletion vendor-bin/php-cs-fixer/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"require-dev": {
"php": "^8.0",
"php": "^8.1",
"friendsofphp/php-cs-fixer": "^3.15"
},
"config": {
Expand Down
2 changes: 1 addition & 1 deletion vendor-bin/phpstan/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"require-dev": {
"php": "^8.0",
"php": "^8.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1"
},
Expand Down
2 changes: 1 addition & 1 deletion vendor-bin/psalm/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"require-dev": {
"php": "^8.0",
"php": "^8.1",
"psalm/phar": "^5.8"
},
"config": {
Expand Down

0 comments on commit 5ba2e2f

Please sign in to comment.