Skip to content

Commit fe94da4

Browse files
Next version
1 parent 94917d0 commit fe94da4

File tree

5 files changed

+44
-25
lines changed

5 files changed

+44
-25
lines changed

.github/workflows/tests.yml

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,20 @@ jobs:
1212
strategy:
1313
matrix:
1414
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
15-
laravel: ['8', '9', '10']
15+
laravel: ['8', '9', '10', '11']
1616
exclude:
1717
- php: '7.4'
1818
laravel: '9'
1919
- php: '7.4'
2020
laravel: '10'
21+
- php: '7.4'
22+
laravel: '11'
2123
- php: '8.0'
2224
laravel: '10'
25+
- php: '8.0'
26+
laravel: '11'
27+
- php: '8.1'
28+
laravel: '11'
2329
- php: '8.2'
2430
laravel: '8'
2531
- php: '8.3'
@@ -44,31 +50,39 @@ jobs:
4450
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
4551

4652
- name: Select Laravel 8
47-
uses: nick-invision/retry@v2
53+
uses: nick-invision/retry@v3
4854
with:
4955
timeout_minutes: 5
5056
max_attempts: 5
51-
command: composer require "laravel/framework:^8.83.27" "phpunit/phpunit:^9.6.15" --no-update --no-interaction
57+
command: composer require "laravel/framework:^8.83.27" "phpunit/phpunit:^9.6.17" --no-update --no-interaction
5258
if: "matrix.laravel == '8'"
5359

5460
- name: Select Laravel 9
55-
uses: nick-invision/retry@v2
61+
uses: nick-invision/retry@v3
5662
with:
5763
timeout_minutes: 5
5864
max_attempts: 5
59-
command: composer require "laravel/framework:^9.52.16" "phpunit/phpunit:^9.6.15" --no-update --no-interaction
65+
command: composer require "laravel/framework:^9.52.16" "phpunit/phpunit:^9.6.17" --no-update --no-interaction
6066
if: "matrix.laravel == '9'"
6167

6268
- name: Select Laravel 10
63-
uses: nick-invision/retry@v2
69+
uses: nick-invision/retry@v3
6470
with:
6571
timeout_minutes: 5
6672
max_attempts: 5
67-
command: composer require "laravel/framework:^10.34.2" "phpunit/phpunit:^10.4.2" --no-update --no-interaction
73+
command: composer require "laravel/framework:^10.34.2" "phpunit/phpunit:^10.5.13" --no-update --no-interaction
6874
if: "matrix.laravel == '10'"
6975

76+
- name: Select Laravel 11
77+
uses: nick-invision/retry@v3
78+
with:
79+
timeout_minutes: 5
80+
max_attempts: 5
81+
command: composer require "laravel/framework:^11.0.7" "phpunit/phpunit:^10.5.13" --no-update --no-interaction
82+
if: "matrix.laravel == '11'"
83+
7084
- name: Install PHP Dependencies
71-
uses: nick-invision/retry@v2
85+
uses: nick-invision/retry@v3
7286
with:
7387
timeout_minutes: 5
7488
max_attempts: 5

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ CHANGE LOG
22
==========
33

44

5+
## V15.2 (17/03/2024)
6+
7+
* Added Laravel 11 support
8+
9+
510
## V15.1 (04/12/2023)
611

712
* Added PHP 8.3 support

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-2023 Graham Campbell <[email protected]>
3+
Copyright (c) 2013-2024 Graham Campbell <[email protected]>
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: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ 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-10.
19+
This version requires [PHP](https://www.php.net/) 7.4-8.3 and supports [Laravel](https://laravel.com/) 8-11.
2020

21-
| Markdown | L5.5 | L5.6 | L5.7 | L5.8 | L6 | L7 | L8 | L9 | L10 |
22-
|----------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
23-
| 10.3 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: |
24-
| 11.2 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
25-
| 12.0 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
26-
| 13.1 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: |
27-
| 14.0 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: |
28-
| 15.1 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
21+
| Markdown | L5.5 | L5.6 | L5.7 | L5.8 | L6 | L7 | L8 | L9 | L10 | L11 |
22+
|----------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
23+
| 10.3 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: |
24+
| 11.2 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: |
25+
| 12.0 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | :x: |
26+
| 13.1 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
27+
| 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: |
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.1"
33+
$ composer require "graham-campbell/markdown:^15.2"
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
],
1313
"require": {
1414
"php": "^7.4.15 || ^8.0.2",
15-
"illuminate/contracts": "^8.75 || ^9.0 || ^10.0",
16-
"illuminate/filesystem": "^8.75 || ^9.0 || ^10.0",
17-
"illuminate/support": "^8.75 || ^9.0 || ^10.0",
18-
"illuminate/view": "^8.75 || ^9.0 || ^10.0",
19-
"league/commonmark": "^2.4.1"
15+
"illuminate/contracts": "^8.75 || ^9.0 || ^10.0 || ^11.0",
16+
"illuminate/filesystem": "^8.75 || ^9.0 || ^10.0 || ^11.0",
17+
"illuminate/support": "^8.75 || ^9.0 || ^10.0 || ^11.0",
18+
"illuminate/view": "^8.75 || ^9.0 || ^10.0 || ^11.0",
19+
"league/commonmark": "^2.4.2"
2020
},
2121
"require-dev": {
2222
"graham-campbell/analyzer": "^4.1",
2323
"graham-campbell/testbench": "^6.1",
2424
"mockery/mockery": "^1.6.6",
25-
"phpunit/phpunit": "^9.6.15 || ^10.4.2"
25+
"phpunit/phpunit": "^9.6.17 || ^10.5.13"
2626
},
2727
"autoload": {
2828
"psr-4": {

0 commit comments

Comments
 (0)