-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (38 loc) · 996 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
{
"name": "unopim/shopify-connector",
"description": "A Shopify integration package for Unopim, enabling seamless product data synchronization between Unopim and Shopify.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "UnoPim",
"email": "support@webkul.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/unopim/unopim-shopify-connector"
}
],
"autoload": {
"psr-4": {
"Webkul\\Shopify\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Webkul\\Shopify\\Providers\\ShopifyServiceProvider"
],
"aliases": {}
}
},
"scripts": {
"post-autoload-dump": [
"@php artisan vendor:publish --tag=config --force",
"@php artisan shopify-package:install"
]
},
"minimum-stability": "dev"
}