-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 986 Bytes
/
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
{
"name": "oro-flex/log",
"description": "`Oro Log Component` provides additional logger features to Psr\\Log component.",
"homepage": "https://github.com/oroinc/platform/tree/master/src/Oro/Component/Log",
"license": "MIT",
"authors": [
{
"name": "Nikita Makarov",
"email": "[email protected]"
},
{
"name": "Oro, Inc",
"homepage": "https://oroinc.com/"
}
],
"require": {
"php": "~7.4.14 || ~8.0.0",
"psr/log": "*"
},
"require-dev": {
},
"conflict": {
"oro/platform": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"symfony": {
"require": "5.4.*"
},
"branch-alias": {
"dev-master": "5.0-dev"
}
},
"autoload": {
"psr-4": {
"Oro\\Component\\Log\\": ""
},
"exclude-from-classmap": ["/Tests/"]
}
}