File tree Expand file tree Collapse file tree 5 files changed +27
-8
lines changed Expand file tree Collapse file tree 5 files changed +27
-8
lines changed Original file line number Diff line number Diff line change 13
13
strategy :
14
14
matrix :
15
15
php-version : [8.2, 8.3]
16
- laravel-version : ['^10.0', '^11.0']
16
+ laravel-version : ['^10.0', '^11.0', '^12.0' ]
17
17
include :
18
+ - laravel-version : ' ^12.0'
19
+ testbench-version : ' ^10.0'
18
20
- laravel-version : ' ^11.0'
19
21
testbench-version : ' ^9.0'
20
22
- laravel-version : ' ^10.0'
Original file line number Diff line number Diff line change @@ -5,6 +5,23 @@ All notable changes to `kaibatech/viettel-cloud-s3` will be documented in this f
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.0.1] - 2025-01-30
9
+
10
+ ### Added
11
+ - Support for Laravel 12.x compatibility
12
+ - Support for PHPUnit ^11.0 compatibility
13
+ - Support for Orchestra Testbench ^10.0 for Laravel 12 testing
14
+
15
+ ### Updated
16
+ - Updated GitHub Actions workflow to test Laravel 12 compatibility
17
+ - Extended compatibility matrix to include Laravel 10.x, 11.x, and 12.x
18
+ - Updated requirements to support Laravel ^10.0 || ^11.0 || ^12.0
19
+
20
+ ### Requirements
21
+ - PHP ^8.2
22
+ - Laravel ^10.0 || ^11.0 || ^12.0
23
+ - League/Flysystem ^3.0
24
+
8
25
## [ 1.0.0] - 2025-05-26
9
26
10
27
### Added
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ This guide will walk you through installing and configuring the **Viettel Cloud
5
5
## Prerequisites
6
6
7
7
- ** PHP** : 8.2 or higher
8
- - ** Laravel** : 10.x or 11 .x
8
+ - ** Laravel** : 10.x, 11.x or 12 .x
9
9
- ** Composer** : Latest version
10
10
- ** Viettel Cloud Storage Credentials** : Access key, secret key, and endpoint
11
11
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ A Laravel Storage driver for **Viettel Cloud Object Storage** and other **VIPCor
16
16
- ✅ ** URL generation** for public file access
17
17
- ✅ ** Custom AWS v4 signature calculation** compatible with VIPCore/EMC ViPR
18
18
- ✅ ** UNSIGNED-PAYLOAD support** required by some S3-compatible services
19
- - ✅ ** Laravel 10.x & 11 .x support**
19
+ - ✅ ** Laravel 10.x, 11.x & 12 .x support**
20
20
21
21
## 🚀 Installation
22
22
@@ -352,7 +352,7 @@ Check `storage/logs/laravel.log` for detailed error information.
352
352
## 📋 Requirements
353
353
354
354
- ** PHP** : ^8.2
355
- - ** Laravel** : ^10.0 || ^11.0
355
+ - ** Laravel** : ^10.0 || ^11.0 || ^12.0
356
356
- ** League/Flysystem** : ^3.0
357
357
358
358
## 🤝 Contributing
Original file line number Diff line number Diff line change 27
27
},
28
28
"require" : {
29
29
"php" : " ^8.2" ,
30
- "illuminate/support" : " ^10.0|^11.0" ,
31
- "illuminate/filesystem" : " ^10.0|^11.0" ,
30
+ "illuminate/support" : " ^10.0|^11.0|^12.0 " ,
31
+ "illuminate/filesystem" : " ^10.0|^11.0|^12.0 " ,
32
32
"league/flysystem" : " ^3.0"
33
33
},
34
34
"require-dev" : {
35
- "phpunit/phpunit" : " ^10.0" ,
36
- "orchestra/testbench" : " ^8.0|^9.0"
35
+ "phpunit/phpunit" : " ^10.0|^11.0 " ,
36
+ "orchestra/testbench" : " ^8.0|^9.0|^10.0 "
37
37
},
38
38
"autoload" : {
39
39
"psr-4" : {
You can’t perform that action at this time.
0 commit comments