Skip to content

Commit e2a7789

Browse files
committed
Laravel 12
1 parent d1256e9 commit e2a7789

File tree

5 files changed

+1214
-1021
lines changed

5 files changed

+1214
-1021
lines changed

.editorconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ indent_style = space
77
end_of_line = lf
88
trim_trailing_whitespace = true
99
insert_final_newline = true
10+
11+
[*.{yml,yaml}]
12+
indent_size = 2
13+
indent_style = space
14+
end_of_line = lf
15+
trim_trailing_whitespace = true
16+
insert_final_newline = true

.github/workflows/pint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: '8.3'
19+
php-version: "8.3"
2020
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, intl
2121
coverage: none
2222

.github/workflows/run-tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,23 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest]
1616
php: [8.1, 8.2, 8.3, 8.4]
17-
laravel: ['10.*', '11.*']
17+
laravel: ["10.*", "11.*", "12.*"]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 10.*
2121
testbench: 8.*
22+
carbon: 2.64.1
2223
- laravel: 11.*
2324
testbench: 9.*
25+
carbon: 2.64.1
26+
- laravel: 12.*
27+
testbench: 10.*
28+
carbon: 3.0.0
2429
exclude:
2530
- laravel: 11.*
2631
php: 8.1
32+
- laravel: 12.*
33+
php: 8.1
2734

2835
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2936

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1",
20-
"illuminate/contracts": "^10.0|^11.0",
19+
"php": "^8.1|^8.2|^8.3|^8.4",
20+
"illuminate/contracts": "^10.0|^11.0|^12.0",
2121
"spatie/laravel-package-tools": "^1.12"
2222
},
2323
"require-dev": {
2424
"laravel/pint": "^1.0",
2525
"nunomaduro/collision": "^7.0|^8.0",
26-
"larastan/larastan": "^2.0",
27-
"orchestra/testbench": "^8.0|^9.0",
28-
"phpunit/phpunit": "^9.5|^10.5"
26+
"larastan/larastan": "^2.0|^3.0",
27+
"orchestra/testbench": "^8.0|^9.0|^10.0",
28+
"phpunit/phpunit": "^9.5|^10.5|^11.0"
2929
},
3030
"autoload": {
3131
"psr-4": {

0 commit comments

Comments
 (0)