-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
40 lines (40 loc) · 864 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
38
39
40
{
"name": "mesilov/yandex-dialogs-php-sdk",
"description": "Yandex dialogs API PHP-wrapper",
"keywords": [
"Yandex",
"PHP",
"Dialogs",
"API"
],
"type": "library",
"homepage": "https://github.com/mesilov/yandex-dialogs-php-sdk",
"license": "MIT",
"authors": [
{
"name": "Maxim Mesilov",
"homepage": "https://github.com/mesilov/"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.9",
"jakub-onderka/php-console-highlighter": "~0.3",
"phpunit/phpunit": "~4.8",
"phpunit/phpunit-mock-objects": "2.3.0"
},
"autoload": {
"psr-4": {
"Yandex\\Dialogs\\": "src/Dialogs"
}
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --no-colors",
"phpunit --colors=always --verbose"
]
}
}