forked from ddeboer/DdeboerSalesforceMapperBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.35 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
{
"name": "comsave/salesforce-mapper-bundle",
"type": "symfony-bundle",
"description": "Salesforce object mapper bundle",
"homepage": "https://github.com/comsave/salesforce-mapper-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"LogicItLab\\": "src/LogicItLab"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\LogicItLab\\": "tests/LogicItLab"
}
},
"require": {
"php": ">=7.2.0",
"comsave/salesforce-bundle": "^3.4.5",
"doctrine/common": "^2.7.2",
"sensio/framework-extra-bundle": "^5.0.0",
"symfony/dependency-injection": "^3.4|^4.3",
"symfony/event-dispatcher": "^3.4|^4.3",
"symfony/http-kernel": "^3.4|^4.3"
},
"require-dev": {
"phpunit/php-code-coverage": "^6.0",
"phpunit/phpunit": "^7.0"
},
"scripts": {
"run-tests": "vendor/bin/phpunit",
"run-coverage": "@run-tests --coverage-clover tests/_output/coverage.xml"
},
"authors": [
{
"name": "David de Boer",
"email": "[email protected]"
},
{
"name": "Joeri Veder",
"email": "[email protected]"
},
{
"name": "Vaidas Bagdonas",
"email": "[email protected]"
},
{
"name": "Dirk Scholten",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}