forked from comsave/soap-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.43 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
{
"name": "gsc89/soap-client",
"type": "library",
"description": "A PHP client for the Salesforce SOAP API",
"keywords": [ "salesforce", "crm", "soap", "force.com", "web services" ],
"license": "MIT",
"autoload": {
"psr-0": {
"Phpforce\\SoapClient": "src"
}
},
"autoload-dev": {
"psr-0": {
"Phpforce\\SoapClient\\Tests": "tests"
}
},
"require": {
"php": ">=7.2",
"gsc89/common": "dev-master",
"psr/log": "^1.0"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:gsc89/common.git"
}
],
"require-dev": {
"phpunit/php-code-coverage": "^5.0",
"phpunit/phpunit": "^6.0"
},
"scripts": {
"run-tests": "vendor/bin/phpunit -c phpunit.xml.dist --no-coverage",
"run-coverage": "vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover Tests/_output/coverage.xml",
"run-coverage-text": "vendor/bin/phpunit -c phpunit.xml.dist --coverage-text=Tests/_output/coverage.txt && cat Tests/_output/coverage.txt"
},
"authors": [
{
"name": "David de Boer",
"email": "[email protected]",
"homepage": "http://ddeboer.nl"
},
{
"name": "Vaidas Bagdonas",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
}
}