-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.24 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.24 KB
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
{
"name": "crazyfactory/phalcon-loggers",
"description": "Phalcon logging adapters for Slack and Sentry.",
"type": "library",
"keywords": [
"phalcon", "adpaters", "slack", "sentry", "logger", "logging", "phalcon-slack", "phalcon-sentry"
],
"license": "MIT",
"authors": [
{
"name": "Jitendra Adhikari",
"email": "jiten.adhikary@gmail.com"
}
],
"autoload": {
"psr-4": {
"CrazyFactory\\PhalconLogger\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "CrazyFactory\\PhalconLogger\\Test\\": "tests/" }
},
"suggest": {
"sentry/sentry": "To be able to use the Sentry logging.",
"crazyfactory/slack": "To be able to use Slack logging."
},
"require": {
"php": ">=7.0",
"ext-phalcon": "^3.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7.0",
"sentry/sentry": "^2.2",
"crazyfactory/slack": "^2.0.0",
"php-http/guzzle6-adapter": "^2.0",
"mockery/mockery": "@stable",
"phalcon/ide-stubs": "^3.4"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
}
}