-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 962 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
{
"name": "slack-php/slack-socket-mode",
"type": "library",
"license": "MIT",
"description": "Provides a a slack-php Socket Mode implementation",
"authors": [
{
"name": "Jeremy Lindblom",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"platform": {
"php": "7.4"
}
},
"require": {
"amphp/websocket-client": "^1.0",
"slack-php/slack-app-framework": ">=0.5.0"
},
"autoload": {
"psr-4": {
"SlackPhp\\SocketMode\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^0.12.90"
},
"scripts": {
"style": "php-cs-fixer fix --dry-run --verbose --show-progress=none src",
"style-fix": "php-cs-fixer fix src",
"stan": "phpstan analyse --level=5 src",
"qa": ["@style", "@stan"]
}
}