-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
44 lines (44 loc) · 1.27 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
{
"name": "antistatique/swisstopo",
"description": "Convert GPS (WGS84) to Swiss (LV03 and LV95) coordinates (and vice versa)",
"license": "MIT",
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0.0",
"phpunit/php-code-coverage": "^9.2.0",
"friendsofphp/php-cs-fixer": "^3.21",
"phpmd/phpmd": "^2.8",
"sebastian/phpcpd": "^6.0",
"php-coveralls/php-coveralls": "^2.1",
"php-mock/php-mock-phpunit": "^2.4",
"vimeo/psalm": "^4.29",
"phpstan/phpstan-deprecation-rules": "^0.12.2"
},
"autoload": {
"psr-4": {
"Antistatique\\Swisstopo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Antistatique\\Swisstopo\\Tests\\": "tests/"
}
},
"homepage": "https://github.com/antistatique/swisstopo",
"authors": [
{
"name": "Antistatique SA",
"email": "[email protected]",
"homepage": "https://www.antistatique.net",
"role": "Sponsor"
},
{
"name": "Kevin Wenger",
"email": "[email protected]",
"homepage": "http://kevin-wenger.ch",
"role": "Author & Maintainer"
}
]
}