File tree Expand file tree Collapse file tree 4 files changed +18
-21
lines changed Expand file tree Collapse file tree 4 files changed +18
-21
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
3
+ ## v8.0.0 (2024-03-20)
4
+
5
+ - Added support for Laravel 11.0.
6
+
3
7
## v7.1.0 (2023-12-28)
4
8
5
9
- Fixed cursor state after parsing a text with multiple URLs.
Original file line number Diff line number Diff line change 1
1
# Autolink for Laravel
2
2
3
- [ ![ Build Status ] ( https://travis-ci.org/osiemsiedem/laravel-autolink.svg?branch=master )] ( https://travis-ci.org/osiemsiedem/laravel-autolink ) [ ![ codecov ] ( https://codecov.io/gh/osiemsiedem/laravel-autolink/branch/master/graph/badge.svg )] ( https://codecov.io/gh/osiemsiedem/laravel-autolink ) [ ![ Latest Stable Version] ( https://poser.pugx.org/osiemsiedem/laravel-autolink/v/stable )] ( https://packagist.org/packages/osiemsiedem/laravel-autolink ) [ ![ License] ( https://poser.pugx.org/osiemsiedem/laravel-autolink/license )] ( https://packagist.org/packages/osiemsiedem/laravel-autolink )
3
+ [ ![ Latest Stable Version] ( https://poser.pugx.org/osiemsiedem/laravel-autolink/v/stable )] ( https://packagist.org/packages/osiemsiedem/laravel-autolink ) [ ![ License] ( https://poser.pugx.org/osiemsiedem/laravel-autolink/license )] ( https://packagist.org/packages/osiemsiedem/laravel-autolink )
4
4
5
5
A Laravel package for converting URLs in a given string of text into clickable links.
6
6
7
7
## Requirements
8
8
9
- - PHP >= 8.1
10
- - Laravel >= 10 .0
9
+ - PHP >= 8.2
10
+ - Laravel >= 11 .0
11
11
12
12
## Installation
13
13
Original file line number Diff line number Diff line change 18
18
}
19
19
],
20
20
"require" : {
21
- "php" : " ^8.1 " ,
22
- "illuminate/support" : " ^10 .0" ,
23
- "symfony/polyfill-mbstring" : " ^1.27 " ,
24
- "spatie/laravel-html" : " ^3.2 "
21
+ "php" : " ^8.2 " ,
22
+ "illuminate/support" : " ^11 .0" ,
23
+ "symfony/polyfill-mbstring" : " ^1.29 " ,
24
+ "spatie/laravel-html" : " ^3.6 "
25
25
},
26
26
"require-dev" : {
27
- "phpunit/phpunit" : " ^9.5.10 " ,
28
- "mockery/mockery" : " ^1.4.4 "
27
+ "phpunit/phpunit" : " ^10.5 " ,
28
+ "mockery/mockery" : " ^1.6 "
29
29
},
30
30
"autoload" : {
31
31
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
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"
5
- backupStaticAttributes =" false"
3
+ xsi : noNamespaceSchemaLocation =" vendor/phpunit/phpunit/phpunit.xsd"
6
4
bootstrap =" vendor/autoload.php"
7
- colors =" true"
8
- convertErrorsToExceptions =" true"
9
- convertNoticesToExceptions =" true"
10
- convertWarningsToExceptions =" true"
11
- processIsolation =" false"
12
- stopOnFailure =" false" >
5
+ colors =" true" >
13
6
<testsuites >
14
7
<testsuite name =" Laravel Autolink Test Suite" >
15
8
<directory suffix =" Test.php" >./tests</directory >
16
9
</testsuite >
17
10
</testsuites >
18
- <coverage processUncoveredFiles = " true " >
11
+ <source >
19
12
<include >
20
- <directory suffix = " .php " >./src</directory >
13
+ <directory >./src</directory >
21
14
</include >
22
- </coverage >
15
+ </source >
23
16
</phpunit >
You can’t perform that action at this time.
0 commit comments