-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
49 lines (49 loc) · 1.07 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
{
"name": "imdhemy/google-play-billing",
"description": "Google Play Billing",
"license": "MIT",
"authors": [
{
"name": "imdhemy",
"email": "imdhemy@gmail.com"
}
],
"require": {
"php": ">=8.3",
"ext-json": "*",
"nesbot/carbon": "^2.66|^3.0",
"guzzlehttp/guzzle": "^7.5.1",
"google/auth": "^1.26",
"symfony/serializer": "^7.1",
"symfony/property-access": "^7.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.6.7",
"vimeo/psalm": "^5.26",
"friendsofphp/php-cs-fixer": "^3.16",
"fakerphp/faker": "^1.21",
"psalm/plugin-phpunit": "^0.19.0"
},
"autoload": {
"psr-4": {
"Imdhemy\\GooglePlay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"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"
},
"config": {
"platform": {
"php": "8.3"
}
}
}