forked from duffelhq/duffel-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.47 KB
/
composer.json
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
{
"name": "andrewdavid/duffel-api-php",
"type": "library",
"description": "Duffel API library for PHP (with missing features)",
"keywords": ["duffel", "flights", "flights-api", "travel"],
"homepage": "https://github.com/AndrewDavid/duffel-api-php",
"license": "MIT",
"authors": [
{
"name": "Duffel Technology Limited",
"email": "[email protected]"
},
{
"name": "Andrew-David Jahchan",
"email": "[email protected]"
}
],
"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/"}
}
}