-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.8 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
52
53
54
{
"name": "northern-lights/polr-client",
"type": "library",
"description": "Client for Polr API",
"license": "MIT",
"authors": [
{
"name": "Aleksandar Puharic",
"email": "xzero@elite7hackers.net",
"homepage": "https://www.elite7hackers.net"
}
],
"require": {
"php": ">=7.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3",
"illuminate/support": "^5.5",
"psr/http-message": "^1.0",
"symfony/serializer": "^4.2",
"zendframework/zend-config": "^3.2"
},
"require-dev": {
"jakub-onderka/php-console-highlighter": "^0.4.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpstan/phpstan": "^0.9.2",
"phpunit/php-invoker": "^1.1",
"phpunit/phpunit": "^6.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.3",
"symfony/var-dumper": "^3.4"
},
"config": {
"apcu-autoloader": true,
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"NorthernLights\\Client\\Polr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NorthernLights\\Client\\Polr\\Tests\\": "tests/"
}
},
"scripts": {
"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",
"phpstan": "phpstan analyse src -c phpstan.neon",
"test": "vendor/bin/phpunit"
}
}