forked from ricbra/knmi-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 913 Bytes
/
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
{
"name": "ricbra/knmi-client",
"license": "MIT",
"authors": [
{
"name": "Richard van den Brand",
"email": "richard@vandenbrand.org"
}
],
"require": {
"php": ">=7.0",
"psr/http-message": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^1.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0"
},
"require-dev": {
"php-http/mock-client": "^0.3",
"php-http/message": "^1.0",
"guzzlehttp/psr7": "^1.0",
"phpunit/phpunit": "^5.6",
"php-http/guzzle6-adapter": "^1.1"
},
"autoload": {
"psr-4": { "Ricbra\\Knmi\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Test\\Ricbra\\Knmi\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}