This repository was archived by the owner on Nov 29, 2018. 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
45 lines (45 loc) · 1.25 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "estey/hipsupport",
"description": "An easy to install Live Chat system that uses HipChat and Laravel.",
"keywords": ["HipSupport", "Laravel", "Laravel 4", "HipChat", "Live Chat"],
"homepage": "http://www.bradestey.com/projects/hipsupport",
"license": "MIT",
"authors": [
{
"name": "Brad Estey",
"email": "me@bradestey.com",
"homepage": "http://www.bradestey.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"illuminate/support": "4.2.*",
"illuminate/cache": "4.2.*",
"illuminate/config": "4.2.*",
"hipchat/hipchat-php": "1.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "dev-master",
"squizlabs/php_codesniffer": "~1.5",
"phpunit/php-code-coverage": "~2.0",
"satooshi/php-coveralls": "dev-master",
"illuminate/console": "4.2.*"
},
"autoload": {
"psr-4": {
"Estey\\HipSupport\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Estey\\HipSupport\\Test\\": "test"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}