-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 931 Bytes
/
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
{
"name": "everlutionsk/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": {
"Everlution\\FileJet\\": "src/",
"Tests\\Everlution\\FileJet\\": "tests/"
}
},
"require": {
"php": "^7.1",
"psr/http-message": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^1.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0"
},
"require-dev": {
"php-http/mock-client": "^1.0",
"php-http/message": "^1.0",
"guzzlehttp/psr7": "^1.0",
"phpunit/phpunit": "^7.0"
},
"scripts": {
"test": "./vendor/bin/phpunit --bootstrap vendor/autoload.php tests/"
}
}