-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 945 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": "jcroll/foursquare-api-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for the jcroll/foursquare-api-client",
"keywords": ["foursquare", "swarm", "api", "client", "oauth", "hwioauthbundle"],
"homepage": "https://github.com/jcroll/foursquare-api-bundle",
"license": "MIT",
"authors": [
{
"name": "Jarrett Croll",
"email": "[email protected]"
}
],
"require": {
"jcroll/foursquare-api-client": ">=1",
"symfony/framework-bundle": ">=2.7"
},
"require-dev": {
"phpunit/phpunit": "~4.8|^5"
},
"suggest": {
"hwi/oauth-bundle": "Allows easy oauth integration"
},
"autoload": {
"psr-4": {
"Jcroll\\FoursquareApiBundle\\": ""
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}