-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.62 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
55
56
57
58
59
60
61
62
{
"name": "sandwave-io/f-secure",
"description": "A HTTP client for the F-Secure API.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "George Boon",
"email": "[email protected]"
},
{
"name": "Sander van Stokkom",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.5.0",
"jms/serializer-bundle": "^5.2.1"
},
"require-dev": {
"ergebnis/phpstan-rules": "^1.0.0",
"friendsofphp/php-cs-fixer": "^3.14.4",
"phpstan/extension-installer": "^1.2.0",
"phpstan/phpstan": "^1.10.6",
"phpstan/phpstan-deprecation-rules": "^1.1.2",
"phpstan/phpstan-phpunit": "^1.3.10",
"phpstan/phpstan-strict-rules": "^1.5.0",
"phpunit/phpunit": "^10.0.15",
"sandwave-io/php-cs-fixer-config": "^1.0.0",
"spaze/phpstan-disallowed-calls": "^2.12.0",
"thecodingmachine/phpstan-strict-rules": "^1.0.0"
},
"autoload": {
"psr-4": {
"SandwaveIo\\FSecure\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SandwaveIo\\FSecure\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"phpcs-fix": "vendor/bin/php-cs-fixer fix",
"phpcs-fix-dryrun": "vendor/bin/php-cs-fixer fix --dry-run --diff --show-progress=none -vvv --using-cache=no",
"phpunit": "vendor/bin/phpunit --coverage-text",
"phpstan": "vendor/bin/phpstan analyze",
"analyze": [
"@phpcs-fix-dryrun",
"@phpstan",
"@phpunit"
]
}
}