-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 864 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 864 Bytes
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
{
"name": "randomstate/mint",
"description": "Boilerplate billing integration for Laravel & Stripe",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Connor Forsyth",
"email": "connor@randomstate.co.uk"
}
],
"require": {
"randomstate/stripe": "^1.2",
"moneyphp/money": "^3.3"
},
"require-dev": {
"laravel/laravel": "^6.12",
"vlucas/phpdotenv": "^3.3",
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "^4.0"
},
"suggest": {
"ext-intl": "*"
},
"autoload": {
"psr-4": {
"RandomState\\Mint\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RandomState\\Mint\\Tests\\": "tests",
"Tests\\": "vendor/laravel/laravel/tests"
}
},
"extra": {
"laravel": {
"providers": [
"RandomState\\Mint\\MintServiceProvider"
]
}
}
}