mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-11 10:44:32 +00:00
Added 5.8.* compatibility Updated dependency versions Added phpunit result cache to gitignore
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "bumbummen99/shoppingcart",
|
|
"description": "Laravel Shoppingcart",
|
|
"keywords": ["laravel", "shoppingcart"],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Rob Gloudemans",
|
|
"email": "info@robgloudemans.nl"
|
|
},
|
|
{
|
|
"name": "Patrick Henninger",
|
|
"email": "privat@skyraptor.eu"
|
|
}
|
|
],
|
|
"require": {
|
|
"illuminate/support": "5.1.*||5.2.*||5.3.*||5.4.*||5.5.*||5.6.*||5.7.*||5.8.*",
|
|
"illuminate/session": "5.1.*||5.2.*||5.3.*||5.4.*||5.5.*||5.6.*||5.7.*||5.8.*",
|
|
"illuminate/events": "5.1.*||5.2.*||5.3.*||5.4.*||5.5.*||5.6.*||5.7.*||5.8.*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~5.0||~6.0||~7.0||~8.0",
|
|
"mockery/mockery": "^1.0",
|
|
"orchestra/testbench": "^3.1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Gloudemans\\Shoppingcart\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Gloudemans\\Tests\\Shoppingcart\\": "tests/"
|
|
}
|
|
},
|
|
"suggest": {
|
|
"gloudemans/notify": "Simple flash notifications for Laravel"
|
|
},
|
|
"minimum-stability": "stable",
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Gloudemans\\Shoppingcart\\ShoppingcartServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"Cart": "Gloudemans\\Shoppingcart\\Facades\\Cart"
|
|
}
|
|
}
|
|
}
|
|
}
|