-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
35 lines (35 loc) · 873 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
{
"name": "rohit/line-pay",
"description": "Line Payment Package for Laravel",
"keywords": ["line pay", "payment", "php", "laravel"],
"homepage": "https://github.com/rohitsubedi/line-pay",
"license": "MIT",
"version": "3.0.0",
"authors": [
{
"name": "Rohit Subedi",
"email": "rohitsubedi@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7",
"guzzlehttp/guzzle": "^6.1"
},
"require-dev": {
"mockery/mockery": "dev-master",
"orchestra/testbench": "~3.3",
"phpunit/phpunit": "^6.3@dev"
},
"autoload": {
"psr-4": {
"Rohit\\LinePay\\": "src/Rohit/LinePay"
}
},
"autoload-dev": {
"psr-4": {
"Rohit\\Tests\\": "tests/"
}
},
"minimum-stability": "dev"
}