Skip to content

Commit ba2c5c4

Browse files
authored
Merge pull request #4 from DivineOmega/codex/upgrade-package-for-laravel-10-support
Add Laravel 10 compatibility
2 parents f23ebe6 + 938ec4a commit ba2c5c4

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ Just install the latest version using composer.
1616
composer require divineomega/laravel-extendable-basket
1717
```
1818

19+
## Compatibility
20+
21+
This package supports Laravel versions 5.5 through 10 and requires PHP 8.1 or higher.
22+
1923
## Setup
2024

2125
You need to perform various setup steps in order to make use of this package.

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
"description": "🛒 Laravel Extendable Basket provides several abstract classes that implement basic ecommerce basket functionality",
44
"type": "library",
55
"require": {
6-
"php": ">=7.1",
7-
"laravel/framework": "^5.5||^6.0||^7.0||^8.0||^9.0"
6+
"php": ">=8.1",
7+
"laravel/framework": "^5.5||^6.0||^7.0||^8.0||^9.0||^10.0"
88
},
99
"require-dev": {
10-
"orchestra/testbench": "~5.0",
11-
"phpunit/phpunit": "^8.0",
10+
"orchestra/testbench": "^8.0",
11+
"phpunit/phpunit": "^9.0",
1212
"php-coveralls/php-coveralls": "^2.1",
13-
"doctrine/dbal": "^1.0||^2.0"
13+
"doctrine/dbal": "^1.0||^2.0||^3.0"
1414
},
1515
"license": "LGPL-3.0-only",
1616
"authors": [

0 commit comments

Comments
 (0)