-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
28 lines (28 loc) · 905 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
{
"name": "i-lateral/silverstripe-googleshoppingfeed",
"description": "Simple support for a SilverStripe site to generate a Google Shopping XML feed allowing you to push your products to Google's shopping service automatically",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "google", "shopping", "PPC", "adwords"],
"homepage": "https://github.com/i-lateral/silverstripe-googleshoppingfeed",
"license": "BSD-3-Clause",
"authors": [{
"name": "Morven Lewis-Everley",
"email": "morven@ilateral.co.uk"
}],
"require": {
"silverstripe/framework": "^4.0",
"tractorcow/silverstripe-autocomplete": "^4.0"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"ilateral\\SilverStripe\\GoogleShoppingFeed\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}