-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.19 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
{
"name": "api-clients/weather-underground",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"api-clients/client-services": "^1.3",
"api-clients/foundation": "dev-master",
"api-clients/middleware-json": "^1.0",
"api-clients/middleware-user-agent": "^1.0"
},
"require-dev": {
"api-clients/resource-generator": "dev-master",
"api-clients/resource-test-utilities": "dev-master",
"api-clients/test-utilities": "^3.0.1"
},
"autoload": {
"psr-4": {
"ApiClients\\Client\\WeatherUnderground\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiClients\\Tests\\Client\\WeatherUnderground\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"api-clients": {
"command-bus": {
"path": "src/CommandBus",
"namespace": "ApiClients\\Client\\WeatherUnderground\\CommandBus"
}
}
}
}