forked from comsave/salesforce-mapper-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.37 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
{
"name": "php-arsenal/salesforce-mapper-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle that maps raw Salesforce objects with your models.",
"homepage": "https://github.com/php-arsenal/salesforce-mapper-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"PhpArsenal\\SalesforceMapperBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PhpArsenal\\SalesforceMapperBundle\\": "tests"
}
},
"require": {
"php": ">=8.0",
"doctrine/cache": "^1.11",
"doctrine/common": "^3.1.0",
"doctrine/mongodb-odm-bundle": "^4.3",
"friendsofphp/proxy-manager-lts": "^1.0",
"php-arsenal/salesforce-bundle": "^4.0",
"sensio/framework-extra-bundle": "^6.1.0",
"symfony/dependency-injection": "^5.2",
"symfony/event-dispatcher": "^5.2",
"symfony/http-kernel": "^5.2"
},
"require-dev": {
"phpunit/php-code-coverage": "^9.0",
"phpunit/phpunit": "^9.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"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}