-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.49 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.49 KB
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
55
56
57
{
"name": "bowphp/slack-webhook",
"type": "library",
"description": "Post messages to your Slack channels with this easy to use library.",
"keywords": [
"Slack",
"Webhook",
"Channels",
"Logging",
"Message"
],
"homepage": "https://github.com/bowphp/slack-webhook",
"license": "MIT",
"authors": [
{
"name": "Simon Backx",
"email": "hi@simonbackx.com",
"homepage": "https://www.simonbackx.com",
"role": "Developer"
},
{
"name": "Franck DAKIA",
"email": "dakiafranck@gmail.com",
"homepage": "https://bowphp.github.io",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/bowphp/slack-webhook",
"issues": "https://github.com/bowphp/slack-webhook/issues"
},
"require": {
"ext-json": "*",
"ext-curl": "*",
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.11"
},
"autoload": {
"psr-4": {
"Bow\\Slack\\": "src/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"cs-fix": "phpcbf --standard=PSR12 src tests",
"cs-check": "phpcs --standard=PSR12 src tests"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}