forked from previousnext/bom-weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 840 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
37
{
"name": "previousnext/bom-weather",
"description": "PHP lib for accessing the Australian Bureau of Meteorology (BOM) weather forecasts and observations.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Kim Pepper",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"ext-curl": "*",
"ext-xml": "*",
"guzzlehttp/guzzle": "~6.3",
"psr/log": "~1.0",
"symfony/serializer": "~3.4"
},
"require-dev": {
"drupal/coder": ">=8.2.12",
"phpunit/phpunit": "~6.5",
"symfony/phpunit-bridge": "~3.4"
},
"autoload": {
"psr-4": {"BomWeather\\": "src/"}
},
"autoload-dev": {
"psr-4": {"BomWeather\\Tests\\": "tests/"}
},
"config": {
"bin-dir": "bin/",
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}