forked from willdurand/BazingaOAuthServerBundle
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
32 lines (32 loc) · 925 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
{
"name": "willdurand/oauth-server-bundle",
"description": "Server side implementation of the OAuth 1.0 protocol based on RFC 5849",
"keywords": ["api", "server", "oauth"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "William Durand",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"symfony/console": "~2.3",
"symfony/framework-bundle": "~2.3",
"symfony/security-bundle": "~2.3"
},
"require-dev": {
"doctrine/doctrine-bundle": "1.3.*@dev",
"willdurand/propel-typehintable-behavior": "@dev"
},
"suggest": {
"willdurand/propel-typehintable-behavior": "Needed when using the propel implementation"
},
"autoload": {
"psr-4": { "Bazinga\\OAuthServerBundle\\": "" }
},
"config": {
"bin-dir": "bin"
}
}