-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 850 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 850 Bytes
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
{
"name": "omentes/sample-metrics-bot",
"description": "Sample project for training in collecting business metrics",
"minimum-stability": "stable",
"authors": [
{
"name": "omentes",
"email": "setnemo@gmail.com"
}
],
"license": "MIT",
"require": {
"vlucas/phpdotenv": "^5.3",
"monolog/monolog": "^2.2",
"predis/predis": "^1.1",
"faapz/pdo": "^2.1",
"longman/telegram-bot": "^0.70.1",
"adbario/php-dot-notation": "^2.2",
"promphp/prometheus_client_php": "^2.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.5",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"SampleMetrics\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\": "tests/unit/",
"Tests\\Helpers\\": "tests/helpers/"
}
}
}