forked from aporat/store-receipt-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·52 lines (52 loc) · 1.14 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
{
"name": "aporat/store-receipt-validator",
"description": "PHP receipt validator for Apple iTunes, Google Play and Amazon App Store",
"type": "library",
"authors": [
{
"name": "Adar Porat",
"email": "[email protected]",
"homepage": "https://github.com/aporat"
},
{
"name": "Stanimir Kukudov",
"email": "[email protected]",
"homepage": "https://github.com/stanimir-kukudov"
}
],
"keywords": [
"itunes",
"apple",
"in app",
"purchase",
"receipt"
],
"homepage": "https://github.com/aporat/store-receipt-validator",
"license": [
"Apache-2.0"
],
"require": {
"php": ">=5.4.0",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.3",
"nesbot/carbon": "^1.0",
"google/apiclient": "~2.0",
"robrichards/xmlseclibs": "^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"ReceiptValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ReceiptValidator\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/aporat/store-receipt-validator/issues"
}
}