shimabox/pemojine

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "shimabox/pemojine",
    "description": "Pemojine is a library for handling Emoji in PHP.",
    "keywords": ["emoji", "converter", "random"],
    "type": "library",
    "license": "MIT",
    "homepage": "https://github.com/shimabox/pemojine",
    "authors": [
        {
            "name": "shimabox",
            "email": "shimabox@gmail.com"
        }
    ],
    "require": {
        "php": ">=5.5"
    },
    "require-dev": {
        "phpunit/phpunit": "~4.8 || ~5.0",
        "electrolinux/phpquery": "^0.9.6",
        "philo/laravel-blade": "3.*",
        "league/climate": "^3.2 || ^3.4",
        "codeclimate/php-test-reporter": "dev-master"
    },
    "autoload": {
        "psr-4": {
            "SMB\\Pemojine\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "SMB\\Pemojine\\Tests\\": "tests/",
            "SMB\\Pemojine\\Scraping\\": "scraping/src/",
            "SMB\\Pemojine\\Example\\": "example/"
        }
    },
    "scripts": {
        "test": "phpunit",
        "coverage": "phpunit --coverage-text --coverage-html tests/report/"
    }
}