-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.2 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
{
"name": "kahu/sdk",
"description": "Kahu.app PHP SDK",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Flavio Heleno",
"email": "[email protected]",
"homepage": "https://flavioheleno.com"
}
],
"autoload": {
"psr-4": {
"Kahu\\SDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kahu\\SDK\\Test\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"cuyz/valinor": "^1.5",
"flavioheleno/jay": "^1.0",
"psr-discovery/http-client-implementations": "^1.0",
"psr-discovery/http-factory-implementations": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"ramsey/collection": "^2.0"
},
"require-dev": {
"kriswallsmith/buzz": "^1.2",
"nyholm/psr7": "^1.8",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.2",
"psy/psysh": "^0.11.18",
"roave/security-advisories": "dev-latest"
}
}