-
Notifications
You must be signed in to change notification settings - Fork 153
/
composer.json
executable file
·58 lines (58 loc) · 1.49 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
55
56
57
58
{
"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": "^7.3|^8.0.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3|^7.0",
"nesbot/carbon": "^1.0|^2.0|^3.0",
"google/apiclient": "^2.10",
"google/apiclient-services": "~0.249",
"robrichards/xmlseclibs": "^3.0.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"ReceiptValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ReceiptValidator\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/aporat/store-receipt-validator/issues"
}
}