forked from mesilov/bitrix24-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 967 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
{
"name": "mesilov/bitrix24-php-sdk",
"description": "A powerfull PHP library for the Bitrix24 REST API",
"keywords": ["Bitrix24", "PHP", "REST", "API"],
"type": "library",
"homepage": "https://github.com/mesilov/bitrix24-php-sdk",
"license": "MIT",
"authors": [
{
"name": "Maxim Mesilov",
"homepage": "https://github.com/mesilov/"
}
],
"require": {
"php": ">=5.3.2",
"ext-json": "*",
"ext-curl": "*",
"psr/log": "^1.0"
},
"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": {
"classmap": ["src/"]
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --no-colors",
"phpunit --colors=always --verbose"
]
}
}