| {
    "name": "joel-depiltech/codeigniter-gettext",
    "description": "A Codeigniter PHP framework package for dealing with gettext as a Composer requirement.",
    "time": "2016-12-23",
    "type": "library",
    "license": "GPL-2.0",
    "keywords": ["codeigniter", "gettext", "i18n", "translation", "language"],
    "authors": [
        {
            "name": "Joël Gaujard",
            "email": "[email protected] "
        },
        {
            "name": "Joël Gaujard",
            "email": "[email protected] "
        }
    ],
    "homepage": "https://github.com/joel-depiltech/codeigniter-gettext",
    "minimum-stability": "stable",
    "prefer-stable": true,
    "require": {
        "php": ">=5.6",
        "ext-gettext": "*"
    },
    "require-dev": {
        "phpunit/phpunit": "^5.7",
        "phing/phing": "^2.16",
        "codeigniter/framework": "^3.1"
    },
    "autoload": {
        "classmap": ["src/"]
    },
    "autoload-dev": {
        "psr-4": {
            "CodeIgniterGetText\\Tests\\": "tests/"
        },
        "files": [
            "tests/gettext_test.inc.php"
        ]
    },
    "scripts": {
        "test": [
            "phpunit",
            "phing"
        ]
    }
}
 |