-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·44 lines (44 loc) · 1.08 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
{
"name":"hiromi2424/cakephp-slack-log-engine",
"description":"Slack log engine for CakePHP",
"type":"cakephp-plugin",
"keywords":[
"cakephp",
"cake",
"log",
"slack"
],
"homepage":"https://github.com/hiromi2424/cakephp-slack-log-engine",
"license":"MIT",
"authors":[
{
"name":"Hiroki Shimizu",
"role":"Author",
"homepage":"https://github.com/hiromi2424/"
}
],
"require":{
"cakephp/cakephp": "~3.0",
"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/hiromi2424/cakephp-slack-log-engine",
"issues":"https://github.com/hiromi2424/cakephp-slack-log-engine/issues"
}
}