-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
39 lines (39 loc) · 1.09 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
{
"name": "divineomega/laravel-extendable-basket",
"description": "🛒 Laravel Extendable Basket provides several abstract classes that implement basic ecommerce basket functionality",
"type": "library",
"require": {
"php": ">=7.1",
"laravel/framework": "^5.5||^6.0||^7.0||^8.0||^9.0"
},
"require-dev": {
"orchestra/testbench": "~5.0",
"phpunit/phpunit": "^8.0",
"php-coveralls/php-coveralls": "^2.1",
"doctrine/dbal": "^1.0||^2.0"
},
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Jordan Hall",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DivineOmega\\LaravelExtendableBasket\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"DivineOmega\\LaravelExtendableBasket\\Tests\\": "./tests/"
}
},
"extra": {
"laravel": {
"providers": [
"DivineOmega\\LaravelExtendableBasket\\Providers\\LaravelExtendableBasketServiceProvider"
]
}
}
}