-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathcomposer.json
31 lines (31 loc) · 930 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
{
"name": "instasent/sms-counter-php",
"type": "library",
"description": "SMS Counter PHP Class Library which detects encoding of an SMS message text, counts the characters as per the encoding and gives page limit information.",
"keywords": ["SMS", "counter", "GSM", "Unicode", "Mobile"],
"homepage": "http://github.com/instasent/sms-counter-php",
"license": "MIT",
"authors": [
{
"name": "Luis Hdez",
"email": "[email protected]",
"homepage": "http://www.instasent.com"
},
{
"name": "Marcos Gómez",
"email": "[email protected]",
"homepage": "http://www.instasent.com"
}
],
"require": {
"php": ">=5.6.0"
},
"autoload": {
"psr-4": {
"Instasent\\SMSCounter\\": ""
}
},
"require-dev": {
"phpunit/phpunit": "^5.0"
}
}