-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
59 lines (59 loc) · 1.24 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
53
54
55
56
57
58
59
{
"name": "bileto/cronner",
"type": "nette-addon",
"description": "Simple tool which helps with maintenance of cron tasks.",
"keywords": ["nette", "cron", "manager", "task"],
"license": "MIT",
"authors": [
{
"name": "Josef Petrák",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Martin Štekl",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/bileto/cronner/issues",
"source": "https://github.com/bileto/cronner"
},
"require": {
"php": ">=8.0",
"ext-calendar": "*",
"ext-json": "*",
"nette/di": "^3.0",
"nette/schema": "^1.2",
"nette/utils": "^3.2",
"nette/safe-stream": "^2.5",
"bileto/critical-section": "^2.1",
"tracy/tracy": "^2.9"
},
"require-dev": {
"nette/bootstrap": "^3.1",
"nette/tester": "^2.4",
"php-parallel-lint/php-parallel-lint": "^1.3",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.5"
},
"suggest": {
},
"replace": {
"stekycz/cronner": "v2.2.0"
},
"autoload": {
"psr-4": {
"Bileto\\": "src"
}
},
"autoload-dev": {
"classmap": ["tests/Bileto/CronnerTests/Objects"]
},
"scripts": {
"phpstan": "vendor/bin/phpstan",
"test": "vendor/bin/tester ."
}
}