Skip to content

Commit cda63b6

Browse files
committed
Add support for Laravel 11
1 parent 4c0550b commit cda63b6

File tree

4 files changed

+18
-21
lines changed

4 files changed

+18
-21
lines changed

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+
## v8.0.0 (2024-03-20)
4+
5+
- Added support for Laravel 11.0.
6+
37
## v7.1.0 (2023-12-28)
48

59
- Fixed cursor state after parsing a text with multiple URLs.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Autolink for Laravel
22

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)
44

55
A Laravel package for converting URLs in a given string of text into clickable links.
66

77
## Requirements
88

9-
- PHP >= 8.1
10-
- Laravel >= 10.0
9+
- PHP >= 8.2
10+
- Laravel >= 11.0
1111

1212
## Installation
1313

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
}
1919
],
2020
"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"
2525
},
2626
"require-dev": {
27-
"phpunit/phpunit": "^9.5.10",
28-
"mockery/mockery": "^1.4.4"
27+
"phpunit/phpunit": "^10.5",
28+
"mockery/mockery": "^1.6"
2929
},
3030
"autoload": {
3131
"psr-4": {

phpunit.xml.dist

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,16 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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"
64
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">
136
<testsuites>
147
<testsuite name="Laravel Autolink Test Suite">
158
<directory suffix="Test.php">./tests</directory>
169
</testsuite>
1710
</testsuites>
18-
<coverage processUncoveredFiles="true">
11+
<source>
1912
<include>
20-
<directory suffix=".php">./src</directory>
13+
<directory>./src</directory>
2114
</include>
22-
</coverage>
15+
</source>
2316
</phpunit>

0 commit comments

Comments
 (0)