Skip to content

Commit a216865

Browse files
authored
Bump dependencies for Laravel 13 (#44)
1 parent e2bbca6 commit a216865

3 files changed

Lines changed: 26 additions & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,29 @@ jobs:
5353
strategy:
5454
matrix:
5555
php: ['8.1', '8.2', '8.3']
56-
illuminate: ['10', '11']
56+
illuminate: ['10', '11', '12', '13']
5757
include:
5858
- illuminate: '10'
5959
testbench: '8'
6060
phpunit: '10'
6161
- illuminate: '11'
6262
testbench: '9'
6363
phpunit: '11'
64+
- illuminate: '12'
65+
testbench: '10'
66+
phpunit: '11'
67+
- illuminate: '13'
68+
testbench: '11'
69+
phpunit: '12'
6470
exclude:
6571
- php: '8.1'
6672
illuminate: '11'
73+
- php: '8.1'
74+
illuminate: '12'
75+
- php: '8.1'
76+
illuminate: '13'
77+
- php: '8.2'
78+
illuminate: '13'
6779
steps:
6880
- name: Checkout code
6981
uses: actions/checkout@v4

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
],
1818
"require": {
1919
"php": "^8.1",
20-
"illuminate/http": "^10.0 || ^11.0 || ^12.0",
21-
"illuminate/support": "^10.0 || ^11.0 || ^12.0"
20+
"illuminate/http": "^10.0 || ^11.0 || ^12.0 || ^13.0",
21+
"illuminate/support": "^10.0 || ^11.0 || ^12.0 || ^13.0"
2222
},
2323
"require-dev": {
24-
"orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
25-
"phpunit/phpunit": "^10.0 || ^11.0"
24+
"orchestra/testbench": "^8.0 || ^9.0 || ^10.0 || ^11.0",
25+
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0"
2626
},
2727
"autoload": {
2828
"psr-4": {

pint.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
{
22
"notPath": [
33
"tests/Middleware/OptionalRequired.php"
4-
]
4+
],
5+
"rules": {
6+
"php_unit_method_casing": {
7+
"case": "camel_case"
8+
},
9+
"new_with_parentheses": {
10+
"anonymous_class": true
11+
}
12+
}
513
}

0 commit comments

Comments
 (0)