-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
35 lines (35 loc) · 932 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
{
"name": "joomla/openstreetmap",
"type": "joomla-package",
"description": "Joomla OpenStreetMap Package",
"keywords": ["joomla", "framework", "openstreetmap"],
"homepage": "https://github.com/joomla-framework/openstreetmap-api",
"license": "GPL-2.0-or-later",
"require": {
"php": "~7.0",
"joomla/application": "~1.8|~2.0",
"joomla/http": "^1.2.2|~2.0",
"joomla/input": "~1.2|~2.0",
"joomla/oauth1": "^1.1.1"
},
"require-dev": {
"joomla/coding-standards": "~2.0@alpha",
"joomla/test": "~1.0",
"phpunit/phpunit": "~6.3"
},
"autoload": {
"psr-4": {
"Joomla\\OpenStreetMap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\OpenStreetMap\\Tests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.0-dev"
}
}
}