-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 828 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 828 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
{
"name": "neam/php-po2json",
"description": "Convert PO files to JSON strings. The result is Jed-compatible. Based on, and using same test fixtures as https://github.com/mikeedwards/po2json",
"keywords": ["php", "translation", "i18n"],
"homepage": "https://github.com/neam/php-po2json",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fredrik Wollsén",
"email": "fredrik@neam.se"
}
],
"repositories": [
{
"type":"vcs",
"url":"https://github.com/Gapminder/PHP-po-parser.git"
}
],
"autoload": {
"classmap": ["."]
},
"require": {
"php": ">=5.3.0",
"sepia/po-parser": "dev-master"
},
"require-dev": {
"codeception/codeception": "~1.8.3"
}
}