-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 1.56 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
{
"name": "swisnl/melvin",
"type": "library",
"description": "NDW Melvin API client",
"keywords": [
"swisnl",
"ndw",
"melvin",
"api"
],
"homepage": "https://github.com/swisnl/melvin",
"license": "MIT",
"authors": [
{
"name": "Jasper Zonneveld",
"email": "jasper@swis.nl",
"homepage": "https://github.com/JaZo",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"jmikola/geojson": "^1.0",
"myclabs/php-enum": "^1.8",
"php-http/discovery": "^1.8",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^2.0",
"opis/json-schema": "^2.3",
"phpunit/phpunit": "^10.5",
"swisnl/php-http-fixture-client": "^3.0"
},
"autoload": {
"psr-4": {
"Swis\\Melvin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Swis\\Melvin\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit --testsuite=default",
"check-style": "php-cs-fixer fix --dry-run -v",
"fix-style": "php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-master": "1.4-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}