-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.41 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "yeganehha/digikala-seller-webhook",
"description": "With the help of this package, you can be informed about the registration of a new order in Digikala through social networks (like Telegram, Discord, SMS, etc.) and automatically update the stock of other similar products.",
"type": "library",
"license": "MIT",
"keywords": [
"digikala",
"digikala api",
"digikala webhook",
"digikala seller"
],
"homepage": "https://github.com/yeganehha/digikala-seller-webhook",
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Yeganehha\\DigikalaSellerWebhook\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yeganehha\\DigikalaSellerWebhook\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Erfan Ebrahimi",
"email": "[email protected]",
"homepage": "https://www.erfanebrahimi.ir/",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "7.5.x-dev",
"monolog/monolog": "2.x-dev"
},
"suggest": {
"ext-soap": "Needed to support some drivers that required SOAP"
},
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": "9"
},
"scripts": {
"test": "phpunit tests"
}
}