Skip to content

Commit

Permalink
Add support for Laravel 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bonzai committed Sep 9, 2020
1 parent a52d841 commit dc214fe
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
7 changes: 3 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.yml]
indent_style = space
[*.{yml,yaml}]
indent_size = 2
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ language: php
sudo: false

php:
- 7.2
- 7.3
- 7.4

before_script:
- travis_retry composer self-update
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## v5.0.0 (2020-09-09)

- Added support for Laravel 8.0.

## v4.0.0 (2020-04-28)

- Added support for Laravel 7.0.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ A Laravel package for converting URLs in a given string of text into clickable l

## Requirements

- PHP >= 7.2.5
- Laravel >= 7.0
- PHP >= 7.3
- Laravel >= 8.0

## Installation

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
}
],
"require": {
"php": "^7.2.5",
"illuminate/support": "^7.0",
"php": "^7.3",
"illuminate/support": "^8.0",
"symfony/polyfill-mbstring": "^1.0",
"spatie/laravel-html": "^2.23"
"spatie/laravel-html": "^2.27"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phpunit/phpunit": "^9.3",
"mockery/mockery": "^1.3.1"
},
"autoload": {
Expand Down
12 changes: 7 additions & 5 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
Expand All @@ -13,9 +15,9 @@
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
</include>
</coverage>
</phpunit>

0 comments on commit dc214fe

Please sign in to comment.