generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
70 lines (70 loc) · 1.79 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "imdhemy/laravel-purchases",
"description": "The top-notch Laravel receipt validator.",
"keywords": [
"laravel-in-app-purchases",
"google_play",
"app_store",
"in_app_purchases",
"laravel"
],
"homepage": "https://imdhemy.com/laravel-iap-docs",
"license": "MIT",
"authors": [
{
"name": "imdhemy",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-openssl": "*",
"imdhemy/appstore-iap": "^1.6",
"imdhemy/google-play-billing": "^1.5",
"laravel/framework": ">=8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"orchestra/testbench": "^6.24",
"psalm/plugin-laravel": "^2.0",
"psalm/plugin-phpunit": "^0.19.0",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.11"
},
"autoload": {
"psr-4": {
"Imdhemy\\Purchases\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Imdhemy\\Purchases\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm --show-info=true",
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --allow-risky=yes",
"cs-check": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run --allow-risky=yes --format=txt --verbose",
"test": "vendor/bin/phpunit --testdox",
"security-advice": "composer update --dry-run roave/security-advisories"
},
"extra": {
"laravel": {
"providers": [
"Imdhemy\\Purchases\\ServiceProviders\\LiapServiceProvider"
],
"aliases": {
"Product": "\\Imdhemy\\Purchases\\Facades\\Product",
"Subscription": "\\Imdhemy\\Purchases\\Facades\\Subscription"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {},
"platform": {
"php": "8.1"
}
}
}