-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 836 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 836 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": "daa/addressable-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle to make entities addressable and geo spacial services for searching and comparing their latitude/longitude",
"authors": [
{
"name": "Daniel Antelo",
"homepage": "https://github.com/danielantelo"
}
],
"archive": {
"exclude": [
"Sandbox"
]
},
"require": {
"php": ">=5.4",
"symfony/form": ">3.0",
"symfony/http-kernel": ">3.0",
"symfony/dependency-injection": ">3.0",
"symfony/config": ">3.0",
"symfony/validator": ">3.0",
"symfony/options-resolver": ">3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.4"
},
"autoload": {
"psr-4": {
"Addressable\\Bundle\\": "",
"Daa\\Addressable\\Bundle\\": ""
}
}
}