composer.json
{
"name": "comsave/safe-salesforce-saver-bundle",
"type": "symfony-bundle",
"description": "Allows you to save your objects to Salesforce safely",
"homepage": "https://github.com/comsave/safe-salesforce-saver-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Comsave\\": "src/Comsave"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"ext-ctype": "*",
"ext-iconv": "*",
"comsave/salesforce-mapper-bundle": "^3.5",
"php-amqplib/rabbitmq-bundle": "^1.14",
"symfony/config": "^3.4|^4.3",
"symfony/console": "^3.4|^4.3",
"symfony/dotenv": "^3.4|^4.3",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "^3.4|^4.3",
"symfony/yaml": "^3.4|^4.3"
},
"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"
},
"extra": {
"symfony": {
"allow-contrib": false
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}