-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 1.02 KB
/
composer.json
File metadata and controls
33 lines (33 loc) · 1.02 KB
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
{
"name": "transact-pro/gw3-client",
"description": "Library to work with Transact PRO gateway v3.0",
"homepage": "https://github.com/TransactPRO/gw3-php-client",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {"TransactPro\\Gateway\\": "src/Gateway"}
},
"autoload-dev": {
"psr-4": {"TransactPro\\Gateway\\": "tests/Gateway"}
},
"require-dev": {
"phpunit/phpunit": "^6.0 | ^9.5",
"php-parallel-lint/php-parallel-lint": "^1.3",
"friendsofphp/php-cs-fixer": "^3.1",
"phpstan/phpstan": "^1.9"
},
"scripts": {
"test": [
"./vendor/bin/parallel-lint . --exclude vendor",
"./vendor/bin/phpstan analyse --level 5 src tests",
"./vendor/bin/phpunit",
"./vendor/bin/php-cs-fixer fix --using-cache=no --dry-run"
],
"cs": "./vendor/bin/php-cs-fixer fix --using-cache=no"
}
}