-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 2.29 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "paytic/payments",
"description": "Payments module for bytic library",
"license": "MIT",
"type": "library",
"keywords": [],
"authors": [
{
"name": "Gabriel Solomon",
"email": "[email protected]"
}
],
"homepage": "https://github.com/paytic/payments",
"require": {
"php": "^7.2 || ^8.0",
"ext-zlib": "*",
"bytic/event-discovery": "^0.9 || ^1.0",
"bytic/event-dispatcher": "^0.9 || ^1.0",
"bytic/form": "^0.9 || ^1.0",
"bytic/actions": "dev-main || ^1.0",
"bytic/medialibrary": "^0.8 || ^0.9",
"bytic/models-smart-properties": "^1.0.30",
"bytic/money": "^0.9 || ^1.0",
"bytic/signed-url": "dev-main || ^1.0",
"bytic/orm-behaviors": "^0.9 || ^1.0",
"bytic/orm-filters": "^0.9 || ^1.0",
"bytic/package-base": "^1.0",
"bytic/translation": "^0.9 || ^1.0",
"bytic/view": "^0.9 || ^1.0 || ^2.0",
"paytic/common-objects": "^1.0.8",
"php-http/httplug": "^1.0 || ^2.0",
"psr/http-client": "^1.0 || ^2.0",
"symfony/var-dumper": "^5.2 || ^6.0"
},
"require-dev": {
"bytic/admin-base": "^1.0",
"bytic/console": "^1.0",
"bytic/controllers": "^1.0 || ^2.0",
"bytic/controllers-extra": "^1.0 || ^2.0",
"bytic/facebook-pixel": "^1.0",
"bytic/migrations": "~0.12",
"bytic/phpqatools": "^1.0",
"paytic/payments-gateways": "^1.0",
"paytic/payments-tests": "^1.0",
"symfony/http-client": "^5.0 || ^6.0"
},
"suggest": {
"bytic/facebook-pixel": "^1.0",
"bytic/migrations": "~0.13"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Paytic\\Payments\\": "src/",
"Paytic\\Payments\\Legacy\\": "legacy/"
},
"classmap": [
"legacy"
],
"files": [
"src/Utility/general.php"
]
},
"autoload-dev": {
"psr-4": {
"Paytic\\Payments\\Tests\\": "tests/src",
"Paytic\\Payments\\Tests\\Fixtures\\": "tests/fixtures",
"Paytic\\Payments\\Mobilpay\\Tests\\Fixtures\\": "vendor/paytic/payments-mobilpay/tests/fixtures"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"bytic/phpqatools": true,
"php-http/discovery": true
}
}
}