forked from gnello/php-mattermost-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 862 Bytes
/
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
{
"name": "gnello/php-mattermost-driver",
"description": "The Php Driver to interact with the Mattermost Web Service API",
"keywords": ["mattermost", "chat"],
"homepage": "https://github.com/gnello/php-mattermost-driver",
"license": "MIT",
"authors": [
{
"name": "Luca Agnello",
"email": "luca@gnello.com"
}
],
"support": {
"email": "luca@gnello.com",
"issues": "https://github.com/gnello/php-mattermost-driver/issues"
},
"require": {
"php": ">=5.5.0",
"ext-json": "*",
"psr/http-message" : "^1.0",
"pimple/pimple" : "~3.0",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"symfony/var-dumper": "^3.1"
},
"autoload": {
"psr-4": {
"Gnello\\Mattermost\\": "src/"
}
}
}