forked from imdhemy/appstore-iap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 996 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
41
42
43
{
"name": "imdhemy/appstore-iap",
"description": "PHP Appstore In-App Purchase implementation",
"license": "MIT",
"authors": [
{
"name": "imdhemy",
"email": "[email protected]"
}
],
"require": {
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0|^7.3",
"nesbot/carbon": "^2.51"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.3",
"vimeo/psalm": "^4.9",
"friendsofphp/php-cs-fixer": "^3.0",
"fakerphp/faker": "^1.15"
},
"autoload": {
"psr-4": {
"Imdhemy\\AppStore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Imdhemy\\AppStore\\Tests\\": "tests/"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"psalm-info": "vendor/bin/psalm --show-info=true",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"check-style": "vendor/bin/php-cs-fixer fix --dry-run",
"test": "vendor/bin/phpunit --testdox"
},
"config": {
"sort-packages": true
}
}