-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.83 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
55
56
57
58
59
60
61
62
{
"name": "comsave/salesforce-outbound-message-bundle",
"type": "symfony-bundle",
"description": "This bundle allows you to easily process outbound messages sent by Salesforce.",
"homepage": "https://github.com/comsave/salesforce-outbound-message-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Comsave\\": "src/Comsave/"
},
"files": [
"src/Comsave/SalesforceOutboundMessageBundle/functions.php"
]
},
"autoload-dev": {
"files": [
"src/Comsave/SalesforceOutboundMessageBundle/functions.php",
"vendor/comsave/salesforce-mapper-bundle/src/LogicItLab/Salesforce/MapperBundle/Annotation/Field.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"ext-json": ">=1.6",
"ext-soap": ">=7.2",
"comsave/salesforce-mapper-bundle": "^3.4.0",
"doctrine/mongodb-odm": "^1.1|^2.0",
"symfony/config": "^3.4|^4.3",
"symfony/dependency-injection": "^3.4|^4.3",
"symfony/event-dispatcher": "^3.4|^4.3",
"symfony/http-kernel": "^3.4|^4.3",
"symfony/polyfill-apcu": "^1.12",
"symfony/property-access": "^3.4|^4.3"
},
"require-dev": {
"phpunit/php-code-coverage": "^6.0",
"phpunit/phpunit": "^7.0"
},
"provide": {
"ext-mongo": "*"
},
"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": "Vaidas Bagdonas",
"email": "[email protected]"
},
{
"name": "Dirk Scholten",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
}
}