-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
45 lines (45 loc) · 1.28 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
45
{
"name": "nexylan/slack-bundle",
"description": "Symfony bundle integration of nexylan/slack library",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Sullivan SENECHAL",
"email": "soullivaneuh@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"nexylan/slack": "^3.0",
"php-http/discovery": "^1.6",
"php-http/httplug-bundle": "^1.17",
"php-http/httplug": "^2.0",
"symfony/http-kernel": "^3.4 || ^4.0 || ^5.0"
},
"require-dev": {
"http-interop/http-factory-guzzle": "^1.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"php-http/guzzle6-adapter": "^1.1.1 || ^2.0",
"php-http/mock-client": "^1.1",
"phpunit/phpunit": "^8.4",
"symfony/framework-bundle": "^3.4 || ^4.4 || ^5.0"
},
"suggest": {
"eightpoints/guzzle-bundle": "Make a custom Guzzle instance for Slack with ease"
},
"autoload": {
"psr-4": { "Nexy\\SlackBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Nexy\\SlackBundle\\Tests\\": "tests" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}