generated from wayofdev/laravel-package-tpl
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 2.6 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
71
72
73
74
75
76
77
78
{
"name": "wayofdev/laravel-stripe-webhooks",
"description": "Handle Stripe webhooks in a Laravel application with support of Cycle-ORM.",
"type": "library",
"license": "MIT",
"homepage": "https://wayof.dev",
"support": {
"issues": "https://github.com/wayofdev/laravel-stripe-webhooks/issues",
"source": "https://github.com/wayofdev/laravel-stripe-webhooks"
},
"authors": [
{
"name": "lotyp",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"cycle/database": "^2.8",
"cycle/orm": "^2.7",
"laravel/framework": "^v10.46",
"stripe/stripe-php": "^14.0",
"wayofdev/laravel-webhook-client": "^1.3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"larastan/larastan": "^2.9",
"orchestra/testbench": "^8.21",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^2.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-latest",
"wayofdev/cs-fixer-config": "^1.2"
},
"autoload": {
"psr-4": {
"WayOfDev\\StripeWebhooks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WayOfDev\\StripeWebhooks\\App\\": "tests/app/",
"WayOfDev\\StripeWebhooks\\Tests\\": "tests/src/"
}
},
"scripts": {
"cs:fix": "php vendor/bin/php-cs-fixer fix -v",
"cs:diff": "php vendor/bin/php-cs-fixer fix --dry-run -v --diff",
"test": "XDEBUG_MODE=coverage php vendor/bin/pest --colors=always",
"test:cc": "XDEBUG_MODE=coverage php vendor/bin/pest --colors=always --coverage-clover coverage.xml",
"stan": "php vendor/bin/phpstan analyse --memory-limit=2G",
"stan:ci": "php vendor/bin/phpstan analyse --memory-limit=2G --error-format=github"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"WayOfDev\\StripeWebhooks\\Bridge\\Laravel\\Providers\\StripeWebhooksServiceProvider"
]
},
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
}
}