Skip to content

Commit d249046

Browse files
committed
Added Laravel 12 support
1 parent 6e80916 commit d249046

File tree

2 files changed

+5
-16
lines changed

2 files changed

+5
-16
lines changed

README.md

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
We forked the repository due to abandoned state of the project in order to fix some issues we were having:
66

77
- [Fix a S3 bug returning chunk with a different than expected chunk size](https://github.com/soarecostin/file-vault/pull/20)
8-
- Add Laravel 9, PHP 8 and Flysystem v23 support
8+
- Add Laravel 9+, PHP 8 and Flysystem v23 support
99

1010
Refer to the original repo for the history of opened and closed issues
1111

@@ -17,26 +17,15 @@ With this package, you can encrypt and decrypt files of any size in your Laravel
1717

1818
## Installation and usage
1919

20-
This package requires PHP 7.2 and Laravel 5.8 or higher.
20+
This package requires PHP 8.0 and Laravel 10 or higher (use a version <= 1.4 for older support)
2121

2222
You can install the original package via composer:
2323

2424
```bash
2525
composer require soarecostin/file-vault
2626
```
2727

28-
or this fork by adding the reference to the github repo in your composer.json:
29-
30-
```php
31-
"repositories": [
32-
{
33-
"type": "vcs",
34-
"url": "https://github.com/tiknil/file-vault"
35-
}
36-
],
37-
```
38-
39-
and then
28+
or this fork:
4029

4130
```bash
4231
composer require tiknil/file-vault

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
}
2929
],
3030
"require": {
31-
"php": "^7.2|^8.0",
32-
"illuminate/support": "5.8.* || 6.*.* || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
31+
"php": "^8.0",
32+
"illuminate/support": "^10.0|^11.0|^12.0"
3333
},
3434
"require-dev": {
3535
"orchestra/testbench": "^5.0|^6.0|^7.0",

0 commit comments

Comments
 (0)