forked from thecodingmachine/utils.i18n.fine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (66 loc) · 1.79 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "mouf/utils.i18n.fine",
"description": "Fine is a PHP internationalisation package. It will help you provide applications that support several languages. FINE means: Fine is not english :). Translation is performed using PHP mapping files, but you will have a nice graphical interface in the Mouf framework to write your own translated messages.",
"keywords": ["i18n", "internationalisation", "fine", "mouf"],
"homepage": "https://github.com/thecodingmachine/utils.i18n.fine",
"type": "mouf-library",
"license": "MIT",
"authors": [
{
"name": "David Négrier",
"email": "d.negrier@thecodingmachine.com",
"homepage": "http://mouf-php.com"
},
{
"name": "Marc Teyssier",
"email": "m.teyssier@thecodingmachine.com",
"homepage": "http://mouf-php.com"
}
],
"require": {
"php": ">=5.3.0",
"mouf/mouf-installer": "~2.0"
},
"autoload": {
"psr-0": {
"Mouf\\Utils\\I18n\\Fine\\": "src/"
},
"files": ["src/msgFunctions.php"]
},
"minimum-stability": "dev",
"extra": {
"mouf": {
"install": [
{
"type": "file",
"file": "src/install.php"
}
],
"require-admin": [
"src/FineAdmin.php"
],
"doc": [
{
"title": "Install",
"url": "doc/install.md"
},
{
"title": "Using FINE",
"url": "doc/using_fine.md"
},
{
"title": "Tutorial",
"url": "doc/tutorial.md"
},
{
"title": "Date functions",
"url": "doc/date_functions.md"
},
{
"title": "Currency functions",
"url": "doc/currency_functions.md"
}
]
}
}
}