Skip to content

Commit dc214fe

Browse files
committed
Add support for Laravel 8.0
1 parent a52d841 commit dc214fe

File tree

6 files changed

+21
-16
lines changed

6 files changed

+21
-16
lines changed

.editorconfig

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ root = true
33
[*]
44
charset = utf-8
55
end_of_line = lf
6-
indent_size = 4
7-
indent_style = space
86
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
99
trim_trailing_whitespace = true
1010

1111
[*.md]
1212
trim_trailing_whitespace = false
1313

14-
[*.yml]
15-
indent_style = space
14+
[*.{yml,yaml}]
1615
indent_size = 2

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ language: php
33
sudo: false
44

55
php:
6-
- 7.2
76
- 7.3
7+
- 7.4
88

99
before_script:
1010
- travis_retry composer self-update

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes
22

3+
## v5.0.0 (2020-09-09)
4+
5+
- Added support for Laravel 8.0.
6+
37
## v4.0.0 (2020-04-28)
48

59
- Added support for Laravel 7.0.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ A Laravel package for converting URLs in a given string of text into clickable l
66

77
## Requirements
88

9-
- PHP >= 7.2.5
10-
- Laravel >= 7.0
9+
- PHP >= 7.3
10+
- Laravel >= 8.0
1111

1212
## Installation
1313

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.2.5",
15-
"illuminate/support": "^7.0",
14+
"php": "^7.3",
15+
"illuminate/support": "^8.0",
1616
"symfony/polyfill-mbstring": "^1.0",
17-
"spatie/laravel-html": "^2.23"
17+
"spatie/laravel-html": "^2.27"
1818
},
1919
"require-dev": {
20-
"phpunit/phpunit": "^8.5",
20+
"phpunit/phpunit": "^9.3",
2121
"mockery/mockery": "^1.3.1"
2222
},
2323
"autoload": {

phpunit.xml.dist

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
4+
backupGlobals="false"
35
backupStaticAttributes="false"
46
bootstrap="vendor/autoload.php"
57
colors="true"
@@ -13,9 +15,9 @@
1315
<directory suffix="Test.php">./tests</directory>
1416
</testsuite>
1517
</testsuites>
16-
<filter>
17-
<whitelist processUncoveredFilesFromWhitelist="true">
18+
<coverage processUncoveredFiles="true">
19+
<include>
1820
<directory suffix=".php">./src</directory>
19-
</whitelist>
20-
</filter>
21+
</include>
22+
</coverage>
2123
</phpunit>

0 commit comments

Comments
 (0)