Skip to content

Commit 648306c

Browse files
authored
Merge pull request #297 from PHP-Open-Source-Saver/feature/laravel-13
Updating composer and CI for Laravel 13
2 parents 563f7dc + 630ed38 commit 648306c

File tree

5 files changed

+15
-21
lines changed

5 files changed

+15
-21
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# These are supported funding model platforms
22

3-
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4-
patreon:
3+
github: [specialtactics]
4+
patreon:
55
open_collective: # Replace with a single Open Collective username
66
ko_fi: # Replace with a single Ko-fi username
77
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel

.github/workflows/php-cs-fixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup PHP
2222
uses: shivammathur/setup-php@v2
2323
with:
24-
php-version: 8.3
24+
php-version: 8.5
2525
coverage: none
2626

2727
- name: Determine composer cache directory

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- uses: shivammathur/setup-php@v2
3333
with:
34-
php-version: 8.3
34+
php-version: 8.5
3535
coverage: none
3636

3737
- name: Get composer cache directory

.github/workflows/phpunit.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,15 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php: [8.2, 8.3, 8.4]
19-
laravel: [10.*, 11.*, 12.*]
18+
php: [8.3, 8.4, 8.5]
19+
laravel: [12.*, 13.*]
2020
stability: [prefer-lowest, prefer-stable]
2121
coverage: [none]
2222
include:
2323
- php: 8.3
24-
laravel: 11.*
24+
laravel: 13.*
2525
stability: prefer-stable
2626
coverage: xdebug
27-
- php: 8.3
28-
laravel: 11.*
29-
carbon: 3.*
3027

3128
name: 'P${{ matrix.php }} L${{ matrix.laravel }} ${{ matrix.stability }} c:${{ matrix.coverage }}'
3229

composer.json

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,22 @@
3838
}
3939
],
4040
"require": {
41-
"php": "^8.2",
41+
"php": "^8.3",
4242
"ext-json": "*",
43-
"illuminate/auth": "^10|^11|^12",
44-
"illuminate/contracts": "^10|^11|^12",
45-
"illuminate/http": "^10|^11|^12",
46-
"illuminate/support": "^10|^11|^12",
43+
"illuminate/auth": "^12|^13",
44+
"illuminate/contracts": "^12|^13",
45+
"illuminate/http": "^12|^13",
46+
"illuminate/support": "^12|^13",
4747
"lcobucci/jwt": "^5.4",
4848
"namshi/jose": "^7.0",
4949
"nesbot/carbon": "^2.0|^3.0"
5050
},
5151
"require-dev": {
5252
"friendsofphp/php-cs-fixer": "^3",
53-
"illuminate/console": "^10|^11|^12",
54-
"illuminate/routing": "^10|^11|^12",
55-
"orchestra/testbench": "^8|^9|^10",
53+
"illuminate/console": "^12|^13",
54+
"illuminate/routing": "^12|^13",
5655
"mockery/mockery": "^1.6",
56+
"orchestra/testbench": "^10|^11",
5757
"phpstan/phpstan": "^2",
5858
"phpunit/phpunit": "^10.5|^11"
5959
},
@@ -68,9 +68,6 @@
6868
}
6969
},
7070
"extra": {
71-
"branch-alias": {
72-
"dev-develop": "2.0-dev"
73-
},
7471
"laravel": {
7572
"aliases": {
7673
"JWTAuth": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTAuth",

0 commit comments

Comments
 (0)