forked from advisors-excel-llc/salesforce-rest-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 937 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
{
"name": "ae/salesforce-rest-sdk",
"description": "An SDK for the Salesforce Rest API",
"type": "library",
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "^6.3",
"jms/serializer": "^3.0",
"ramsey/uuid": "^3.8",
"doctrine/collections": "^1.5",
"symfony/cache": "^4.0|^5.0",
"psr/log": "^1.1",
"symfony/expression-language": "^4.2|^5.0",
"jms/metadata": "^1.0|^2.0"
},
"license": "proprietary",
"authors": [
{
"name": "Alex Boyce",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"AE\\SalesforceRestSdk\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"AE\\SalesforceRestSdk\\Tests\\": ["Tests/"]
}
},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "^7.3"
}
}