-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.48 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.48 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": "sendpulse/rest-api",
"description": "Official PHP SDK for the SendPulse REST API",
"type": "library",
"license": "MIT",
"homepage": "https://sendpulse.com/integrations/api",
"keywords": ["sendpulse", "api", "rest", "sdk", "email", "sms", "crm", "chatbots"],
"support": {
"issues": "https://github.com/sendpulse/sendpulse-rest-api-php/issues",
"source": "https://github.com/sendpulse/sendpulse-rest-api-php"
},
"require": {
"php": ">=8.3",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"cebe/php-openapi": "^1.8",
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"psr/simple-cache": "^3.0"
},
"suggest": {
"psr/http-client": "To plug in your own PSR-18 HTTP client (Guzzle, Symfony) instead of the bundled curl transport",
"psr/simple-cache": "To use your own PSR-16 cache for token storage instead of the default file cache"
},
"autoload": {
"psr-4": {
"Sendpulse\\RestApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sendpulse\\RestApi\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse",
"cs": "php-cs-fixer fix --diff",
"cs:check": "php-cs-fixer fix --dry-run --diff"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.3.0"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}