-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcomposer.json
39 lines (39 loc) · 965 Bytes
/
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
{
"name": "arquivei/laravel-prometheus-exporter",
"description": "A Prometheus exporter for Laravel and Lumen",
"license": "MIT",
"authors": [
{
"name": "Arquivei"
}
],
"require": {
"php": ">=7.2.0",
"illuminate/support": "^5.3",
"illuminate/routing": "^5.3",
"jimdo/prometheus_client_php": "dev-master"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/Jimdo/prometheus_client_php.git"
}
],
"autoload": {
"psr-4": {
"Arquivei\\LaravelPrometheusExporter\\": "src/",
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^7",
"mockery/mockery": "^0.9.5",
"friendsofphp/php-cs-fixer": "2.*",
"orchestra/testbench": "^3.3"
}
}