-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 loc) · 1.06 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": "wnx/php-swiss-cantons",
"description": "Search for Swiss Cantons by name or abbreviation.",
"homepage": "https://github.com/stefanzweifel/php-swiss-cantons",
"keywords":
[
"swiss",
"cantons",
"canton"
],
"authors": [
{
"name": "Stefan Zweifel",
"email": "[email protected]",
"homepage": "https://stefanzweifel.dev",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-zip": "*",
"symfony/http-client": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"friendsofphp/php-cs-fixer": "^3",
"league/csv": "^9.7",
"symfony/console": "^6.0",
"rector/rector": "^0.15.24",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Wnx\\SwissCantons\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wnx\\SwissCantons\\Tests\\": "tests/"
}
},
"license": "MIT"
}