-
Notifications
You must be signed in to change notification settings - Fork 166
/
composer.json
41 lines (41 loc) · 1.14 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "ITwrx/laravel-shop",
"description": "Package set to provide shop or e-commerce functionality (such as CART, ORDERS, TRANSACTIONS and ITEMS) to Laravel for customizable builds.",
"license": "MIT",
"keywords": ["shop","laravel","cart","orders","transactions","paypal","e-commerce","shopping cart","ecommerce","shopping"],
"authors": [
{
"name": "Amsgames, LLC",
"email": "[email protected]"
},
{
"name": "Alejandro Mostajo",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/console": "~5.0",
"illuminate/support": "~5.0",
"ITwrx/laravel-shop-gateway-paypal": "1.0.*"
},
"autoload": {
"classmap": [
"src/Commands"
],
"psr-4": {
"Amsgames\\LaravelShop\\": "src"
}
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"ITwrx\\LaravelShop\\LaravelShopProvider"
],
"aliases": {
"Shop": "ITwrx\\LaravelShop\\LaravelShopFacade"
}
}
}
}