-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
59 lines (59 loc) · 1.22 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
{
"name": "markette/gopay-inline",
"description": "GoPay Inline Payment Gateway",
"keywords": [
"eshop",
"payment",
"gopay",
"api",
"inline"
],
"homepage": "https://github.com/contributte/gopay-inline",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Milan Felix Šulc",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"moneyphp/money": "^3.0|^4.0"
},
"require-dev": {
"ninjify/qa": "^0.14",
"ninjify/nunjuck": "^0.3",
"mockery/mockery": "^1.3.3",
"phpstan/phpstan": "^1.8.5",
"phpstan/phpstan-strict-rules": "^1.4.3",
"phpstan/phpstan-nette": "^1.1.0",
"phpstan/phpstan-deprecation-rules": "^1.1.0",
"nette/di": "^3.0.0",
"nette/utils": "^3.0.0"
},
"suggest": {
"nette/di": "For GopayExtension"
},
"conflict": {
"nette/di": "<3.0"
},
"autoload": {
"psr-4": {
"Contributte\\GopayInline\\": "src/"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}