-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.51 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
{
"name": "sokil/php-viber-notifier",
"description": "Allows to implement subscription on Viber's account and broadcast notifications to different groups of subscribed userss,",
"type": "library",
"license": "MIT",
"keywords": ["php", "viber"],
"homepage": "https://github.com/sokil/php-viber-notifier",
"authors": [
{
"name": "Dmytro Sokil",
"email": "dmytro.sokil@gmail.com"
}
],
"autoload": {
"psr-4": {
"Sokil\\Viber\\Notifier\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Sokil\\Viber\\Notifier\\\\": ["tests/"]
}
},
"require": {
"php": ">=7.3",
"ext-json": "*",
"fig/http-message-util": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^2.2.0",
"squizlabs/php_codesniffer": "^3.6",
"slevomat/coding-standard": "^7.0",
"vimeo/psalm": "^4.3"
},
"suggest": {
"fig/http-message-util": "For supporting of PSR HTTP Clients",
"psr/http-message": "For supporting of PSR HTTP Clients",
"psr/http-server-handler": "For supporting of PSR HTTP Clients",
"psr/http-client": "For supporting of PSR HTTP Clients",
"psr/http-factory": "For supporting of PSR HTTP Clients"
},
"scripts": {
"test": "./vendor/bin/phpunit",
"cover": "./vendor/bin/phpunit --coverage-clover ./build/phpunit/clover.xml",
"coveralls": "./vendor/bin/php-coveralls -v",
"check-style": "./vendor/bin/phpcs",
"fix-style": "./vendor/bin/phpcbf",
"psalm": "./vendor/bin/psalm"
}
}