This repository was archived by the owner on Sep 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.35 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "laravel-notification-channels/hipchat",
"description": "HipChat Notifications Channel for Laravel",
"homepage": "https://github.com/laravel-notification-channels/hipchat",
"keywords": [
"laravel",
"notifications",
"hipchat",
"chat"
],
"license": "MIT",
"authors": [
{
"name": "Peter Matseykanets",
"email": "pmatseykanets@gmail.com",
"homepage": "https://github.com/pmatseykanets"
}
],
"require": {
"php": ">=5.6.4",
"guzzlehttp/guzzle": "^6.2",
"illuminate/queue": "~5.1",
"illuminate/notifications": "~5.3",
"illuminate/support": "~5.1"
},
"require-dev": {
"mockery/mockery": "~1.0",
"phpunit/phpunit": "5.*"
},
"autoload": {
"psr-4": {
"NotificationChannels\\HipChat\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\HipChat\\Test\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"NotificationChannels\\HipChat\\HipChatServiceProvider"
]
}
}
}