-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
36 lines (35 loc) · 962 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": "kanellov/transelot",
"description": "A simple function that translitterate greek to latin based on iso 843",
"type": "library",
"keywords": [
"greeklish", "translitterate", "iso843", "843", "iso", "elot", "greek"
],
"homepage": "https://github.com/kanellov/transelot",
"license": "MIT",
"authors": [
{
"name": "Vassilis Kanellopoulos",
"email": "[email protected]",
"homepage": "http://kanellov.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/kanellov/transelot/issues",
"source": "https://github.com/kanellov/transelot"
},
"require": {
"php": ">=5.3.2",
"ext-mbstring": "*"
},
"require-dev": {
"funkatron/funit": "0.6.0"
},
"autoload": {
"files": [
"transelot.php"
]
}
}