This repository was archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.31 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"name": "duffel/api",
"type": "library",
"description": "Duffel API library for PHP",
"keywords": ["duffel", "flights", "flights-api", "travel"],
"homepage": "https://duffel.com",
"license": "MIT",
"authors": [
{
"name": "Duffel Technology Limited",
"email": "help@duffel.com"
}
],
"require": {
"php": ">= 7.4",
"ext-json": "*",
"php-http/client-common": "^2.3",
"php-http/discovery": "^1.12",
"php-http/httplug": "^2.2",
"php-http/multipart-stream-builder": "^1.1.2",
"psr/cache": "^1.0 || ^2.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0",
"symfony/options-resolver": "^5.0 || ^6.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.7",
"http-interop/http-factory-guzzle": "^1.0",
"guzzlehttp/guzzle": "^7.2",
"php-http/mock-client": "^1.4.1",
"phpstan/phpstan": "^1.6",
"phpunit/phpunit": "^8.5 || ^9.4",
"thecodingmachine/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.2",
"ergebnis/phpstan-rules": "^1.0",
"vimeo/psalm": "^4.23"
},
"autoload": {
"psr-4": { "Duffel\\": "src/Duffel/" }
},
"autoload-dev": {
"psr-4": { "Duffel\\Tests\\": "tests/Duffel/Tests/"}
}
}