mineur/instagram-parser

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "mineur/instagram-parser",
    "description": "PHP parser to consume the instagram feed.",
    "type": "php-library",
    "license": "MIT",
    "authors": [
        {
            "name": "Alex Casajuana",
            "email": "alexcm.14@gmail.com"
        }
    ],
    "minimum-stability": "stable",
    "require": {
        "php": ">=7.1",
        "guzzlehttp/guzzle": "^6.3.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^6.1",
        "symfony/var-dumper": "^3.2",
        "mockery/mockery": "^0.9.9",
        "fzaninotto/faker": "^1.6",
        "mmoreram/php-formatter": "^1.3"
    },
    "autoload": {
        "psr-4": {
            "Mineur\\InstagramParser\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Mineur\\InstagramParserTest\\": "test/"
        }
    },
    "config": {
        "bin-dir": "bin"
    },
    "scripts": {
        "fix-code": [
            "bin/php-formatter formatter:header:fix . --exclude=vendor",
            "bin/php-formatter formatter:strict:fix . --exclude=vendor",
            "bin/php-formatter formatter:use:sort . --exclude=vendor"
        ]
    }
}