forked from contributte/gopay-inline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.2 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
58
59
60
61
62
63
64
65
66
{
"name": "markette/gopay-inline",
"description": "GoPay Inline Payment Gateway",
"keywords": ["eshop", "payment", "gopay", "api", "inline"],
"homepage": "https://github.com/Contributte/GopayInline",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Milan Felix Šulc",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"moneyphp/money": "^3.3"
},
"require-dev": {
"ninjify/qa": "^0.12",
"ninjify/nunjuck": "dev-master as v0.3.99",
"nette/tester": "^2.3.1",
"mockery/mockery": "^1.3.3",
"phpstan/phpstan": "^0.12.34",
"phpstan/phpstan-strict-rules": "^0.12",
"nette/di": "^2.4.16|^3.0",
"nette/utils": "^2.5.5|^3.0"
},
"suggest": {
"nette/di": "For GopayExtension"
},
"autoload": {
"psr-4": {
"Contributte\\GopayInline\\": "src/"
}
},
"extra": {
"ninjify": {
"qa": {
"codesniffer": {
"ruleset": "nette",
"folders": [
"src",
"tests"
]
},
"codefixer": {
"ruleset": "nette",
"folders": [
"src",
"tests"
]
},
"linter": {
"folders": [
"src",
"tests"
]
}
}
},
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}