-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.34 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "knocklabs/knockphp",
"description": "Knock PHP SDK",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Knock",
"email": "hello@knock.app",
"homepage": "https://knock.app/"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"league/uri-components": "^7.5.1",
"php-http/client-common": "^2.5",
"php-http/discovery": "^1.14",
"php-http/httplug": "^2.3",
"php-http/message-factory": "^1.0",
"php-http/multipart-stream-builder": "^1.2",
"psr/http-message": "^2.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0"
},
"autoload": {
"psr-4": {
"Knock\\KnockSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"php-http/mock-client": "^1.5",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^9.5",
"http-interop/http-factory-guzzle": "^1.2"
}
}