-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 860 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
{
"name": "um/sms-charset-detector",
"description": "Small library for detecting whether your sms is using gsm charset only or not",
"keywords": ["sms", "gsm", "ucs", "sms charset"],
"type": "library",
"minimum-stability": "stable",
"authors": [{
"name": "u-mulder",
"email": "kirill-lpk@ya.ru",
"homepage": "https://www.u-mulder.com/",
"role": "Developer"
}],
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Um\\CharsetDetector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Um\\CharsetDetector\\Tests\\": "test/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit test/"
},
"require": {
"ext-mbstring": "*",
"ext-json": "*"
}
}