forked from emalify-oss/emalify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·43 lines (43 loc) · 1.08 KB
/
composer.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.08 KB
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
42
43
{
"name": "roamtech/gateway-api",
"description": "Roamtech Gateway API implementation",
"type": "library",
"keywords": ["gateway", "roamtech", "laravel", "sms", "api"],
"license": "MIT",
"authors": [
{
"name": "Leitato Albert",
"email": "wizqydy@gmail.com"
}
],
"autoload": {
"psr-4": {
"Roamtech\\Gateway\\": "src/Gateway/"
},
"files": ["src/Gateway/Support/config.php"]
},
"autoload-dev": {
"psr-4": {
"Roamtech\\Gateway\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Roamtech\\Gateway\\Laravel\\ServiceProvider"
],
"aliases": {
"RoamtechGateway": "Roamtech\\Gateway\\Laravel\\Facades\\Roamtech"
}
}
},
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "^6.2",
"illuminate/support": "~5.4",
"nesbot/carbon": "~1.21 |~2.0"
},
"require-dev": {
"phpunit/phpunit": "~5.7|~6.2"
}
}