Skip to content

Commit

Permalink
Chore upgrade laravel 10 (#4)
Browse files Browse the repository at this point in the history
* bump the laravel min version

BC: remove support for laravel 7 and PHP 7.4
  • Loading branch information
karl-d authored Jun 28, 2023
1 parent 9fe8069 commit f600273
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,17 @@ on:
pull_request:
jobs:
tests:
strategy:
matrix:
phpversion: [ 8.0, 8.1, 8.2 ]
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: ${{ matrix.phpversion }}
extension-csv: mbstring,bcmath,curl,gettext,exif,intl
ini-values-csv: pcov.directory=./src/
coverage: pcov
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
}
],
"require-dev": {
"orchestra/testbench": "^5.3",
"orchestra/testbench": "^v7.25.0",
"phpunit/phpunit": "^9.2",
"scrutinizer/ocular": "^1.9",
"webtoolshealth/php-coding-standard": "^1.0"
},
"require": {
"justinrainbow/json-schema": "^5.2",
"php": "^7.4|^8.0",
"illuminate/support": "^7.0|^8.0|^9.0"
"php": "^8.0|^8.1|^8.2",
"illuminate/support": "^8.0|^9.0|^10.0"
},
"config": {
"sort-packages": true
Expand Down

0 comments on commit f600273

Please sign in to comment.