Skip to content

Commit

Permalink
Merge pull request #7 from bomshteyn/master
Browse files Browse the repository at this point in the history
Add support for Laravel 7
  • Loading branch information
bomshteyn committed Apr 6, 2020
2 parents 09482e8 + b739532 commit 90045f1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `shopping-cart` will be documented in this file.

## 1.2.0 - 2020-04-05

- add support for Laravel 7

## 1.1.3 - 2020-01-16

Fixed removing non-existing item bug ([4c38021](https://github.com/treeStoneIT/shopping-cart/commit/4c3802147efbef0066e05fe2f5f2810e2d8ea32f))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# A Shopping Cart for Laravel 6
# A Database Driven Shopping Cart for Laravel

[![Latest Version on Packagist](https://img.shields.io/packagist/v/treestoneit/shopping-cart.svg?style=flat-square)](https://packagist.org/packages/treestoneit/shopping-cart)
[![Total Downloads](https://img.shields.io/packagist/dt/treestoneit/shopping-cart.svg?style=flat-square)](https://packagist.org/packages/treestoneit/shopping-cart)

This is a simple shopping cart implementation for Laravel 6. It automatically serializes your cart to the database and loads the related product models.
This is a simple shopping cart implementation for Laravel 6+. It automatically serializes your cart to the database and loads the related product models.

## Usage

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "treestoneit/shopping-cart",
"description": "An easy-to-use shopping cart for Laravel 6.",
"description": "An easy-to-use shopping cart for Laravel",
"keywords": [
"treestoneit",
"shopping-cart",
Expand All @@ -19,13 +19,13 @@
"require": {
"php": "^7.1",
"ext-json": "*",
"illuminate/support": "^6",
"illuminate/contracts": "^6",
"illuminate/database": "^6"
"illuminate/config": "^6.0|^7.0",
"illuminate/database": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0"
},
"require-dev": {
"orchestra/testbench": "4.*",
"phpunit/phpunit": "^8.0"
"orchestra/testbench": "^4.0|^5.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 90045f1

Please sign in to comment.