Skip to content

Commit 01c737c

Browse files
Working on next version
1 parent e310236 commit 01c737c

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

.github/workflows/tests.yml

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

1212
strategy:
1313
matrix:
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout Code
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323

2424
- name: Setup PHP
2525
uses: shivammathur/setup-php@v2
@@ -32,23 +32,23 @@ jobs:
3232
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
3333

3434
- name: Select Laravel 8
35-
uses: nick-invision/retry@v1
35+
uses: nick-invision/retry@v2
3636
with:
3737
timeout_minutes: 5
3838
max_attempts: 5
39-
command: composer require "laravel/framework:8.*" --no-update --no-interaction
39+
command: composer require "laravel/framework:^8.75" --no-update --no-interaction
4040
if: "matrix.laravel == '8'"
4141

4242
- name: Select Laravel 9
43-
uses: nick-invision/retry@v1
43+
uses: nick-invision/retry@v2
4444
with:
4545
timeout_minutes: 5
4646
max_attempts: 5
47-
command: composer require "laravel/framework:9.*" --no-update --no-interaction
47+
command: composer require "laravel/framework:^9.0" --no-update --no-interaction
4848
if: "matrix.laravel == '9'"
4949

5050
- name: Install PHP Dependencies
51-
uses: nick-invision/retry@v1
51+
uses: nick-invision/retry@v2
5252
with:
5353
timeout_minutes: 5
5454
max_attempts: 5

CHANGELOG.md

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

44

5-
## V14.0 (UPCOMING)
5+
## V14.0 (UPGRADES)
66

7-
* Upgrade to Commonmark ^2.2
8-
* Added Laravel 9 support
9-
* Dropped Laravel 6 and 7
7+
* Dropped PHP < 7.4
8+
* Dropped Laravel < 8
9+
* Switched to Commonmark ^2.3.1
1010

1111

1212
## V13.1.2 (21/11/2021)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Laravel Markdown
22
================
33

4-
Laravel Markdown was created by, and is maintained by [Graham Campbell](https://github.com/GrahamCampbell), and is a [CommonMark](https://github.com/thephpleague/commonmark) wrapper for [Laravel](https://laravel.com). It ships with **integration with Laravel's view system** too. Feel free to check out the [change log](CHANGELOG.md), [releases](https://github.com/GrahamCampbell/Laravel-Markdown/releases), [security policy](https://github.com/GrahamCampbell/Laravel-Markdown/security/policy), [license](LICENSE), [code of conduct](.github/CODE_OF_CONDUCT.md), and [contribution guidelines](.github/CONTRIBUTING.md).
4+
Laravel Markdown was created by, and is maintained by [Graham Campbell](https://github.com/GrahamCampbell), and is a [CommonMark](https://github.com/thephpleague/commonmark) wrapper for [Laravel](https://laravel.com/). It ships with **integration with Laravel's view system** too. Feel free to check out the [change log](CHANGELOG.md), [releases](https://github.com/GrahamCampbell/Laravel-Markdown/releases), [security policy](https://github.com/GrahamCampbell/Laravel-Markdown/security/policy), [license](LICENSE), [code of conduct](.github/CODE_OF_CONDUCT.md), and [contribution guidelines](.github/CONTRIBUTING.md).
55

66
![Banner](https://user-images.githubusercontent.com/2829600/71477505-680d0f80-27e2-11ea-94a6-b4bacb08e270.png)
77

@@ -16,7 +16,7 @@ Laravel Markdown was created by, and is maintained by [Graham Campbell](https://
1616

1717
## Installation
1818

19-
Laravel Markdown requires [PHP](https://php.net) 7.4-8.1. This particular version supports Laravel 8-9.
19+
This version requires [PHP](https://www.php.net/) 7.4-8.1 and supports [Laravel](https://laravel.com/) 8-9.
2020

2121
| Markdown | L5.1 | L5.2 | L5.3 | L5.4 | L5.5 | L5.6 | L5.7 | L5.8 | L6 | L7 | L8 | L9 |
2222
|----------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
@@ -31,7 +31,7 @@ Laravel Markdown requires [PHP](https://php.net) 7.4-8.1. This particular versio
3131
| 13.1 | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: |
3232
| 14.0 | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: |
3333

34-
To get the latest version, simply require the project using [Composer](https://getcomposer.org):
34+
To get the latest version, simply require the project using [Composer](https://getcomposer.org/):
3535

3636
```bash
3737
$ composer require graham-campbell/markdown:^14.0

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
"illuminate/filesystem": "^8.75 || ^9.0",
1717
"illuminate/support": "^8.75 || ^9.0",
1818
"illuminate/view": "^8.75 || ^9.0",
19-
"league/commonmark": "^2.2"
19+
"league/commonmark": "^2.3.1"
2020
},
2121
"require-dev": {
22-
"graham-campbell/analyzer": "^3.0",
22+
"graham-campbell/analyzer": "^3.1",
2323
"graham-campbell/testbench": "^5.7",
2424
"mockery/mockery": "^1.5",
2525
"phpunit/phpunit": "^9.5"

phpunit.xml.dist

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
<directory suffix="Test.php">./tests</directory>
2222
</testsuite>
2323
</testsuites>
24-
<filter>
25-
<whitelist processUncoveredFilesFromWhitelist="true">
24+
<coverage processUncoveredFiles="true">
25+
<include>
2626
<directory suffix=".php">./src</directory>
27-
</whitelist>
28-
</filter>
27+
</include>
28+
</coverage>
2929
</phpunit>

0 commit comments

Comments
 (0)