-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
83 lines (83 loc) · 2.2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "phalcon/incubator-logger",
"description": "Phalcon Incubator Logger Adapters and Formatters",
"keywords": [
"framework",
"phalcon",
"incubator",
"logger",
"log formatter",
"monolog",
"aws",
"psr-3"
],
"homepage": "https://phalcon.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "team@phalcon.io",
"homepage": "https://phalcon.io/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/incubator-logger/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/phalcon/incubator/issues",
"source": "https://github.com/phalcon/incubator-logger",
"forum": "https://forum.phalcon.io"
},
"require": {
"php": ">=7.4",
"ext-phalcon": "^5.0",
"ext-json": "*"
},
"require-dev": {
"phalcon/ide-stubs": "^5.0",
"vimeo/psalm": "^5.13",
"squizlabs/php_codesniffer": "^3.7.2",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.0.0",
"phpstan/phpstan": "^1.10",
"aws/aws-sdk-php": "^3.145",
"codeception/module-db": "^1.0"
},
"suggest": {
"aws/aws-sdk-php": "Needed to run in CloudWatch Logger Adapter",
"ext-sockets": "Needed to run in Udp Logger Adapter",
"ext-curl": "Needed to run in Slack Adapter"
},
"config": {
"platform": {
"php": "7.4"
}
},
"autoload": {
"psr-4": {
"Phalcon\\Incubator\\Logger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phalcon\\Incubator\\Logger\\Tests\\Unit\\": "tests/unit/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"archive": {
"exclude": [
"/.assets",
"/.docker",
"/.github",
"/tests",
".codecov.yml",
"codeception.yml",
"docker-compose.yml",
"phpcs.xml.dist",
"phpstan.neon.dist",
"psalm.xml.dist"
]
}
}