-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
77 lines (77 loc) · 1.61 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "apoca/laravel-sibs-payments",
"description": "Laravel library to communicate with SIBS - Open Payment Platform.",
"homepage": "https://github.com/apoca/laravel-sibs-payments",
"type": "library",
"keywords": [
"http",
"rest",
"mbway",
"payments",
"web service",
"sibs",
"laravel",
"mobile payment",
"VISA",
"MASTER",
"AMEX",
"VPAY",
"MAESTRO",
"VISADEBIT",
"VISAELECTRON"
],
"license": "MIT",
"authors": [
{
"name": "Miguel Vieira",
"email": "[email protected]",
"homepage": "http://www.miguelvieira.com.pt"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"laravel/framework": "^5.8",
"mockery/mockery": "^1.2",
"orchestra/testbench": "^3.8",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/php-code-coverage": "^7.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Apoca\\Sibs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Apoca\\Sibs\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Apoca\\Sibs\\SibsServiceProvider"
],
"aliases": {
"Sibs": "Apoca\\Sibs\\Facade\\Sibs"
}
}
},
"scripts": {
"test": [
"vendor/bin/phpunit --colors=always --debug --filter"
],
"tests": [
"php -d memory_limit=512M vendor/bin/phpunit --colors=always --bootstrap vendor/autoload.php --testdox tests"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}