-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.28 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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
{
"name": "comsave/symfony-testing-base",
"license": "MIT",
"authors": [
{
"name": "Vaidas Bagdonas",
"email": "vaidas.bagdonas@comsave.com"
}
],
"require": {
"php": ">=7.3.0",
"doctrine/mongodb-odm-bundle": "^3.4|^4.1",
"symfony/framework-bundle": "^3.4|^4.4",
"comsave/salesforce-mapper-bundle": "^3.5"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.3",
"fzaninotto/faker": "^1.9",
"spatie/phpunit-snapshot-assertions": "^3.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Comsave\\SymfonyTestingBase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Comsave\\SymfonyTestingBase\\Tests\\": "tests/"
}
},
"scripts": {
"run-tests": "vendor/bin/phpunit --no-coverage",
"run-coverage": "vendor/bin/phpunit --coverage-clover tests/_output/coverage.xml",
"run-coverage-text": "vendor/bin/phpunit --coverage-text=tests/_output/coverage.txt && cat tests/_output/coverage.txt"
},
"provide": {
"ext-mongo": "*"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}