-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
52 lines (52 loc) · 1.22 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
{
"name": "vanilo/stripe",
"description": "Stripe Payment Gateway Support for Vanilo (Laravel)",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Attila Fulop",
"homepage": "https://github.com/fulopattila122"
},
{
"name": "Hunor Kedves",
"homepage": "https://github.com/kedves"
}
],
"support": {
"issues": "https://github.com/vanilophp/stripe"
},
"require": {
"php": "^8.2",
"konekt/concord": "^1.13",
"laravel/framework": "^10.43|^11.0",
"vanilo/payment": "^4.1",
"vanilo/contracts": "^4.1",
"stripe/stripe-php": "^7.75"
},
"autoload": {
"psr-4": {
"Vanilo\\Stripe\\": "src"
}
},
"require-dev": {
"ext-sqlite3": "*",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit" : "^10.0"
},
"autoload-dev": {
"psr-4": {
"Vanilo\\Stripe\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
}
}