Skip to content

Commit

Permalink
dropped php8.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
xklid101 committed Mar 13, 2024
1 parent aa774b9 commit 052639f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .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', '8.3' ]
php: [ '8.1', '8.2', '8.3' ]

steps:
- name: Set up PHP
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'
coverage: none

- name: Download dependencies
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'
coverage: none

- name: Download dependencies
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.1'
coverage: none

- name: Download dependencies
Expand Down
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
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"type": "library",
"license": "MIT",
"require": {
"php": "^8.0",
"php": "^8.1",
"codeception/codeception": "^5.0",
"codeception/lib-innerbrowser": "^4.0",
"slim/psr7": "^1.3",
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 052639f

Please sign in to comment.