forked from amosmos/laravel-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 949 Bytes
/
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
{
"name": "boaideas/laravel-shopify",
"description": "An easier to use rocket-code/shopify for Shopify integration in Laravel applications",
"keywords": [
"BOA Ideas",
"laravel-shopify",
"laravel",
"shopify",
"api"
],
"homepage": "https://github.com/amosmos/laravel-shopify",
"license": "MIT",
"authors": [
{
"name": "Amos Shacham",
"email": "[email protected]",
"homepage": "https://boaideas.com",
"role": "Developer"
}
],
"require": {
"php" : "^7.0",
"rocket-code/shopify": "^2.0"
},
"autoload": {
"psr-4": {
"BOAIdeas\\Shopify\\": "src"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"BOAIdeas\\Shopify\\ShopifyServiceProvider"
]
}
}
}