forked from crakter/bringapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 879 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
30
31
32
33
34
35
36
{
"name": "crakter/bringapi",
"type": "library",
"description": "BringApi is a fully functional library to help contact Bring API",
"version": "2.0.0",
"authors": [
{
"name": "Martin Madsen",
"email": "crakter@gmail.com",
"role": "developer"
}
],
"require": {
"php": ">=7.2.0",
"guzzlehttp/guzzle": ">=6.5.5"
},
"require-dev": {
"phpunit/phpunit": ">=8.5.8",
"friendsofphp/php-cs-fixer": ">=2.16.4",
"sami/sami": ">=4"
},
"suggest": {
"phpoffice/phpexcel": "Allows for convertion of response to JSON/array"
},
"autoload": {
"psr-4": {
"Crakter\\BringApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Crakter\\BringApi\\": "tests/"
}
},
"license": "MIT"
}