File tree Expand file tree Collapse file tree 6 files changed +21
-16
lines changed Expand file tree Collapse file tree 6 files changed +21
-16
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,13 @@ root = true
33[* ]
44charset = utf-8
55end_of_line = lf
6- indent_size = 4
7- indent_style = space
86insert_final_newline = true
7+ indent_style = space
8+ indent_size = 4
99trim_trailing_whitespace = true
1010
1111[* .md ]
1212trim_trailing_whitespace = false
1313
14- [* .yml ]
15- indent_style = space
14+ [* .{yml,yaml} ]
1615indent_size = 2
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ language: php
33sudo : false
44
55php :
6- - 7.2
76 - 7.3
7+ - 7.4
88
99before_script :
1010 - travis_retry composer self-update
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change 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"
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 >
You can’t perform that action at this time.
0 commit comments