This repository has been archived by the owner on Jan 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.6 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
{
"name": "northern-lights/ips-connect-client",
"description": "Client for IPS Connect API (IPS Community Suite)",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aleksandar Puharic",
"email": "xzero@elite7hackers.net",
"homepage": "https://www.elite7hackers.net"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.1",
"fzaninotto/faker": "^1.7",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"jakub-onderka/php-console-highlighter": "^0.3.2",
"jakub-onderka/php-parallel-lint": "^1.0",
"northern-lights/command": "^1.2",
"phpunit/php-invoker": "^1.1|^2.0",
"phpunit/phpunit": "^6.5|^7.0",
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {
"NorthernLights\\IPSConnectApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NorthernLights\\IPSConnectApi\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"check-style": "vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"php-lint": "vendor/bin/parallel-lint . -s --blame --exclude vendor --exclude tests -p php"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"apcu-autoloader": true
}
}