1
0
Fork 0
mirror of https://github.com/archtechx/money.git synced 2025-12-13 11:44:02 +00:00

Allow PHP 8.0, run tests for 8.0 as well

This commit is contained in:
lukinovec 2023-02-16 11:32:58 +01:00
parent 958e27eb79
commit 69eb9c4659
2 changed files with 6 additions and 2 deletions

View file

@ -16,7 +16,11 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
laravel: [9, 10] include:
- laravel: 10
php: 8.1
- laravel: 9
php: 8.0
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View file

@ -24,7 +24,7 @@
} }
}, },
"require": { "require": {
"php": "^8.1", "php": "^8.0",
"illuminate/support": "^9.0|^10.0", "illuminate/support": "^9.0|^10.0",
"archtechx/helpers": "^0.3.1" "archtechx/helpers": "^0.3.1"
}, },