-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 818 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 818 Bytes
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
{
"name": "parthenon/transaction-cloud",
"description": "A PHP Library to provide integration with transaction.cloud",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"TransactionCloud\\": "src/"
}
},
"authors": [
{
"name": "Iain Cambridge",
"email": "iain@humblyarrogant.io"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5",
"nyholm/psr7": "^1.5",
"php-http/guzzle7-adapter": "^1.0",
"friendsofphp/php-cs-fixer": "^3.11"
},
"require": {
"php": "^7.4 || ^8.0",
"psr/http-message": "^1.0",
"php-http/discovery": "^1.14",
"psr/http-client": "^1.0",
"php-http/client-common": "^2.5",
"brick/money": "^0.6.0"
}
}