forked from affise/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 834 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 834 Bytes
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
{
"name": "affise/php-sdk",
"description": "Affise API's Official SDK",
"type": "library",
"keywords": [],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
"guzzlehttp/guzzle": "^6.5.2 || ^7.0",
"guzzlehttp/psr7": "^1.7.0"
},
"require-dev": {
"http-interop/http-factory-guzzle": "^1.0",
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^4.3"
},
"autoload": {
"psr-4": {
"Affise\\Sdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Affise\\Sdk\\": "tests"
}
},
"license": "MIT",
"minimum-stability": "stable",
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}