-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (39 loc) · 899 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
39
{
"name": "rasulian/laravel-zarinpal",
"description": "A Laravel package to accept and verify payments from ZarinPal gateway based on REST",
"keywords": [
"zarinpal",
"laravel",
"gateway",
"زرین پال",
"لاراول",
"درگاه پرداخت"
],
"license": "MIT",
"authors": [
{
"name": "Mehran Rasulian",
"email": "mehran.rasulian@gmail.com"
}
],
"require": {
"wmateam/curling": "^0.7.5"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"orchestra/testbench": "~3.0"
},
"autoload": {
"psr-4": {
"Rasulian\\ZarinPal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rasulian\\ZarinPal\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}