forked from sapsaldog/client-encryption-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 953 Bytes
/
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
{
"name": "mastercard/client-encryption",
"description": "Library for Mastercard API compliant payload encryption/decryption.",
"type": "library",
"license": "MIT",
"keywords": [
"openapi",
"mastercard",
"field-level-encryption",
"fle",
"encryption",
"decryption",
"php"
],
"authors": [
{
"name": "Mastercard"
}
],
"require": {
"phpseclib/phpseclib": "^2.0",
"symfony/polyfill-php70": "^1.19"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.2",
"yoast/phpunit-polyfills": "^1.0"
},
"suggest": {
"psr/http-message": "Allow usage of the PsrHttpMessageEncryptionInterceptor class"
},
"autoload": {
"psr-4": {
"Mastercard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mastercard\\": ["src/", "tests/"]
}
}
}