-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
70 lines (70 loc) · 1.64 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
{
"name": "geocodio/geocodio-library-php",
"description": "geocod.io geocoding API library",
"keywords": [
"geocodio",
"geocodio-library-php"
],
"homepage": "https://github.com/geocodio/geocodio-library-php",
"license": "MIT",
"authors": [
{
"name": "Mathias Hansen",
"email": "hello@geocod.io",
"homepage": "https://www.geocod.io",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"laravel/pint": "^1.17",
"pestphp/pest": "^3.0",
"phpunit/phpunit": "^11.0",
"projektgopher/whisky": "^0.7.0",
"rector/rector": "^1.2",
"symfony/var-dumper": "^4.3"
},
"autoload": {
"psr-4": {
"Geocodio\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Geocodio\\Tests\\": "tests"
}
},
"scripts": {
"post-install-cmd": [
"whisky update"
],
"post-update-cmd": [
"whisky update"
],
"test": "vendor/bin/pest",
"toc": "markdown-toc README.md -i",
"format": [
"pint",
"rector process --no-diffs"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Geocodio\\GeocodioServiceProvider"
],
"aliases": {
"Geocodio": "Geocodio\\GeocodioFacade"
}
}
}
}