forked from mollie/laravel-mollie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.44 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
{
"name": "mollie/laravel-mollie",
"description": "Mollie API client wrapper for Laravel & Mollie Connect provider for Laravel Socialite",
"version": "1.3.0",
"homepage": "https://github.com/mollie/laravel-mollie",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Mollie B.V.",
"email": "[email protected]"
}
],
"keywords": [
"mollie", "payment", "service", "ideal", "creditcard", "mistercash", "bancontact", "sofort", "sofortbanking",
"sepa", "bitcoin", "paypal", "paysafecard", "podiumcadeaukaart", "banktransfer", "direct debit", "belfius",
"belfius direct net", "refunds", "api", "payments", "gateway", "subscriptions", "recurring", "charges",
"laravel", "lumen", "socialite"
],
"require": {
"php": "^5.5.9 || ^7.0",
"illuminate/contracts": "5.0.* || 5.1.* || 5.2.* || 5.3.*",
"illuminate/support": "5.0.* || 5.1.* || 5.2.* || 5.3.*",
"mollie/mollie-api-php": "~1.0"
},
"require-dev": {
"graham-campbell/testbench": "^3.1",
"phpunit/phpunit": "^4.8 || ^5.0",
"mockery/mockery": "^0.9.5"
},
"suggest": {
"laravel/socialite": "Use Mollie Connect (OAuth) to authenticate via Laravel Socialite with the Mollie API. This is needed for some endpoints."
},
"autoload": {
"psr-4": {
"Mollie\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mollie\\Laravel\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}