-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.12 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
{
"name": "paytic/payments-tests",
"type": "library",
"license": "MIT",
"description": "Payments tests utility for bytic payments library",
"keywords": [],
"homepage": "https://github.com/paytic/payments-tests",
"authors": [
{
"name": "Gabriel Solomon",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Paytic\\Payments\\Tests\\": "src/",
"Paytic\\Payments\\Tests\\Codeception\\": "codeception/"
}
},
"require": {
"php": "^7.4|^8.0",
"bytic/http": "^1.0",
"bytic/dotenv": "^2.0|^4.0",
"bytic/translation": "^1.0",
"bytic/database": "^1.0",
"bytic/orm-behaviors": "^1.0",
"bytic/phpqatools": "^1.0",
"bytic/codeception": ">=4.1"
},
"require-dev": {
"omnipay/tests": "^3|^4",
"paytic/payments": "^1.0",
"vlucas/phpdotenv": "^4.0"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"bytic/phpqatools": true
}
}
}