-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
54 lines (54 loc) · 1.51 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
{
"name":"shadiakiki1986/fatca-ides-php",
"description":"PHP library for generation of FATCA IDES submission files",
"keywords":["FATCA","IDES","Encryption","Decryption"],
"type":"library",
"license":"CC0-1.0",
"homepage": "https://github.com/shadiakiki1986/fatca-ides-php",
"authors":[
{
"name":"Shadi Akiki",
"email":"s.akiki@ffaprivatebank.com"
}
],
"minimum-stability": "stable",
"require":{
"php":">=5.3.5",
"monolog/monolog": "^1.21",
"phpseclib/phpseclib": "*",
"robrichards/xmlseclibs":"*",
"shadiakiki1986/swiftmailer-wrapper": "^1.0",
"shadiakiki1986/xsd-to-php": "^0.1",
"ext-dom": "*",
"ext-mbstring": "*",
"ext-zip": "*",
"ext-mcrypt": "*",
"ext-bcmath": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"jakub-onderka/php-parallel-lint": "^0.9"
},
"suggest": {
"swiftmailer/swiftmailer": "php library for sending emails"
},
"autoload": {
"psr-4" : {
"FatcaIdesPhp\\" : "src/FatcaIdesPhp",
"FatcaXsdPhp\\" : "src/FatcaXsdPhp",
"oecd\\ties\\": "src/FatcaXsdPhp/oecd/ties/"
}
},
"autoload-dev": {
"psr-4" : {
"FatcaIdesPhp\\" : "tests/FatcaIdesPhp",
"FatcaXsdPhp\\" : "tests/FatcaXsdPhp"
}
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpunit"
]
}
}