kix/apiranha

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "kix/apiranha",
    "description": "An API client for PHP",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Stepan Anchugov",
            "email": "kixxx1@gmail.com"
        }
    ],
    "autoload": {
        "psr-4": { 
            "Kix\\Apiranha\\": "src/",
            "Kix\\Apiranha\\Tests\\": "tests/",
            "Kix\\Apiranha\\Examples\\": "examples/"
        }
    },
    "require": {
        "php": "^7.1",
        "guzzlehttp/guzzle": "^6.2",
        "doctrine/annotations": "@stable",
        "symfony/property-access": "@stable"
    },
    "require-dev": {
        "phpunit/phpunit": "^7.1",
        "symfony/serializer": "@stable",
        "jms/serializer": "@stable",
        "nikic/php-parser": "@stable",
        "guzzlehttp/guzzle": "@stable",
        "sstalle/php7cc": "^1.1",
        "symfony/console": "^3.1"
    },
    "suggest": {
        "nikic/php-parser": "Allows dumping definitions to PHP code",
        "symfony/serializer": "Adds support for (de)serializing common formats",
        "jms/serializer": "Adds support for (de)serializing common formats",
        "guzzlehttp/guzzle": "An HTTP client that's supported out-of-the-box"
    }
}