-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.18 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
{
"name": "brightfish/blue-canary-client",
"description": "API-client library for Blue Canary",
"type": "library",
"version": "0.0.1",
"keywords": [
"guzzle",
"monitoring",
"performance-metrics",
"monitoring-server"
],
"license": "GPL-3.0-only",
"homepage": "https://github.com/brightfish-be/blue-canary-dashboard#readme",
"authors": [
{
"name": "Arnaud Coolsaet",
"email": "a.coolsaet@brightfish.be",
"homepage": "https://brightfish.be"
}
],
"require": {
"php": "^7.3",
"guzzlehttp/guzzle": "^6.5.0",
"psr/log": "^1.1.2"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^2.16"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Brightfish\\BlueCanary\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always tests",
"style": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
}
}