-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
41 lines (37 loc) · 920 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
41
{
"name": "vmdevelopment/myfatoorah-laravel",
"description": "Myfathoorah REST API package",
"license": "MIT",
"authors": [
{
"name": "Vanand Mkrtchyan",
"email": "[email protected]",
"homepage": "http://www.vm-development.com/"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.1",
"ext-curl": "*",
"ext-json": "*",
"illuminate/support": "5.6.*|5.7.*|5.8.*",
"guzzlehttp/guzzle": ">=6.0"
},
"autoload": {
"psr-4": {
"VMdevelopment\\MyFatoorah\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VMdevelopment\\MyFatoorah\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"VMdevelopment\\MyFatoorah\\MyFatoorahServiceProfider"
]
}
}
}