-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
58 lines (58 loc) · 1.35 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": "imdhemy/appstore-iap",
"description": "PHP Appstore In-App Purchase implementation",
"license": "MIT",
"authors": [
{
"name": "imdhemy",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-openssl": "*",
"ext-sodium": "*",
"guzzlehttp/guzzle": "^7.6.0",
"lcobucci/clock": "^3.0",
"lcobucci/jwt": "^5.3",
"nesbot/carbon": "^2.66|^3.1"
},
"require-dev": {
"fakerphp/faker": "^1.22",
"friendsofphp/php-cs-fixer": "^3.16",
"phpunit/phpunit": "^9.6",
"psalm/plugin-phpunit": "^0.19.0",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.11"
},
"autoload": {
"psr-4": {
"Imdhemy\\AppStore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Imdhemy\\AppStore\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --testdox",
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run --diff --verbose",
"cs-fix": "php-cs-fixer fix --verbose",
"psalm": "psalm --no-cache",
"psalm-f": "psalm --ignore-baseline --output-format=compact",
"psalm-u": "psalm --update-baseline",
"keygen": "sh ./bin/keygen.sh",
"post-autoload-dump": [
"@keygen"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {},
"platform": {
"php": "8.1"
}
}
}