-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
executable file
·80 lines (80 loc) · 1.94 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
78
79
80
{
"name": "moyasar/moyasar",
"description": "PHP/Laravel wrapper library for Moyasar payment services",
"keywords": [
"moyasar",
"payment",
"invoice",
"pay",
"refund",
"visa",
"mada",
"master",
"card",
"sadad",
"laravel",
"apple",
"pay",
"capture",
"void",
"credit"
],
"type": "library",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name": "Ali Alhoshaiyan",
"email": "[email protected]"
},
{
"name": "Sohib H Algotimel",
"email": "[email protected]",
"homepage": "https://sgh.sa"
},
{
"name": "Moyasar Development Team",
"email": "[email protected]",
"homepage": "https://moyasar.com/"
}
],
"require": {
"php": "^7.2|^8.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"ext-json": "*",
"guzzlehttp/psr7": "^2.1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5.19|^9.5.8",
"mockery/mockery": "^1.2.4"
},
"suggest": {
"laravel/framework": "Allows Moyasar payment services to be auto injected into current app container"
},
"autoload": {
"psr-4": {
"Moyasar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"aliases": {
"Payment": "Moyasar\\Facades\\Payment",
"Invoice": "Moyasar\\Facades\\Invoice"
},
"providers": [
"Moyasar\\Providers\\LaravelServiceProvider"
]
}
},
"scripts": {
"test": "phpunit --colors=always",
"test:ci": "composer test -- --verbose --coverage-text --coverage-clover=coverage.xml"
}
}