Skip to content

Commit 197bb37

Browse files
Add PHP 8.4 support
1 parent d594fc1 commit 197bb37

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ on:
77
jobs:
88
tests:
99
name: PHP ${{ matrix.php }}; Laravel ${{ matrix.laravel }}
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111

1212
strategy:
1313
matrix:
14-
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
14+
php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
1515
laravel: ['8', '9', '10', '11']
1616
exclude:
1717
- php: '7.4'
@@ -32,6 +32,11 @@ jobs:
3232
laravel: '8'
3333
- php: '8.3'
3434
laravel: '9'
35+
- php: '8.4'
36+
laravel: '8'
37+
- php: '8.4'
38+
laravel: '9'
39+
3540

3641
steps:
3742
- name: Checkout Code

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013-2024 Graham Campbell <hello@gjcampbell.co.uk>
3+
Copyright (c) 2013-2025 Graham Campbell <hello@gjcampbell.co.uk>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Laravel Markdown was created by, and is maintained by [Graham Campbell](https://
1616

1717
## Installation
1818

19-
This version requires [PHP](https://www.php.net/) 7.4-8.3 and supports [Laravel](https://laravel.com/) 8-11.
19+
This version requires [PHP](https://www.php.net/) 7.4-8.4 and supports [Laravel](https://laravel.com/) 8-11.
2020

2121
| Markdown | L5.5 | L5.6 | L5.7 | L5.8 | L6 | L7 | L8 | L9 | L10 | L11 |
2222
|----------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
@@ -25,12 +25,12 @@ This version requires [PHP](https://www.php.net/) 7.4-8.3 and supports [Laravel]
2525
| 12.0 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: |
2626
| 13.1 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
2727
| 14.0 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: |
28-
| 15.2 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
28+
| 15.3 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
2929

3030
To get the latest version, simply require the project using [Composer](https://getcomposer.org/):
3131

3232
```bash
33-
$ composer require "graham-campbell/markdown:^15.2"
33+
$ composer require "graham-campbell/markdown:^15.3"
3434
```
3535

3636
Once installed, if you are not using automatic package discovery, then you need to register the `GrahamCampbell\Markdown\MarkdownServiceProvider` service provider in your `config/app.php`.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
"illuminate/filesystem": "^8.75 || ^9.0 || ^10.0 || ^11.0",
1717
"illuminate/support": "^8.75 || ^9.0 || ^10.0 || ^11.0",
1818
"illuminate/view": "^8.75 || ^9.0 || ^10.0 || ^11.0",
19-
"league/commonmark": "^2.4.2"
19+
"league/commonmark": "^2.6.1"
2020
},
2121
"require-dev": {
22-
"graham-campbell/analyzer": "^4.1",
23-
"graham-campbell/testbench": "^6.1",
22+
"graham-campbell/analyzer": "^4.2.1",
23+
"graham-campbell/testbench": "^6.2",
2424
"mockery/mockery": "^1.6.6",
2525
"phpunit/phpunit": "^9.6.17 || ^10.5.13"
2626
},

0 commit comments

Comments
 (0)