Skip to content

Commit a972fec

Browse files
committed
Laravel 12 support
1 parent dc98192 commit a972fec

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

.github/workflows/.github-actions.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ on:
1515
jobs:
1616
phpcs:
1717
strategy:
18+
fail-fast: false
1819
matrix:
19-
version: ['8.1', '8.2', '8.3']
20+
version: ['8.1', '8.2', '8.3', '8.4']
2021
runs-on: ubuntu-latest
2122

2223
steps:
@@ -43,8 +44,9 @@ jobs:
4344
4445
phpunit:
4546
strategy:
47+
fail-fast: false
4648
matrix:
47-
version: ['8.1', '8.2', '8.3']
49+
version: ['8.1', '8.2', '8.3', '8.4']
4850
runs-on: ubuntu-latest
4951

5052
steps:
@@ -77,10 +79,3 @@ jobs:
7779
run: |
7880
export CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }}
7981
bash <(curl -s https://codecov.io/bash) || echo 'Codecov failed to upload'
80-
81-
- name: Upload log artifacts
82-
uses: actions/upload-artifact@v2
83-
with:
84-
name: logs
85-
path: ~/storage/logs
86-
retention-days: 3

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.0.5 - 26-02-2025
2+
- Laravel 12 Support
3+
- PHP 8.4 added to GitHub Actions
4+
15
# 1.0.4 - 13-03-2024
26
- Laravel 11 Support
37
- PHP 8.3 added to GitHub Actions

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=8.0.2",
15-
"illuminate/support": "^9.0|^10.0|^11.0",
16-
"illuminate/database": "^9.0|^10.0|^11.0",
17-
"illuminate/contracts": "^9.0|^10.0|^11.0",
14+
"php": "^8.1",
15+
"illuminate/support": "^9.0|^10.0|^11.0|^12.0",
16+
"illuminate/database": "^9.0|^10.0|^11.0|^12.0",
17+
"illuminate/contracts": "^9.0|^10.0|^11.0|^12.0",
1818
"clntdev/scrubber": "^1.0"
1919
},
2020
"require-dev": {
2121
"roave/security-advisories": "dev-latest",
2222
"mockery/mockery": "^1.0",
23-
"orchestra/testbench": "^7.0|^8.0|^9.0",
24-
"phpunit/phpunit": "^9.5|^10.5",
23+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
24+
"phpunit/phpunit": "^9.5|^10.5|^11.5",
2525
"symfony/var-dumper": "^6.0|^7.0",
2626
"squizlabs/php_codesniffer": "^3.7",
2727
"timacdonald/log-fake": "^2.0",

0 commit comments

Comments
 (0)