Blob Blame History Raw
{
    "name": "pda/pheanstalk",
    "type": "library",
    "description": "PHP client for beanstalkd queue",
    "keywords": ["beanstalkd"],
    "homepage": "https://github.com/pda/pheanstalk",
    "license": "MIT",
    "authors": [
        {
            "name": "Paul Annesley",
            "email": "paul@annesley.cc",
            "homepage": "http://paul.annesley.cc/",
            "role": "Developer"
        },
        {
            "name": "Sam Mousa",
            "email": "sam@mousa.nl",
            "role": "Maintainer"
        }
    ],
    "require": {
        "php": ">=7.1.0",
        "ext-mbstring": "*"
    },
    "require-dev": {
        "phpunit/phpunit": "^7",
        "vimeo/psalm": "^2.0",
        "phpdocumentor/phpdocumentor": "^2"
    },
    "autoload": {
        "psr-4": {
            "Pheanstalk\\": "src/"
        }
    },
    "scripts": {
        "phpunit": "docker-compose run --rm phpunit",
        "psalm": "@php vendor/bin/psalm --show-info=false src",
        "test": [
            "@composer install",
            "@phpunit"
        ]
    }
}