forked from bileto/cronner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.1 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
{
"name": "stekycz/cronner",
"type": "nette-addon",
"description": "Simple tool which helps with maintenance of cron tasks.",
"keywords": ["nette", "cron", "manager", "task"],
"license": "MIT",
"authors": [
{
"name": "Martin Štekl",
"email": "martin.stekl@gmail.com",
"role": "Developer"
}
],
"support": {
"email": "martin.stekl@gmail.com",
"issues": "https://github.com/stekycz/Cronner/issues",
"source": "https://github.com/stekycz/Cronner"
},
"require": {
"php": ">=7.0.0",
"tracy/tracy": "^2.4",
"nette/di": "^2.4",
"nette/bootstrap": "^2.4",
"nette/utils": "^2.4",
"nette/reflection": "^2.4",
"nette/safe-stream": "^2.3",
"stekycz/critical-section": "^1.0"
},
"require-dev": {
"nette/tester": "^1.7",
"jakub-onderka/php-parallel-lint": "^0.9",
"mockery/mockery": "^0.9",
"phpstan/phpstan": "^0.8"
},
"suggest": {
"kdyby/events": "Events for Nette Framework",
"kdyby/console": "Symfony Console integration for Kdyby components"
},
"autoload": {
"psr-4": {
"stekycz\\": "src"
}
},
"autoload-dev": {
"classmap": ["tests/CronnerTests/objects"]
}
}