-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
51 lines (51 loc) · 1.31 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
{
"name": "codecov/laravel-codecov-opentelemetry",
"description": "Laravel middleware for Codecov's OpenTelemetry",
"type": "library",
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"open-telemetry/opentelemetry": "0.0.2",
"phpunit/php-code-coverage": "^9.2.8",
"psr/http-message": "^1.0",
"psr/http-client-implementation": "^1.0",
"php-http/httplug": "^2.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0",
"php-http/client-common": "^2.5",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Codecov\\LaravelCodecovOpenTelemetry\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Codecov\\LaravelCodecovOpenTelemetry\\LaravelOpenTelemetryServiceProvider"
],
"aliases": {
"Config": "Illuminate\\Support\\Facades\\Config"
}
}
},
"scripts": {
"format": "phpcbf --standard=psr2 src/"
},
"require-dev": {
"orchestra/testbench": "^5.0|^6.0",
"phpunit/phpunit": "^9.3.3",
"pestphp/pest-plugin-laravel": "^1.0",
"mockery/mockery": "^1.3.1",
"squizlabs/php_codesniffer": "^3.6",
"php-http/mock-client": "^1.5",
"php-http/message": "^1.0",
"php-http/guzzle7-adapter": "^1.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}