Skip to content

Commit 57ef9c4

Browse files
Dropped PHP 8.3; Laravel 10 & 11 support;
Minimal Laravel version in 12.50
1 parent bcd0f31 commit 57ef9c4

57 files changed

Lines changed: 307 additions & 139 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php: ['8.3', '8.4', '8.5']
17-
laravel: ['10.48', '11.46', '11.47', '12.38', '12.42']
16+
php: [ '8.4', '8.5' ]
17+
laravel: [ '12.50' ]
1818
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }}
1919
steps:
2020
- name: Checkout

Changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 6.x Series
4+
5+
## Unreleased
6+
##### 2026-XX-YY
7+
8+
- Dropped PHP 8.3 support
9+
- Dropped Laravel 10 & 11 support
10+
- Changed the minimum Laravel 12 version to v12.50
11+
312
## 5.x Series
413

514
## 5.1.1

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
"issues": "https://github.com/vanilophp/framework/issues"
1616
},
1717
"require": {
18-
"php": "^8.3",
18+
"php": "^8.4",
1919
"ext-json": "*",
2020
"ext-pdo": "*",
21-
"laravel/framework": "^10.48|^11.46.2|^12.38",
21+
"laravel/framework": "^12.50",
2222
"konekt/enum": "^4.2",
2323
"konekt/concord": "^1.15",
2424
"konekt/xtend": "^2.0",
2525
"spatie/laravel-medialibrary": "^11.9",
26-
"cviebrock/eloquent-sluggable": "^10.0|^11.0|^12.0",
26+
"cviebrock/eloquent-sluggable": "^12.0",
2727
"konekt/laravel-migration-compatibility": "^1.9",
2828
"konekt/address": "^3.6.0",
2929
"konekt/customer": "^3.2",
@@ -61,8 +61,8 @@
6161
]
6262
},
6363
"require-dev": {
64-
"orchestra/testbench": "^8.0|^9.0|^10.0",
65-
"phpunit/phpunit" : "^10.0|^11.0"
64+
"orchestra/testbench": "^10.0",
65+
"phpunit/phpunit" : "^11.0|^12.0"
6666
},
6767
"scripts": {
6868
"test": "phpunit"

src/Adjustments/.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
timeout-minutes: 10
99
strategy:
1010
matrix:
11-
php: [ '8.3', '8.4', '8.5' ]
12-
laravel: [ '10.48', '11.46', '11.47', '12.38', '12.42' ]
11+
php: [ '8.4', '8.5' ]
12+
laravel: [ '12.50' ]
1313
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }}
1414
steps:
1515
- name: Checkout

src/Adjustments/Changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Vanilo Adjustments Module Changelog
22

3+
## 6.x Series
4+
5+
## Unreleased
6+
##### 2026-XX-YY
7+
8+
- Dropped PHP 8.3 support
9+
- Dropped Laravel 10 & 11 support
10+
- Changed the minimum Laravel 12 version to v12.50
11+
312
## 5.x Series
413

514
## 5.1.0

src/Adjustments/composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^8.3",
20+
"php": "^8.4",
2121
"konekt/concord": "^1.15",
2222
"konekt/enum": "^4.2",
2323
"konekt/enum-eloquent": "^1.9",
24-
"laravel/framework": "^10.48|^11.46.2|^12.38"
24+
"laravel/framework": "^12.50"
2525
},
2626
"require-dev": {
27-
"phpunit/phpunit": "^10.0|^11.0",
28-
"orchestra/testbench": "^8.0|^9.0|^10.0"
27+
"phpunit/phpunit": "^11.0|^12.0",
28+
"orchestra/testbench": "^10.0"
2929
},
3030
"autoload": {
3131
"psr-4": { "Vanilo\\Adjustments\\": "" }

src/Cart/.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
timeout-minutes: 10
99
strategy:
1010
matrix:
11-
php: [ '8.3', '8.4', '8.5' ]
12-
laravel: [ '10.48', '11.46', '11.47', '12.38', '12.42' ]
11+
php: [ '8.4', '8.5' ]
12+
laravel: [ '12.50' ]
1313
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }}
1414
steps:
1515
- name: Checkout

src/Cart/Changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Vanilo Cart Module Changelog
22

3+
## 6.x Series
4+
5+
## Unreleased
6+
##### 2026-XX-YY
7+
8+
- Dropped PHP 8.3 support
9+
- Dropped Laravel 10 & 11 support
10+
- Changed the minimum Laravel 12 version to v12.50
11+
312
## 5.x Series
413

514
## 5.1.0

src/Cart/composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^8.3",
20+
"php": "^8.4",
2121
"konekt/concord": "^1.15",
2222
"konekt/enum": "^4.2",
23-
"laravel/framework": "^10.48|^11.46.2|^12.38",
24-
"vanilo/contracts": "^5.1",
25-
"vanilo/support": "^5.1"
23+
"laravel/framework": "^12.50",
24+
"vanilo/contracts": "^6.0",
25+
"vanilo/support": "^6.0"
2626
},
2727
"require-dev": {
2828
"ext-sqlite3": "*",
29-
"phpunit/phpunit": "^10.0|^11.0",
30-
"orchestra/testbench": "^8.0|^9.0|^10.0"
29+
"phpunit/phpunit": "^11.0|^12.0",
30+
"orchestra/testbench": "^10.0"
3131
},
3232
"autoload": {
3333
"psr-4": { "Vanilo\\Cart\\": "" }

src/Category/.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
timeout-minutes: 10
99
strategy:
1010
matrix:
11-
php: [ '8.3', '8.4', '8.5' ]
12-
laravel: [ '10.48', '11.46', '11.47', '12.38', '12.42' ]
11+
php: [ '8.4', '8.5' ]
12+
laravel: [ '12.50' ]
1313
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }}
1414
steps:
1515
- name: Checkout

0 commit comments

Comments
 (0)