Skip to content

Commit 1bf6c02

Browse files
authored
Merge pull request #14 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents 2371603 + 1d87d5f commit 1bf6c02

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

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 >= 8.0
10-
- Laravel >= 9.0
9+
- PHP >= 8.1
10+
- Laravel >= 10.0
1111

1212
## Installation
1313

composer.json

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
{
22
"name": "osiemsiedem/laravel-autolink",
33
"description": "A Laravel package for converting URLs in a given string of text into clickable links.",
4-
"keywords": ["laravel", "autolink", "html", "email", "url", "www"],
4+
"keywords": [
5+
"laravel",
6+
"autolink",
7+
"html",
8+
"email",
9+
"url",
10+
"www"
11+
],
512
"license": "MIT",
613
"authors": [
714
{
@@ -11,18 +18,18 @@
1118
}
1219
],
1320
"require": {
14-
"php": "^8.0",
15-
"illuminate/support": "^9.0",
16-
"symfony/polyfill-mbstring": "^1.0",
17-
"spatie/laravel-html": "^3.1"
21+
"php": "^8.1",
22+
"illuminate/support": "^10.0",
23+
"symfony/polyfill-mbstring": "^1.27",
24+
"spatie/laravel-html": "^3.2"
1825
},
1926
"require-dev": {
2027
"phpunit/phpunit": "^9.5.10",
2128
"mockery/mockery": "^1.4.4"
2229
},
2330
"autoload": {
24-
"psr-4" : {
25-
"OsiemSiedem\\Autolink\\" : "src/"
31+
"psr-4": {
32+
"OsiemSiedem\\Autolink\\": "src/"
2633
},
2734
"files": [
2835
"src/helpers.php"

0 commit comments

Comments
 (0)