-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
55 lines (55 loc) · 1.5 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "dynamic/silverstripe-geocoder",
"description": "SilverStripe wrapper for Geocoder",
"license": "BSD-3-Clause",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"geocoder",
"geocoding"
],
"authors": [
{
"name": "Dynamic",
"email": "[email protected]",
"homepage": "https://www.dynamicagency.com"
}
],
"require": {
"dynamic/silverstripe-country-dropdown-field": "^2",
"geocoder-php/google-maps-provider": "^4.7",
"guzzlehttp/guzzle": "^7.4",
"php-http/guzzle7-adapter": "^1.0",
"php-http/message": "^1.13",
"silverstripe/recipe-core": "^5.0"
},
"require-dev": {
"silverstripe/recipe-testing": "^3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dynamic\\SilverStripeGeocoder\\": "src/",
"Dynamic\\SilverStripeGeocoder\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"php-http/discovery": true,
"silverstripe/vendor-plugin": true,
"silverstripe/recipe-plugin": true
},
"process-timeout": 600
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
}
}