-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.07 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
{
"name": "mindwingx/service-call-adapter",
"description": "Laravel package designed to simplify the integration and communication with various microservices and third-party services.",
"authors": [
{
"name": "Milad Roudgarian",
"email": "[email protected]"
}
],
"keywords": [
"Laravel",
"Microservices",
"Service Call",
"Service Call Adapter"
],
"license": "MIT",
"require": {
"guzzlehttp/guzzle": "7.7"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0|^6.0",
"mockery/mockery": "1.6.x-dev"
},
"autoload": {
"psr-4": {
"Mindwingx\\ServiceCallAdapter\\": "src/",
"Mindwingx\\ServiceCallAdapter\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Mindwingx\\ServiceCallAdapter\\ServiceCallServiceProvider"
]
}
},
"scripts": {
"test": "./vendor/bin/phpunit ./tests/*.php"
}
}