-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.28 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
{
"name": "bakame-php/geolocation",
"description": "process geolocation",
"keywords": [
"geolocation",
"sunrise",
"sunset",
"zenith"
],
"homepage": "https://github.com/bakame-php/geolocation",
"license": "MIT",
"authors": [
{
"name": "Ignace Nyamagana Butera",
"email": "[email protected]",
"homepage": "https://github.com/nyamsprod",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"league/geotools": "^0.8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"nesbot/carbon": "^2.32",
"phpunit/phpunit": "^9.0",
"psalm/plugin-phpunit": "^0.10.1",
"vimeo/psalm": "^3.11"
},
"autoload": {
"psr-4": {
"Bakame\\Geolocation\\": "src"
}
},
"scripts": {
"phpcs-fix": "php-cs-fixer fix -vvv --allow-risky=yes --ansi",
"phpcs": "php-cs-fixer fix -vvv --allow-risky=yes --ansi --diff --dry-run ",
"psalm": "psalm --show-info=true",
"phpunit": "phpunit --coverage-text",
"test": [
"@phpcs",
"@psalm",
"@phpunit"
]
},
"config": {
"sort-packages": true
}
}