-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.12 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
{
"name": "fpt/stripe-bundle",
"description": "Stripe bundle for Symfony 5.4 / 6 / 7",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"php",
"bundle",
"symfony",
"stripe",
"webhook"
],
"autoload": {
"psr-4": {
"Fpt\\StripeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fpt\\StripeBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Fabien Papet",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-curl": "*",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/http-client": "^5.4|^6.0|^7.0",
"stripe/stripe-php": ">=7"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^5.4|^6.0|^7.0",
"friendsofphp/php-cs-fixer": "^3.9",
"twig/twig": "^v3.4.1",
"phpstan/phpstan": "^1.8"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}