summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 3b933933a8f21688165b45acca63f0166a0efa1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
    "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"
        ]
    }
}