forked from bileto/cronner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.06 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
{
"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": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/stekycz/Cronner/issues",
"source": "https://github.com/stekycz/Cronner"
},
"require": {
"php": ">=5.3.3",
"tracy/tracy": "@dev",
"nette/di": "@dev",
"nette/bootstrap": "@dev",
"nette/utils": "@dev",
"nette/reflection": "@dev",
"nette/safe-stream": "@dev"
},
"require-dev": {
"nette/tester": "~1.3",
"janmarek/mockista": "~1.0",
"jakub-onderka/php-parallel-lint": "~0.8"
},
"suggest": {
"kdyby/events": "Events for Nette Framework",
"kdyby/console": "Symfony Console integration for Kdyby components"
},
"autoload": {
"classmap": ["Cronner/"]
},
"autoload-dev": {
"classmap": ["tests/CronnerTests/objects"]
},
"config": {
"disable-tls": true
}
}