-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
42 lines (42 loc) · 1008 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
41
42
{
"name": "erjanmx/sisense-api-client-php",
"description": "Sisense API Client",
"type": "library, api-client",
"license": "MIT",
"authors": [
{
"name": "Erzhan Kalybek",
"email": "e.kalybek@pointerbp.com"
}
],
"autoload": {
"psr-4": {
"Sisense\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.0",
"guzzlehttp/guzzle": "~6.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^6",
"squizlabs/php_codesniffer": "3.*",
"doctrine/instantiator": "~1.0.3",
"myclabs/deep-copy": "1.7.*"
},
"scripts": {
"test": "vendor/phpunit/phpunit/phpunit",
"check": "vendor/bin/phpcs --standard=PSR2 --ignore=vendor/ ."
}
}