forked from artesaos/moip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.17 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.17 KB
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
{
"name": "artesaos/moip",
"description": "Integration of MoIP payment intermediary with Laravel 5",
"keywords": ["moip", "gateway", "payment", "laravel", "checkout", "intermediary"],
"homepage": "http://dev.moip.com.br",
"license": "MIT",
"type": "libraries",
"support": {
"issues": "https://github.com/artesaos/moip/issues",
"source": "https://github.com/artesaos/moip"
},
"authors": [
{
"name": "Jean Cesar Garcia",
"email": "jeancesargarcia@gmail.com"
}
],
"require": {
"php": ">=7.0",
"illuminate/config": "~5.1 || ~5.2 || ~5.3 || ~5.4",
"illuminate/support": "~5.1 || ~5.2 || ~5.3 || ~5.4",
"moip/moip-sdk-php": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"Artesaos\\Moip\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Artesaos\\Moip\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"minimum-stability": "dev"
}