-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
42 lines (42 loc) · 1002 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
36
37
38
39
40
41
42
{
"name": "frankkessler/salesforce-laravel-oauth2-rest",
"description": "A Salesforce REST api wrapper utilizing oAuth2",
"keywords": ["salesforce", "rest", "oauth2"],
"license": "MIT",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle":"~6.0",
"frankkessler/guzzle-oauth2-middleware":"0.1.*",
"illuminate/http": "~5.1",
"illuminate/routing": "~5.1",
"illuminate/support": "~5.1",
"illuminate/database": "~5.1",
"psr/log": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"mockery/mockery": "0.9.*",
"satooshi/php-coveralls": "1.*"
},
"autoload": {
"classmap": [
"src/Controllers"
],
"psr-4": {
"Frankkessler\\Salesforce\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"files": [
"tests/GuzzleServer.php",
"tests/BulkBatchProcessor.php"
]
}
}