-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
52 lines (52 loc) · 1.37 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
51
52
{
"name" : "phalcongelist/beanspeak",
"type" : "library",
"description": "Client for Beanstalk delivered as a C-extension for PHP.",
"keywords": [
"beanstalk",
"beanstalkd",
"beanspeak",
"queue",
"extension",
"job"
],
"homepage": "https://beanspeak.readthedocs.org",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "[email protected]",
"homepage": "https://phalconphp.com/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcongelist/beanspeak/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/phalcongelist/beanspea/issues",
"source": "https://github.com/phalcongelist/beanspea"
},
"require": {
"php": ">=5.4.0 <8.0"
},
"require-dev": {
"phpdocumentor/reflection-docblock": "^2.0.4",
"phpunit/phpunit": "^4.8",
"codeception/codeception": "~2.2",
"phalcon/zephir": "dev-master"
},
"autoload-dev": {
"psr-4": {
"Beanspeak\\Test\\Unit\\": "tests/unit/"
}
},
"scripts": {
"post-update-cmd": [
"php vendor/bin/codecept build"
]
},
"suggest": {
"ext-yaml" : "Best way to parse beanstalkd YAML-response"
}
}