-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.37 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.37 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "colvin/message-logger-php",
"description": "Processors for define common structure",
"authors": [
{
"name": "Aaron Bernabeu Rodríguez",
"email": "aaron.bernabeu@thecolvinco.com"
},
{
"name": "Alejandro Mascort Colomer",
"email": "alejandro.mascort@thecolvinco.com"
},
{
"name": "Alejandro García Sánchez",
"email": "alejandro.garcia@thecolvinco.com"
},
{
"name": "Diego García",
"email": "diego@thecolvinco.com"
},
{
"name": "Miquel Mariño Espinosa",
"email": "miquel.marino@thecolvinco.com"
},
{
"name": "Juan Cama Villafan",
"email": "juan.cama@thecolvinco.com"
},
{
"name": "Victor del Valle",
"email": "victor.delvalle@thecolvinco.com"
}
],
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"Colvin\\MessageLogger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Colvin\\MessageLogger\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"symfony/dependency-injection": "^5.4",
"colvin/common-domain-php": "^0.1.1"
},
"require-dev": {
"phpro/grumphp": "^1.5",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"post-install-cmd": [
"rm -rf .git/hooks",
"mkdir -p .git/hooks",
"cp -r ./config/hooks/* .git/hooks"
]
}
}