forked from comsave/soap-client
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
34 lines (34 loc) · 1.06 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
{
"name": "php-arsenal/salesforce-soap-client",
"type": "library",
"description": "A client for the Salesforce SOAP API",
"keywords": [ "salesforce", "crm", "soap", "force.com", "web services" ],
"license": "MIT",
"autoload": {
"psr-4": {
"PhpArsenal\\SoapClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhpArsenal\\SoapClient\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.4",
"psr/log": "^1.1",
"symfony/event-dispatcher": "^5.2"
},
"require-dev": {
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.5"
},
"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"
},
"config": {
"sort-packages": true
}
}