-
Notifications
You must be signed in to change notification settings - Fork 519
/
composer.json
89 lines (89 loc) · 2.73 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "geocoder-php/geocoder",
"description": "A development package for all providers",
"license": "MIT",
"type": "library",
"keywords": [
"geocoder",
"geocoding",
"abstraction",
"geoip"
],
"authors": [
{
"name": "William Durand",
"email": "william.durand1@gmail.com"
}
],
"homepage": "http://geocoder-php.org",
"require": {
"php": "^8.0",
"igorw/get-in": "^1.0",
"php-http/discovery": "^1.17",
"php-http/promise": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"cache/array-adapter": "^1.0",
"cache/simple-cache-bridge": "^1.0",
"cache/void-adapter": "^1.0",
"geocoder-php/provider-integration-tests": "^1.6.3",
"geoip2/geoip2": "^2.0|^3.0",
"nyholm/nsa": "^1.1",
"nyholm/psr7": "^1.0",
"php-cs-fixer/shim": "^3.22",
"php-http/message": "^1.0",
"php-http/message-factory": "^1.0.2",
"php-http/mock-client": "^1.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.6",
"symfony/http-client": "^5.4 || ^6.4 || ^7.0",
"symfony/stopwatch": "^5.4 || ^6.4 || ^7.0"
},
"suggest": {
"ext-geoip": "Enabling the geoip extension allows you to use the MaxMindProvider.",
"ext-json": "If you want to use HostIp",
"ext-simplexml": "If you want to use HostIpXml",
"geoip/geoip": "If you are going to use the MaxMindBinaryProvider (conflict with geoip extension).",
"geoip2/geoip2": "If you are going to use the GeoIP2DatabaseProvider.",
"symfony/stopwatch": "If you want to use the TimedGeocoder"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Geocoder\\": [
"src/Common",
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"Geocoder\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": false
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"cs": "vendor/bin/php-cs-fixer fix -v --dry-run",
"cs:fix": "vendor/bin/php-cs-fixer fix -v",
"test": "vendor/bin/phpunit"
}
}