forked from SynergiTech/creditsafe-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.08 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
{
"name": "synergitech/creditsafe-connect",
"type": "library",
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "^6.3",
"lcobucci/jwt": "^3.2.5"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12.65"
},
"license": "MIT",
"authors": [
{
"name": "Sean Lane",
"email": "sean@synergitech.co.uk"
}
],
"autoload": {
"psr-4": {
"SynergiTech\\Creditsafe\\" : "src/",
"SynergiTech\\Creditsafe\\Tests\\" : "tests/"
}
},
"scripts": {
"test": [
"@lint",
"@phpstan",
"vendor/bin/phpunit tests"
],
"lint": [
"vendor/bin/parallel-lint --no-colors --exclude vendor .",
"vendor/bin/phpcs --ignore=data,vendor --standard=PSR12 ."
],
"phpstan": [
"vendor/bin/phpstan analyse --memory-limit=2G src"
]
}
}