forked from aporat/store-receipt-validator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·40 lines (40 loc) · 865 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
{
"name" : "aporat/store-receipt-validator",
"description" : "PHP library that can be used to validate base64 encoded iTunes in app purchase receipts.",
"type" : "library",
"authors" : [{
"name" : "Adar Porat",
"email" : "adar.porat@gmail.com",
"homepage" : "http://github.com/aporat"
}
],
"keywords" : [
"itunes",
"apple",
"in app",
"purchase",
"receipt"
],
"homepage" : "https://github.com/aporat/store-receipt-validator",
"license" : [
"Apache-2.0"
],
"require" : {
"php" : ">=5.5",
"guzzlehttp/guzzle" : "~6.1",
"google/apiclient": "~1.1",
"robrichards/xmlseclibs": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0"
},
"autoload": {
"psr-4": {
"ReceiptValidator\\": "src/"
}
},
"support" : {
"email" : "adar.porat@gmail.com",
"issues" : "https://github.com/aporat/store-receipt-validator/issues"
}
}