-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
61 lines (61 loc) · 1.76 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
{
"name": "richcongress/unit-bundle",
"description": "A unit bundle for Symfony 4+",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "RichCongress",
"homepage": "https://www.richcongress.com"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"brianium/paratest": "^3.1",
"dama/doctrine-test-bundle": "^6.3",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/doctrine-fixtures-bundle": "^3.2",
"doctrine/orm": "^2.6",
"liip/functional-test-bundle": "^3.0",
"liip/test-fixtures-bundle": "^1.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.5",
"symfony/config": "^4.0",
"symfony/console": "^4.0",
"symfony/dependency-injection": "^4.0",
"symfony/phpunit-bridge": "^4.0",
"symfony/serializer": "^4.0",
"symfony/validator": "^4.0"
},
"require-dev": {
"eightpoints/guzzle-bundle": "^7.6",
"php-coveralls/php-coveralls": "^2.1",
"symfony/form": "^4.0",
"symfony/orm-pack": "^1.0",
"symfony/security-bundle": "^4.0",
"symfony/yaml": "^4.0"
},
"autoload": {
"psr-4": {
"RichCongress\\Bundle\\UnitBundle\\": ""
},
"files": [
"./TestConfiguration/Annotation/WithContainer.php",
"./TestConfiguration/Annotation/WithFixtures.php"
]
},
"autoload-dev": {
"psr-4": {
"RichCongress\\Bundle\\UnitBundle\\Tests\\": "Tests/"
},
"classmap": [
"Tests/Resources/config/TestKernel.php"
]
},
"config": {
"bin-dir": "bin",
"discard-changes": true,
"sort-packages": true
}
}