-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
42 lines (42 loc) · 1.17 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
42
{
"name": "moirei/laravel-google-merchant-api",
"description": "Laravel Google Merchant Products API for Google Shopping.",
"homepage": "https://github.com/augustusnaz/laravel-google-merchant-api",
"license": "MIT",
"authors": [
{
"name": "Augustus Okoye",
"email": "augustusokoye@moirei.com",
"role": "Developer"
}
],
"keywords":[
"Laravel",
"Google Merchant API",
"Google Shopping API",
"moirei.com"
],
"require": {
"php": "^7.2|^8.0",
"illuminate/support": "~5.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/cache": "~5.0|^6.0|^7.0|^8.0|^9.0",
"guzzlehttp/guzzle":"~5.3|^6.5|^7.0",
"google/apiclient": "^2.4"
},
"autoload": {
"psr-4": {
"MOIREI\\GoogleMerchantApi\\": "src"
}
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"MOIREI\\GoogleMerchantApi\\GoogleMerchantApiServiceProvider"
],
"aliases": {
"ProductsApi": "MOIREI\\GoogleMerchantApi\\Facades\\ProductsApi"
}
}
}
}