forked from pheanstalk/pheanstalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.02 KB
/
composer.json
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
44
45
46
47
48
49
50
{
"name": "pda/pheanstalk",
"type": "library",
"description": "PHP client for beanstalkd queue",
"keywords": [
"beanstalkd"
],
"homepage": "https://github.com/pheanstalk/pheanstalk",
"license": "MIT",
"authors": [
{
"name": "Paul Annesley",
"email": "[email protected]",
"homepage": "http://paul.annesley.cc/",
"role": "Developer"
},
{
"name": "Sam Mousa",
"email": "[email protected]",
"role": "Maintainer"
}
],
"require": {
"php": "^8.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit" : "> 9",
"phpstan/phpstan": "^0.12.71",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Pheanstalk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pheanstalk\\Tests\\": ["tests/Pheanstalk"]
}
},
"scripts": {
"phpunit": "docker-compose run --rm phpunit",
"psalm": "@php vendor/bin/psalm --show-info=false src",
"test": [
"@composer install",
"@phpunit"
]
}
}