forked from phpforce/salesforce-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 1.15 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": "comsave/salesforce-bundle",
"type": "symfony-bundle",
"description": "A Symfony2 bundle for the PHPForce Salesforce library.",
"keywords": [ "salesforce", "crm", "soap" ],
"homepage": "https://github.com/phpforce/salesforce-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Phpforce\\SalesforceBundle\\": "src/Phpforce/SalesforceBundle"
}
},
"require": {
"php": ">=7.2",
"comsave/soap-client": "^0.2.2",
"guzzlehttp/guzzle": "^6.0"
},
"require-dev": {
"phpunit/php-code-coverage": "^6.0",
"phpunit/phpunit": "^7.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"
}
]
}