Skip to content

Commit 3f8f723

Browse files
committed
Prep for Laravel 13
1 parent 5c79133 commit 3f8f723

6 files changed

Lines changed: 9 additions & 71 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 0 additions & 50 deletions
This file was deleted.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Setup PHP
2121
uses: shivammathur/setup-php@v2
@@ -30,7 +30,7 @@ jobs:
3030
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3131
3232
- name: Cache dependencies
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
with:
3535
path: ${{ steps.composer-cache.outputs.dir }}
3636
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/phpunit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
dependency-version: [ stable, lowest ]
1616
os: [ ubuntu, windows ]
17-
laravel: [ 11.*, 12.* ]
17+
laravel: [ 11.*, 12.*, 13.* ]
1818
php: [ 8.3, 8.4 ]
1919

2020
runs-on: "${{ matrix.os }}-latest"
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v5
2828

2929
- name: Setup PHP
3030
uses: shivammathur/setup-php@v2

.github/workflows/update-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
update-publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v5
1212
with:
1313
repository: ${{ github.event.repository.full_name }}
1414
ref: 'main'

README.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@
99
alt="Build Status"
1010
/>
1111
</a>
12-
<a href="https://codeclimate.com/github/InterNACHI/modular/test_coverage" target="_blank">
13-
<img
14-
src="https://api.codeclimate.com/v1/badges/dd927802d52f4f75ea6c/test_coverage"
15-
alt="Coverage Status"
16-
/>
17-
</a>
1812
<a href="https://packagist.org/packages/internachi/modular" target="_blank">
1913
<img
2014
src="https://poser.pugx.org/internachi/modular/v/stable"
@@ -27,16 +21,10 @@
2721
alt="MIT Licensed"
2822
/>
2923
</a>
30-
<a href="https://twitter.com/inxilpro" target="_blank">
31-
<img
32-
src="https://img.shields.io/twitter/follow/inxilpro?style=social"
33-
alt="Follow @inxilpro on Twitter"
34-
/>
35-
</a>
36-
<a href="https://any.dev/@chris" target="_blank">
24+
<a href="https://bsky.app/profile/cmorrell.com" target="_blank">
3725
<img
38-
src="https://img.shields.io/mastodon/follow/109584001693739813?domain=https%3A%2F%2Fany.dev&style=social"
39-
alt="Follow @chris@any.dev on Mastodon"
26+
src="https://img.shields.io/bluesky/followers/cmorrell.com"
27+
alt="Follow @cmorrell.com on bsky"
4028
/>
4129
</a>
4230
</div>

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"ext-simplexml": "*",
2121
"ext-dom": "*",
2222
"composer/composer": "^2.1",
23-
"illuminate/support": "^11|^12|13.x-dev|dev-master|dev-main",
23+
"illuminate/support": "^11|^12|^13|13.x-dev|dev-master|dev-main",
2424
"internachi/modularize": "^1.1.0"
2525
},
2626
"require-dev": {

0 commit comments

Comments
 (0)