-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
38 lines (38 loc) · 989 Bytes
/
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
{
"name": "laratalks/payment-gateways",
"description": "An abstract payment processor for Iranian payment providers, like Zarinpal, Payling and Saman bank.",
"keywords": ["payment", "payment gateway", "shaparak", "zarinpal", "payline"],
"license": "GNUv3",
"authors": [
{
"name": "Reza Shadman",
"email": "[email protected]"
},
{
"name": "Morteza Parvini",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"symfony/http-foundation": "^3.0",
"guzzlehttp/guzzle": "^6.1"
},
"require-dev" : {
"mockery/mockery": "~0.9.1",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Laratalks\\PaymentGateways\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
}
}