-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
25 lines (25 loc) · 1016 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
{
"name": "antaresproject/component-automation",
"description": "Automation is a module used to executte cyclic operations based on laravel task scheduler. It serves as a replacement for setting up your own cron jobs to make it easier to manage. It provides an intuitive control interface on the admin level. Automation can run tasks every few minutes, hourly, daily or weekly - depending how you set it up. Scheduled data is stored in the system database.",
"type": "antaresproject-component",
"homepage": "https://github.com/antaresproject/automation",
"version": "0.9.0",
"authors": [
{
"name": "Łukasz Cirut",
"email": "[email protected]"
}
],
"require": {
"antaresproject/component-installer-plugin": "*",
"php": ">=7.0.1"
},
"autoload": {
"psr-4": {
"Antares\\Automation\\": "src/"
}
},
"extra": {
"friendly-name": "Automation"
}
}