generated from mimmi20/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
119 lines (119 loc) · 4.53 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "mimmi20/monolog-factory",
"description": "Provides a Factory to build a Monolog Logger.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Thomas Müller",
"homepage": "https://github.com/mimmi20",
"role": "Developer"
}
],
"homepage": "https://github.com/mimmi20/monolog-factory",
"support": {
"issues": "https://github.com/mimmi20/monolog-factory/issues",
"source": "https://github.com/mimmi20/monolog-factory"
},
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-mbstring": "*",
"monolog/monolog": "^3.8.1",
"psr/container": "^1.1.2 || ^2.0.2",
"psr/log": "^3.0.2"
},
"require-dev": {
"ext-ctype": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-tokenizer": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"actived/microsoft-teams-notifier": "^1.3.0",
"aws/aws-sdk-php": "^3.336.2",
"doctrine/couchdb": "1.0.0-beta4",
"elasticsearch/elasticsearch": "^7.17.2 || ^8.7.0",
"ezimuel/ringphp": "^1.2.2",
"graylog2/gelf-php": "^2.0.1",
"guzzlehttp/guzzle": "^7.9.2",
"guzzlehttp/psr7": "^2.7.0",
"infection/infection": "^0.29.10",
"jk/monolog-request-header-processor": "^1.0.0",
"laminas/laminas-eventmanager": "^3.14.0",
"laminas/laminas-modulemanager": "^2.17.0",
"laminas/laminas-servicemanager": "^3.22.1",
"mikey179/vfsstream": "^1.6.12",
"mimmi20/coding-standard": "^6.0.1",
"mimmi20/monolog-callbackfilterhandler": "^4.0.0",
"mimmi20/monolog-streamformatter": "^4.0.1",
"nikic/php-parser": "^5.3.1",
"php-console/php-console": "^3.1.8",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.8",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpunit/phpunit": "^11.5.1",
"predis/predis": "^1.1.10 || ^2.1.2",
"rector/rector": "^1.2.10",
"rector/type-perfect": "^1.0.0",
"ruflin/elastica": "^8.1.0",
"symfony/mailer": "^7.2.0",
"symfony/mime": "^7.2.1",
"symfony/process": "^7.2.0",
"symplify/phpstan-rules": "^13.0.1",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"tomasvotruba/type-coverage": "^1.0.0",
"tomasvotruba/unused-public": "^1.1.0"
},
"suggest": {
"ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
"ext-curl": "Allow sending log messages to some handlers",
"ext-json": "Allow sending log messages to the ChromePHP Handler",
"ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
"ext-openssl": "Allow sending log messages to some handlers",
"ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
"actived/microsoft-teams-notifier": "Allow sending log messages to Microsoft Teams",
"aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
"bartlett/monolog-callbackfilterhandler": "Allow filtering log messages based on a callback function",
"cmdisp/monolog-microsoft-teams": "Allow sending log messages to Microsoft Teams",
"doctrine/couchdb": "Allow sending log messages to a CouchDB server",
"elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
"graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
"jk/monolog-request-header-processor": "Allow to add request headers to the log message",
"laminas/laminas-modulemanager": "Required for the module configuration",
"laminas/laminas-servicemanager": "Required for the Factories",
"mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
"php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
"rollbar/rollbar": "Allow sending log messages to Rollbar",
"ruflin/elastica": "Allow sending log messages to an Elastic Search server"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Mimmi20\\MonologFactory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mimmi20Test\\MonologFactory\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
},
"lock": false,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laminas": {
"component": "Mimmi20\\MonologFactory",
"config-provider": "Mimmi20\\MonologFactory\\ConfigProvider"
}
}
}