-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
41 lines (40 loc) · 961 Bytes
/
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
{
"name": "yii2mod/yii2-cashier",
"description": "Yii2 Cashier provides an interface to Stripe's subscription billing services.",
"type": "yii2-extension",
"keywords": [
"yii2",
"stripe",
"billing"
],
"license": "MIT",
"authors": [
{
"name": "Igor Chepurnoi",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"yiisoft/yii2": "~2.0.14",
"yii2mod/yii2-behaviors": "*",
"stripe/stripe-php": "~4.0",
"nesbot/carbon": "~1.0",
"dompdf/dompdf": "^0.8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.0",
"phpunit/phpunit": "~7.0"
},
"autoload": {
"psr-4": {
"yii2mod\\cashier\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}