Skip to content

Commit 7af2adb

Browse files
committed
Added Laravel 10 Support
1 parent 5e6281b commit 7af2adb

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.github/workflows/fix-php-code-style-issues.yml renamed to .github/workflows/fix-styling.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Fix PHP code style issues
22

3-
on: [push]
3+
on:
4+
push:
5+
paths:
6+
- '**.php'
47

58
jobs:
69
php-code-styling:
@@ -13,7 +16,7 @@ jobs:
1316
ref: ${{ github.head_ref }}
1417

1518
- name: Fix PHP code style issues
16-
uses: aglipanci/laravel-pint-action@1.0.0
19+
uses: aglipanci/laravel-pint-action@2.1.0
1720

1821
- name: Commit changes
1922
uses: stefanzweifel/git-auto-commit-action@v4

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@
1717
],
1818
"require": {
1919
"php": "^8.1",
20-
"illuminate/contracts": "^9.0",
20+
"illuminate/contracts": "^9.0|^10.0",
2121
"spatie/enum": "^3.13",
2222
"spatie/laravel-enum": "^3.0",
2323
"spatie/laravel-medialibrary": "^10.5",
24-
"spatie/laravel-package-tools": "^1.13.0"
24+
"spatie/laravel-package-tools": "^1.14.0"
2525
},
2626
"require-dev": {
2727
"laravel/pint": "^1.0",
28-
"nunomaduro/collision": "^6.0",
28+
"nunomaduro/collision": "^7.0",
2929
"nunomaduro/larastan": "^2.0.1",
30-
"orchestra/testbench": "^7.0",
31-
"pestphp/pest": "^1.21",
32-
"pestphp/pest-plugin-laravel": "^1.1",
30+
"orchestra/testbench": "^8.0",
31+
"pestphp/pest": "^2.0",
32+
"pestphp/pest-plugin-laravel": "^2.0",
3333
"phpstan/extension-installer": "^1.1",
3434
"phpstan/phpstan-deprecation-rules": "^1.0",
3535
"phpstan/phpstan-phpunit": "^1.0",
36-
"phpunit/phpunit": "^9.5"
36+
"phpunit/phpunit": "^9.5 | ^10.0"
3737
},
3838
"autoload": {
3939
"psr-4": {

0 commit comments

Comments
 (0)