-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
39 lines (39 loc) · 1.24 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
{
"name": "silvershop/geocoding",
"description": "Geocoding support for SilverShop.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "ecommerce", "shop", "geocoding", "address", "ip"],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"silvershop/core": "^4",
"betterbrief/silverstripe-googlemapfield": "^2",
"willdurand/geocoder": "^4.0",
"geocoder-php/chain-provider": "^4.1",
"geocoder-php/google-maps-provider": "^4.4",
"geocoder-php/free-geoip-provider": "^4.2",
"geocoder-php/host-ip-provider": "^4.0",
"guzzlehttp/guzzle": "^7.0",
"php-http/guzzle7-adapter": "^1.0 || ^2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7.2"
},
"license": "BSD-3-Clause",
"authors": [ {
"name": "SilverShop Contributors",
"homepage": "https://github.com/silvershop/silvershop-stock/graphs/contributors"
}],
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
},
"autoload": {
"psr-4": {
"SilverShop\\Geocoding\\": "src/",
"SilverShop\\Geocoding\\Tests\\": "tests/unit/"
}
}
}