-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 994 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
33
34
35
36
37
38
39
{
"name": "strimeapp/slackify",
"type": "library",
"description": "Slackify, an Object Oriented library to communicate with Slack API",
"keywords": ["slack", "webhooks", "notifications", "api", "php", "communication", "chat"],
"license": "MIT",
"authors": [
{
"name": "Romain Biard",
"email": "[email protected]",
"homepage": "https://www.strime.io/"
}
],
"require": {
"php": "^5.5 || ^7.0",
"guzzlehttp/guzzle": "^6.0",
"doctrine/cache": "^1.0"
},
"require-dev": {
"sami/sami": "^4.0 || 3.0",
"silex/silex": "~2.0",
"phpunit/phpunit": "^5.7 || 4.8.31"
},
"autoload": {
"psr-0": {
"Strime\\Slackify": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Strime\\Slackify\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}