-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
57 lines (57 loc) · 1.44 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
51
52
53
54
55
56
57
{
"name": "codenteq/iyzico-payment-gateway",
"type": "package",
"description": "The Laravel eCommerce Iyzico Payment Gateway",
"keywords": [
"codenteq",
"bagisto",
"payment",
"ecommerce",
"iyzico",
"opensource"
],
"license": "MIT",
"homepage": "https://codenteq.com",
"minimum-stability": "dev",
"authors": [
{
"name": "Ahmet Sefa Arşiv",
"email": "ahmetarsivpm@gmail.com",
"homepage": "https://github.com/ahmetarsiv",
"role": "Developer"
},
{
"name": "Ali Karabay",
"email": "alikarabay77@gmail.com",
"homepage": "https://github.com/karabayyazilim",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/codenteq/iyzico-payment-gateway",
"issues": "https://github.com/codenteq/iyzico-payment-gateway/issues",
"email": "info@codenteq.com"
},
"require": {
"iyzico/iyzipay-php": "^2.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/codenteq"
}
],
"autoload": {
"psr-4": {
"Webkul\\Iyzico\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Webkul\\Iyzico\\Providers\\IyzicoServiceProvider"
],
"aliases": {}
}
}
}