-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 832 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 832 Bytes
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
{
"name": "osavchenko/openweathermap-bundle",
"description": "OpenWeatherMap API Bundle",
"authors": [
{
"name": "Oleksandr Savchenko",
"email": "savhcneko.oleksandr.ua@gmail.com"
}
],
"keywords": [
"OpenWeatherMap", "weather", "weather api", "symfony weather bundle"
],
"license": "GPL-3.0",
"type": "symfony-bundle",
"autoload": {
"psr-4": {
"Savchenko\\Bundle\\OpenWeatherMapBundle\\": ""
}
},
"require": {
"php": ">=7.0",
"symfony/intl": "~3.0",
"eightpoints/guzzle-bundle": "~4.5"
},
"require-dev": {
"phpunit/phpunit": "*",
"symfony/config": "~2.3|~3.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}