forked from Harborn-digital/tactician-scheduler-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 869 Bytes
/
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
{
"name": "connectholland/tactician-scheduler-plugin",
"description": "Tactician plugin that allows scheduling a command to be executed at a specific time in the future",
"require": {
"league/tactician": "^0.6.0 | ^1.0",
"ramsey/uuid": "^2.8",
"symfony/console": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^4.7",
"squizlabs/php_codesniffer": "^2.3",
"satooshi/php-coveralls": "^0.6.1"
},
"bin": [
"bin/scheduler"
],
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"tests/" ,
"vendor/league/tactician/tests"
]
},
"license": "MIT",
"authors": [
{
"name": "Ron Rademaker",
"email": "[email protected]"
}
]
}