-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
33 lines (33 loc) · 1.01 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
{
"name": "filejet/filejet-php",
"license": "MIT",
"type": "library",
"description": "PHP library for communicating with FileJet service. FileJet handles upload of files to remote storage and is capable of simple image mutations.",
"autoload": {
"psr-4": {
"FileJet\\": "src/"
}
},
"require": {
"php": "^7.1|^8.0",
"psr/http-message": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^1.0|^2.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0",
"ext-json": "*"
},
"require-dev": {
"php-http/mock-client": "^1.0",
"php-http/message": "^1.0",
"guzzlehttp/psr7": "^1.0",
"phpunit/phpunit": "^7"
},
"suggest": {
"php-http/guzzle6-adapter": "HTTP client implementation which can be used with HTTPlug",
"php-http/message": "Supports HTTP client implementation"
},
"scripts": {
"test": "phpunit tests"
}
}