Skip to content

Commit 05f831c

Browse files
authored
Merge pull request #1283 from laravel-shift/l13-compatibility
Laravel 13.x Compatibility
2 parents 5abe451 + b5aa212 commit 05f831c

File tree

1 file changed

+60
-61
lines changed

1 file changed

+60
-61
lines changed

composer.json

Lines changed: 60 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,64 @@
11
{
2-
"name": "unisharp/laravel-filemanager",
3-
"description": "A file upload/editor intended for use with Laravel 5 to 10 and CKEditor / TinyMCE",
4-
"license": "MIT",
5-
"keywords": [
6-
"filemanager",
7-
"laravel",
8-
"ckeditor",
9-
"tinymce",
10-
"upload",
11-
"file",
12-
"manager",
13-
"image"
14-
],
15-
"authors": [
16-
{
17-
"name": "Trevor Sawler",
18-
"email": "trevor.sawler@gmail.com"
2+
"name": "unisharp/laravel-filemanager",
3+
"description": "A file upload/editor intended for use with Laravel 5 to 10 and CKEditor / TinyMCE",
4+
"license": "MIT",
5+
"keywords": [
6+
"filemanager",
7+
"laravel",
8+
"ckeditor",
9+
"tinymce",
10+
"upload",
11+
"file",
12+
"manager",
13+
"image"
14+
],
15+
"authors": [
16+
{
17+
"name": "Trevor Sawler",
18+
"email": "trevor.sawler@gmail.com"
19+
},
20+
{
21+
"name": "UniSharp Ltd.",
22+
"email": "opensource@unisharp.com"
23+
}
24+
],
25+
"require": {
26+
"php": ">=8.1",
27+
"ext-exif": "*",
28+
"ext-fileinfo": "*",
29+
"intervention/image": ">=3.11.3",
30+
"illuminate/config": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
31+
"illuminate/filesystem": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
32+
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
33+
"illuminate/http": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
34+
"illuminate/container": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
35+
"league/flysystem": ">=2.0.0"
1936
},
20-
{
21-
"name": "UniSharp Ltd.",
22-
"email": "opensource@unisharp.com"
23-
}
24-
],
25-
"require": {
26-
"php": ">=8.1",
27-
"ext-exif": "*",
28-
"ext-fileinfo": "*",
29-
"intervention/image": ">=3.11.3",
30-
"illuminate/config": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
31-
"illuminate/filesystem": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
32-
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
33-
"illuminate/http": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
34-
"illuminate/container": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
35-
"league/flysystem": ">=2.0.0"
36-
},
37-
"require-dev": {
38-
"phpunit/phpunit": "~8.0",
39-
"mockery/mockery": "~1.3.0",
40-
"squizlabs/php_codesniffer": "^3.1"
41-
},
42-
"suggest": {
43-
"ext-gd": "to use GD library based image processing.",
44-
"ext-imagick": "to use Imagick based image processing."
45-
},
46-
"autoload": {
47-
"psr-4": {
48-
"UniSharp\\LaravelFilemanager\\": "src/"
49-
}
50-
},
51-
"autoload-dev": {
52-
"psr-4": {
53-
"Tests\\": "tests"
54-
}
55-
},
56-
"extra": {
57-
"laravel": {
58-
"providers": [
59-
"UniSharp\\LaravelFilemanager\\LaravelFilemanagerServiceProvider"
60-
],
61-
"aliases": {
62-
}
37+
"require-dev": {
38+
"phpunit/phpunit": "~8.0",
39+
"mockery/mockery": "~1.3.0",
40+
"squizlabs/php_codesniffer": "^3.1"
41+
},
42+
"suggest": {
43+
"ext-gd": "to use GD library based image processing.",
44+
"ext-imagick": "to use Imagick based image processing."
45+
},
46+
"autoload": {
47+
"psr-4": {
48+
"UniSharp\\LaravelFilemanager\\": "src/"
49+
}
50+
},
51+
"autoload-dev": {
52+
"psr-4": {
53+
"Tests\\": "tests"
54+
}
55+
},
56+
"extra": {
57+
"laravel": {
58+
"providers": [
59+
"UniSharp\\LaravelFilemanager\\LaravelFilemanagerServiceProvider"
60+
],
61+
"aliases": []
62+
}
6363
}
64-
}
6564
}

0 commit comments

Comments
 (0)