-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
30 lines (30 loc) · 987 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
{
"name": "i3-hackathon/bmw-php-sdk",
"type": "library",
"description": "PHP client to login and access the BMW API",
"keywords": ["api","mojio","client","guzzle"],
"homepage": "https://github.com/i3-hackathon/bmw-php-sdk",
"require": {
"php": ">=5.3.3",
"guzzle/guzzle": "~3.7.0",
"league/oauth2-client": "0.6.0"
},
"suggest": {
"doctrine/cache": "Adds support for caching of credentials and responses",
"ext-apc": "Allows service description opcode caching, request and response caching, and credentials caching",
"monolog/monolog": "Adds support for logging HTTP requests and responses"
},
"require-dev": {
"doctrine/cache": "~1.0",
"ext-openssl": "*",
"monolog/monolog": "1.4.*",
"phpunit/phpunit": "3.7.*",
"symfony/class-loader": "2.*",
"symfony/yaml": "2.*"
},
"autoload": {
"psr-0": {
"Mojio": "src/"
}
}
}