-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 768 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 768 Bytes
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": "nabeghe/alphanum",
"description": "Converting decimal numbers to alphanums, which include uppercase & lowercase letters as well as the underscore character, & vice versa.",
"keywords": [
"alphanum",
"alphabetic",
"string",
"numeric",
"numbers",
"decimal",
"sexagesimal",
"hexadecimal",
"library",
"helper",
"support"
],
"type": "library",
"homepage": "https://github.com/nabeghe/alphanum-php",
"license": "MIT",
"autoload": {
"psr-4": {
"Nabeghe\\Alphanum\\": "src/"
}
},
"authors": [
{
"name": "Hadi Akbarzadeh",
"email": "elsiomcoder@gmail.com",
"homepage": "https://elatel.ir",
"role": "Developer"
}
],
"require": {
"php": ">=7.0"
}
}