-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 2.08 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
64
{
"name": "devmatchable/whop-php-sdk",
"description": "Framework-agnostic PHP SDK for the Whop API.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/devmatchable/whop-php-sdk",
"keywords": ["whop", "api", "sdk", "psr-18", "psr-7", "payments"],
"authors": [
{ "name": "Tolu Tourialai", "email": "tolu@matchable.dev", "role": "Lead developer & Maintainer" },
{ "name": "Jeroen Moonen", "email": "jeroen@matchable.dev", "role": "Co-Maintainer" }
],
"support": {
"issues": "https://github.com/devmatchable/whop-php-sdk/issues",
"source": "https://github.com/devmatchable/whop-php-sdk",
"docs": "https://github.com/devmatchable/whop-php-sdk/wiki",
"security": "https://github.com/devmatchable/whop-php-sdk/security/policy"
},
"require": {
"php": "^8.4",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0",
"php-http/discovery": "^1.19"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.80",
"infection/infection": "^0.33",
"nyholm/psr7": "^1.8",
"php-http/mock-client": "^1.6"
},
"suggest": {
"nyholm/psr7": "PSR-7/PSR-17 implementation",
"symfony/http-client": "PSR-18 client (or guzzlehttp/guzzle)"
},
"autoload": {
"psr-4": { "Matchable\\Whop\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Matchable\\Whop\\Tests\\": "tests/" }
},
"scripts": {
"cs": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"stan": "phpstan analyse",
"test": "phpunit",
"infection": "infection"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"infection/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}