-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
35 lines (35 loc) · 891 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
{
"name": "imper86/allegroapi",
"description": "Simple PHP SDK for Allegro.pl REST Api",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Adrian Szuszkiewicz",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"lcobucci/jwt": "^4.0",
"guzzlehttp/guzzle": "^6.3",
"ext-json": "*",
"ramsey/uuid": "^3.8",
"ext-fileinfo": "*",
"ext-soap": "*",
"psr/log": "*",
"php-http/httplug": "^2.0",
"php-http/guzzle6-adapter": "^2.0"
},
"autoload": {
"psr-4": {
"Imper86\\AllegroRestApiSdk\\": "src"
}
},
"require-dev": {
"symfony/var-dumper": "^4.3",
"wsdl2phpgenerator/wsdl2phpgenerator": "^3.4",
"graylog2/gelf-php": "^1.6",
"imper86/vbump": "^1.0"
}
}