Skip to content

Commit

Permalink
Drop support for php 8.0 (#80)
Browse files Browse the repository at this point in the history
* Drop support for php 8.0

* Update workflow file
  • Loading branch information
akondas committed Sep 19, 2023
1 parent 93a33ae commit 149d38d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
name: build

on: [push,pull_request]
on:
pull_request:
push:
branches: [ master ]

jobs:
build:

strategy:
matrix:
php-version:
- "8.0"
- "8.1"
- "8.2"

runs-on: ubuntu-latest

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
}
],
"require": {
"php": "^8.0"
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.10"
"friendsofphp/php-cs-fixer": "^3.27",
"phpunit/phpunit": "^9.6.13",
"phpstan/phpstan": "^1.10.35"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 149d38d

Please sign in to comment.