-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (34 loc) · 996 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
{
"name": "nanoblocktech/php-sms-gateways",
"type": "library",
"description": "PHP class for sms gateways, using same codebase implementaion to send sms in different sms gateways.",
"license": "MIT",
"keywords": ["PHP", "Luminova", "SMS", "SMS gateway", "multiple sms gateways", "ClickSend", "Vonage"],
"authors": [
{
"name": "Ujah Chigozie",
"email": "[email protected]"
},
{
"name": "Nanoblock Technology",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/nanoblocktech/php-sms-gateways/issues",
"source": "https://github.com/nanoblocktech/php-sms-gateways"
},
"require": {
"php": "^8.0"
},
"autoload": {
"psr-4": {
"Luminova\\ExtraUtils\\Sms\\": "src/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}