-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (38 loc) · 981 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
37
38
{
"name": "demyashev/market-scanner",
"description": "PHP SDK for ymscanner.ru",
"keywords": ["yandex", "market", "scanner", "api", "php", "sdk"],
"version": "1.0.0",
"time": "2019-08-20 14:00:00",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Alexander Demyashev",
"email": "alexander.demyashev@gmail.com",
"homepage": "https://demyashev.com",
"role": "developer"
}
],
"support": {
"email": "support@ymscanner.ru"
},
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.3",
"ext-json": "*"
},
"suggest": {
"php" : "PHP 7 strict mode",
"guzzlehttp/guzzle" : "HTTP requests to API and back",
"ext-json": "Decode API response"
},
"config": {
"vendor-dir": "src/vendor"
},
"autoload": {
"psr-4": {
"MarketScanner\\": "src"
}
}
}