-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.21 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
{
"name": "sooluh/papercups",
"type": "library",
"description": "Unofficial Papercups PHP library provides convenient access to the Papercups API from applications written in server-side PHP",
"keywords": [
"customer-support",
"livechat",
"intercom",
"chat-widget",
"help-desk"
],
"homepage": "https://github.com/sooluh/papercups",
"license": "MIT",
"authors": [
{
"name": "Suluh S",
"email": "[email protected]",
"homepage": "https://suluh.my.id",
"role": "Maintainer"
}
],
"support": {
"source": "http://github.com/sooluh/papercups",
"docs": "https://github.com/sooluh/papercups/blob/master/README.md",
"issues": "https://github.com/sooluh/papercups/issues"
},
"scripts": {
"psr2check": [
"@php vendor/bin/phpcs --standard=PSR2 src/"
],
"psr2autofix": [
"@php vendor/bin/phpcbf --standard=PSR2 src/"
]
},
"require": {
"php": ">=7.3",
"guzzlehttp/guzzle": "^7.3.0",
"league/mime-type-detection": "dev-main"
},
"autoload": {
"psr-4": {
"Papercups\\": "src/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpmd/phpmd": "^2.10"
},
"minimum-stability": "dev"
}