-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.62 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.62 KB
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
{
"name": "farzai/geonames",
"type": "library",
"description": "A PHP library for downloading and converting Geonames data.",
"keywords": ["geonames", "countries", "data"],
"homepage": "https://github.com/farzai/geonames-php",
"require": {
"php": "^8.1",
"symfony/console": "^6.0 || ^7.0",
"farzai/transport": "^2.1"
},
"require-dev": {
"laravel/pint": "^1.2",
"pestphp/pest": "^2.34",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"spatie/ray": "^1.28",
"symfony/http-client": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"Farzai\\Geonames\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Farzai\\Geonames\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "parsilver",
"role": "Developer"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint",
"analyse": "vendor/bin/phpstan analyse"
},
"suggest": {
"ext-zip": "Required to extract the downloaded data.",
"mongodb/mongodb": "Required for MongoDB output format support."
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT"
}