-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.35 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.35 KB
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": "clarus-it/http-client",
"description": "Contoh HTTP client untuk keperluan mengakses API ke aplikasi-aplikasi buatan Clarus IT.",
"homepage": "https://clarus-it.co.id",
"type": "library",
"license": "MIT",
"keywords": [
"http",
"http-client",
"api",
"jwt",
"api-key",
"symfony",
"php",
"token",
"authentication",
"clarus"
],
"authors": [
{
"name": "Priyadi Iman Nurcahyo",
"email": "priyadi@clarus-it.co.id"
}
],
"require": {
"php": ">=8.2",
"graviton/link-header-rel-parser": "^1.0",
"lcobucci/jwt": "^5.2",
"symfony/http-client": "^6.4 || ^7.0",
"symfony/var-dumper": "^6.4 || ^7.0"
},
"require-dev": {
"ekino/phpstan-banned-code": "^1.0",
"phpstan/phpstan": "^1.10.50",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.18"
},
"autoload": {
"psr-4": {
"ClarusIt\\HttpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ClarusIt\\HttpClient\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}