-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 920 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 920 Bytes
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
{
"name": "rankfoundry/laravel-dashboard-sellbrite-tile",
"type": "library",
"license": "MIT",
"description": "Laravel Dashboard Tiles for SellBrite",
"keywords": ["amazon", "ebay", "walmart", "ecommerce", "sellbrite", "shopify", "laravel dashboard tile"],
"homepage": "https://rankfoundry.com",
"authors": [
{
"name": "Kevin Fairbanks",
"email": "kevin@rankfoundry.com"
}
],
"require": {
"php": "^7.4",
"spatie/laravel-dashboard": "^2.0"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"RankFoundry\\SellBriteTile\\SellBriteServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"RankFoundry\\SellBriteTile\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}