forked from mogilvie/stripe-bundle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
55 lines (55 loc) · 1.48 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
{
"name": "miracode/stripe-bundle",
"description": "Symfony bundle to integrate Stripe PHP SDK. Ability to save Stripe objects in database using Doctrine.",
"keywords": [
"symfony",
"bundle",
"stripe",
"payment",
"php",
"webpayment"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name" : "Aleksey Mirovskyi",
"email": "[email protected]"
}
],
"require": {
"php" : ">=8.0.0",
"ext-json" : "*",
"symfony/framework-bundle" : ">=2.4",
"symfony/config" : ">=2.3",
"stripe/stripe-php" : ">=3.0",
"doctrine/common" : ">=2.2",
"doctrine/doctrine-bundle" : "^2.1"
},
"require-dev": {
"doctrine/orm" : ">=2.2",
"symfony/yaml" : "^2.8 || ^3.0 || ^4.0",
"phpunit/phpunit" : "~4.8|~5.0"
},
"suggest": {
"doctrine/orm" : "If you want to save stripe data in database"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Miracode\\StripeBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Miracode\\StripeBundle\\Tests\\": "/Tests/"
}
}
}