-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.98 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
62
63
64
65
66
67
{
"name": "odandb/monitoring-metrics-bundle",
"description": "Provides metrics and assertions for functional testing",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony",
"bundle",
"phpunit",
"assert",
"testing"
],
"authors": [
{
"name": "Maxime Hélias",
"email": "[email protected]"
},
{
"name": "OD&B",
"homepage": "https://www.odandb.com/"
}
],
"require": {
"php": ">=7.4",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/service-contracts": "^2.0 || ^3.2"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.8",
"doctrine/orm": "^2.10",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^5.4 || ^6.4 || ^7.0",
"symfony/doctrine-bridge": "^5.4.7 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0"
},
"conflict": {
"doctrine/dbal": "<3.3",
"phpunit/phpunit": "<8.0",
"symfony/doctrine-bridge": "<5.4.7"
},
"suggest": {
"doctrine/doctrine-bundle": "To retrieve information related to doctrine",
"phpunit/phpunit": "To use assertion trait with PHPUnit"
},
"autoload": {
"psr-4": {
"Odandb\\MonitoringMetricsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Odandb\\MonitoringMetricsBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-clover=coverage-report.xml"
}
}