-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
56 lines (56 loc) · 1.36 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
{
"name": "pccomponentes/ddd-logging",
"description": "This is a package to unify the logs systems in the developments of PcComponentes",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Zoilo Mora",
"email": "[email protected]"
},
{
"name": "Aaron Bernabeu",
"email": "[email protected]"
},
{
"name": "Alberto Vioque",
"email": "[email protected]"
},
{
"name": "Jose R. Flores",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"monolog/monolog": "^1.25|^2.0",
"pccomponentes/ddd": "^2.1|^3.0|^4.0",
"symfony/http-kernel": "^4.4|^5.0|^6.0",
"symfony/messenger": "^4.4|^5.0|^6.0",
"symfony/http-foundation": "^4.4|^5.0|^6.0",
"symfony/stopwatch": "^4.4|^5.0|^6.0",
"guzzlehttp/guzzle": "^6.5|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"dg/bypass-finals": "^1.1",
"phpstan/phpstan": "^0.12",
"pccomponentes/coding-standard": "^1.0"
},
"autoload": {
"psr-4": {
"PcComponentes\\DddLogging\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PcComponentes\\DddLogging\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}