forked from hiromi2424/cakephp-slack-log-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·50 lines (50 loc) · 1.24 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.24 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
{
"name":"diegocomis/cakephp-slack-log-engine",
"description":"Slack log engine for CakePHP",
"type":"cakephp-plugin",
"keywords":[
"cakephp",
"cake",
"log",
"slack"
],
"homepage":"https://github.com/diegocomis/cakephp-slack-log-engine",
"license":"MIT",
"authors":[
{
"name":"Hiroki Shimizu",
"role":"Author",
"homepage":"https://github.com/hiromi2424/"
},
{
"name":"Diego Comis",
"role":"Author",
"homepage":"https://github.com/diegocomis/"
}
],
"require":{
"php": ">=7.2",
"cakephp/cakephp": "^4.1",
"maknz/slack": "~1.7"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"SlackLogEngine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SlackLogEngine\\Test\\": "tests",
"Cake\\Test\\Fixture\\": "./vendor/cakephp/cakephp/tests/Fixture"
}
},
"suggest": {
},
"support":{
"source":"https://github.com/diegocomis/cakephp-slack-log-engine",
"issues":"https://github.com/diegocomis/cakephp-slack-log-engine/issues"
}
}