-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.57 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
55
56
{
"name": "carpediem/mattermost-webhook",
"type": "library",
"description": "Sends mattermost webhook notifications using PHP",
"keywords": ["mattermost", "php7", "webhook", "psr-7"],
"homepage": "https://carpediem.github.io/mattermost-webhook",
"license": "MIT",
"authors": [
{
"name": "Thibaud Dauce",
"email": "[email protected]",
"homepage": "https://www.formations-laravel.fr"
},
{
"name": "Carpediem Developper",
"email": "[email protected]",
"homepage": "https://carpediem.github.io"
}
],
"support": {
"issues": "https://github.com/carpediem/mattermost-webhook/issues"
},
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.2",
"psr/http-message-implementation": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^6.2"
},
"autoload": {
"psr-4": {
"Carpediem\\Mattermost\\Webhook\\": "src/"
},
"files": ["src/functions_include.php"]
},
"autoload-dev": {
"psr-4": {
"Carpediem\\Mattermost\\Webhook\\Test\\": "tests"
}
},
"scripts": {
"test": ["@phpunit", "@phpcs"],
"phpunit": "phpdbg -qrr ./vendor/bin/phpunit --coverage-text",
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"config": {
"sort-packages": true
}
}