-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
40 lines (40 loc) · 962 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
40
{
"name": "solutionplus/payable",
"description": "a laravel package to deal with otas payment handler.",
"type": "library",
"license": "proprietary",
"authors": [
{
"name": "Ahmed Mabrouk",
"email": "a.mabrouk@solutionplus.net"
}
],
"minimum-stability": "dev",
"require": {
"laravel/framework": ">=9",
"solutionplus/microservice": ">=1"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.4.4",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.0"
},
"extra": {
"laravel": {
"providers": [
"Solutionplus\\Payable\\PayableServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Solutionplus\\Payable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}