-
Notifications
You must be signed in to change notification settings - Fork 56
/
composer.json
54 lines (54 loc) · 1.47 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
46
47
48
49
50
51
52
53
54
{
"name": "jolicode/slack-php-api",
"description": "An up to date PHP client for Slack's API",
"keywords": ["slack", "slackapi", "api", "client", "openapi", "swagger", "sdk"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Loïck Piera",
"email": "[email protected]"
},
{
"name": "JoliCode",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"JoliCode\\Slack\\Api\\": "generated/",
"JoliCode\\Slack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JoliCode\\Slack\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"jane-php/open-api-runtime": "^7.7",
"psr/http-client-implementation": "*",
"php-http/client-common": "^1.9 || ^2.0",
"php-http/discovery": "^1.11",
"php-http/multipart-stream-builder": "^1.1"
},
"require-dev": {
"jane-php/open-api-2": "~v7.6.0",
"symfony/http-client": "^6.0 || ^7.0",
"nyholm/psr7": "^1.2",
"friendsofphp/php-cs-fixer": "^3.2.2",
"symfony/phpunit-bridge": "^6.0 || ^7.0",
"opis/json-schema": "^1.0",
"symfony/console": "^6.0 || ^7.0",
"symfony/process": "^6.0 || ^7.0"
},
"conflict": {
"php-http/httplug": "< 2.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}