-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.84 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.84 KB
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
53
54
55
56
57
58
59
60
61
62
{
"name": "g4/tasker",
"homepage": "http://g4fw.com/tasker",
"description": "Application asynchronous tasks manager and runner, cron-like PHP implementation with ability to run tasks with resolution in seconds",
"license": "MIT",
"keywords": [
"g4code",
"g4fw",
"task",
"queue",
"cron",
"async"
],
"authors": [
{
"name": "Dejan Samardzija",
"email": "samardzija.dejan@gmail.com"
},
{
"name": "Drasko Gomboc",
"email": "drasko.gomboc@gmail.com"
},
{
"name": "Ivan Krickovic",
"email": "ivan.krickovic@gmail.com"
}
],
"require": {
"ext-json" : "*",
"ext-pdo" : "*",
"php" : ">=7.3",
"g4/cron" : "*",
"g4/log" : ">=1.48.0",
"g4/mcache" : "^1.4 || ^2.0"
},
"require-dev": {
"phpunit/phpunit" : "5.*",
"g4/code-coverage" : "1.*"
},
"scripts": {
"unit-test": [
"vendor/bin/phpunit -c tests/unit/phpunit.xml --colors=always --coverage-html tests/unit/coverage"
],
"test-coverage": [
"./vendor/bin/phpunit --colors=always -c tests/unit/phpunit.xml --coverage-text"
],
"test-report": [
"./vendor/bin/phpunit --colors=always -c tests/unit/phpunit.xml --coverage-clover=tests/unit/coverage/code-coverage.xml"
],
"code-coverage": [
"./vendor/bin/code-coverage -p 90 -f tests/unit/coverage/code-coverage.xml"
]
},
"suggest": {
"php-amqplib/php-amqplib": "Use RabbitMQ for task processing"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {"G4\\Tasker\\": "src/"}
}
}