-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
54 lines (54 loc) · 1.47 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "xsolve-pl/salesforce-client",
"description": "Salesforce REST client for PHP",
"keywords": [
"crm",
"force.com",
"salesforce",
"rest",
"oauth2",
"api"
],
"license": "MIT",
"type": "library",
"homepage": "https://github.com/xsolve-pl/salesforce-client",
"authors": [
{
"name": "Adrian Waler",
"email": "[email protected]",
"homepage": "https://github.com/adrianwaler",
"role": "Developer"
},
{
"name": "Pawel Krynicki",
"email": "[email protected]",
"homepage": "https://github.com/Kryniol",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"jms/serializer": "~1.4",
"eloquent/enumeration": "^5.1",
"php-http/httplug": "^1.1",
"guzzlehttp/psr7": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"friendsofphp/php-cs-fixer": "^2.0"
},
"suggest": {
"php-http/client-implementation": "Needed for sending HTTP requests. For example php-http/guzzle6-adapter.",
"blablacar/redis-client": "Needed if Redis will be used as the storage for tokens"
},
"autoload":{
"psr-4":{
"Xsolve\\SalesforceClient\\": "src/"
}
},
"autoload-dev":{
"psr-4":{
"Xsolve\\SalesforceClient\\": ["src/", "tests/"]
}
}
}