{"id":23479499,"url":"https://github.com/plinker-rpc/tasks","last_synced_at":"2025-04-13T17:59:19.537Z","repository":{"id":57042728,"uuid":"103998638","full_name":"plinker-rpc/tasks","owner":"plinker-rpc","description":"The tasks component allows you to write code based tasks which are completed by a daemon, this could allow you to create a single interface to control a cluster of servers tasks.","archived":false,"fork":false,"pushed_at":"2018-05-30T05:53:03.000Z","size":184,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-16T08:15:54.264Z","etag":null,"topics":["composer-package","php","plinker-rpc","tasks"],"latest_commit_sha":null,"homepage":"https://plinker-rpc.github.io/tasks","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/plinker-rpc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-09-18T22:31:01.000Z","updated_at":"2018-05-30T05:52:45.000Z","dependencies_parsed_at":"2022-08-23T23:40:09.050Z","dependency_job_id":null,"html_url":"https://github.com/plinker-rpc/tasks","commit_stats":null,"previous_names":[],"tags_count":60,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plinker-rpc%2Ftasks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plinker-rpc%2Ftasks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plinker-rpc%2Ftasks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plinker-rpc%2Ftasks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plinker-rpc","download_url":"https://codeload.github.com/plinker-rpc/tasks/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248758435,"owners_count":21156957,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["composer-package","php","plinker-rpc","tasks"],"created_at":"2024-12-24T19:29:53.706Z","updated_at":"2025-04-13T17:59:19.511Z","avatar_url":"https://github.com/plinker-rpc.png","language":"PHP","readme":"# PlinkerRPC - Tasks\n\nThe tasks component allows you to write code based tasks which are completed by a daemon, \nthis could allow you to create a single interface to control a cluster of servers tasks.\n\n## Install\n\nRequire this package with composer using the following command:\n\n``` bash\n$ composer require plinker/tasks\n```\n\n## CRON Daemon\n\nYou should create a file which will be run via cron:\n\n**cron.php**\n\n    \u003c?php\n    require 'vendor/autoload.php';\n\n    if (php_sapi_name() != 'cli') {\n        header('HTTP/1.0 403 Forbidden');\n        exit('CLI script');\n    }\n\n    $task = new Plinker\\Tasks\\Runner([\n        'database' =\u003e [\n            'dsn'      =\u003e 'sqlite:./.plinker/database.db',\n            'host'     =\u003e '',\n            'name'     =\u003e '',\n            'username' =\u003e '',\n            'password' =\u003e '',\n            'freeze'   =\u003e false,\n            'debug'    =\u003e false\n        ],\n        'debug'       =\u003e true,\n        'log'         =\u003e true,\n        'sleep_time'  =\u003e 2,\n        'tmp_path'    =\u003e './.plinker',\n        'auto_update' =\u003e 86400\n    ]);\n    \n    $task-\u003edaemon('Queue');\n    \nThen add a cron job:\n\n - `@reboot while sleep 1; do cd /var/www/html/examples/tasks \u0026\u0026 /usr/bin/php run.php ; done`\n\n\n## Client\n\nCreating a client instance is done as follows:\n\n\n    \u003c?php\n    require 'vendor/autoload.php';\n\n    /**\n     * Initialize plinker client.\n     *\n     * @param string $server - URL to server listener.\n     * @param string $config - server secret, and/or a additional component data\n     */\n    $client = new \\Plinker\\Core\\Client(\n        'http://example.com/server.php',\n        [\n            'secret' =\u003e 'a secret password',\n            // database connection\n            'database' =\u003e [\n                'dsn'      =\u003e 'sqlite:./.plinker/database.db',\n                'host'     =\u003e '',\n                'name'     =\u003e '',\n                'username' =\u003e '',\n                'password' =\u003e '',\n                'freeze'   =\u003e false,\n                'debug'    =\u003e false,\n            ],\n            // displays output to task runner console\n            'debug' =\u003e true,\n        \n            // daemon sleep time\n            'sleep_time' =\u003e 1,\n            'tmp_path'   =\u003e './.plinker'\n        ]\n    );\n    \n    // or using global function\n    $client = plinker_client('http://example.com/server.php', 'a secret password', [\n        // database connection\n        'database' =\u003e [\n            'dsn'      =\u003e 'sqlite:./.plinker/database.db',\n            'host'     =\u003e '',\n            'name'     =\u003e '',\n            'username' =\u003e '',\n            'password' =\u003e '',\n            'freeze'   =\u003e false,\n            'debug'    =\u003e false,\n        ],\n        // displays output to task runner console\n        'debug' =\u003e true,\n    \n        // daemon sleep time\n        'sleep_time' =\u003e 1,\n        'tmp_path'   =\u003e './.plinker'\n    ]);\n    \n\n## Methods\n\nOnce setup, you call the class though its namespace to its method.\n\n### Create\n\nCreate a new task, tasks with the same name will be overwritten.\n\n| Parameter   | Type           | Description   | Default         |\n| ----------  | -------------  | ------------- |  -------------- | \n| name        | string         | Name of task  |                 |\n| source      | string         | Task source code |              |\n| type        | string         | Type of task (php\\|bash) |       |\n| description | string         | Description of task |           |\n| params      | array          | Default params passed to task | |\n\n\n**Call**\n``` php\n$client-\u003etasks-\u003ecreate(\n    'Hello World',\n    '\u003c?php echo \"Hello World\";',\n    'php',\n    'My Hello World task',\n    []\n)\n```\n\n**Response**\n``` text\nArray\n(\n    [id] =\u003e 1\n    [name] =\u003e Hello World\n    [source] =\u003e  cda22aa1e43992c1103a9f8a386b5dcb\n    [type] =\u003e php\n    [description] =\u003e My Hello World task\n    [params] =\u003e \n    [updated] =\u003e 2018-01-01 00:00:00\n    [created] =\u003e 2018-01-01 00:00:00\n)\n```\n\n### Update\n\nUpdate a task.\n\n| Parameter   | Type           | Description   | Default         |\n| ----------  | -------------  | ------------- |  -------------- | \n| id          | int            | Id of task    |                 |\n| name        | string         | Name of task  |                 |\n| source      | string         | Task source code |              |\n| type        | string         | Type of task (php\\|bash) |       |\n| description | string         | Description of task |           |\n| params      | array          | Default params passed to task | |\n\n\n**Call**\n``` php\n$client-\u003etasks-\u003eupdate(\n    1\n    'Hello World',\n    '\u003c?php echo \"Hello World - Updated\";',\n    'php',\n    'My Hello World task',\n    []\n)\n```\n\n**Response**\n``` text\nArray\n(\n    [id] =\u003e 1\n    [name] =\u003e Hello World - Updated\n    [source] =\u003e  cda22aa1e43992c1103a9f8a386b5dcb\n    [type] =\u003e php\n    [description] =\u003e My Hello World task\n    [params] =\u003e \n    [updated] =\u003e 2018-01-01 00:00:00\n    [created] =\u003e 2018-01-01 00:00:00\n)\n```\n\n### Get\n\nGet a task.\n\n| Parameter   | Type           | Description   | Default         |\n| ----------  | -------------  | ------------- |  -------------- | \n| name        | string         | Name of task  |                 |\n\n**Call**\n``` php\n$client-\u003etasks-\u003eget('Hello World');\n```\n\n**Response (RedBean Object)**\n``` text\nRedBeanPHP\\OODBBean Object\n(\n    [properties:protected] =\u003e Array\n        (\n            [id] =\u003e 1\n            [name] =\u003e Hello World\n            [source] =\u003e  cda22aa1e43992c1103a9f8a386b5dcb\n            [type] =\u003e php\n            [description] =\u003e My Hello World task\n            [params] =\u003e \n            [updated] =\u003e 2018-01-01 00:00:00\n            [created] =\u003e 2018-01-01 00:00:00\n        )\n\n    [__info:protected] =\u003e Array\n        (\n            [type] =\u003e tasksource\n            [sys.id] =\u003e id\n            [sys.orig] =\u003e Array\n                (\n                    [id] =\u003e 1\n                    [name] =\u003e Hello World\n                    [source] =\u003e  cda22aa1e43992c1103a9f8a386b5dcb\n                    [type] =\u003e php\n                    [description] =\u003e My Hello World task\n                    [params] =\u003e \n                    [updated] =\u003e 2018-01-01 00:00:00\n                    [created] =\u003e 2018-01-01 00:00:00\n                )\n\n            [tainted] =\u003e \n            [changed] =\u003e \n            [changelist] =\u003e Array\n                (\n                )\n\n            [model] =\u003e \n        )\n\n    [beanHelper:protected] =\u003e RedBeanPHP\\BeanHelper\\SimpleFacadeBeanHelper Object\n        (\n        )\n\n    [fetchType:protected] =\u003e \n    [withSql:protected] =\u003e \n    [withParams:protected] =\u003e Array\n        (\n        )\n\n    [aliasName:protected] =\u003e \n    [via:protected] =\u003e \n    [noLoad:protected] =\u003e \n    [all:protected] =\u003e \n)\n```\n\n### Get By Id\n\nGet a task by id.\n\n| Parameter   | Type           | Description   | Default         |\n| ----------  | -------------  | ------------- |  -------------- | \n| id          | int            | Id of task    |                 |\n\n**Call**\n``` php\n$client-\u003etasks-\u003egetById(1);\n```\n\n**Response (RedBean Object)**\n``` text\nRedBeanPHP\\OODBBean Object\n(\n    [properties:protected] =\u003e Array\n        (\n            [id] =\u003e 1\n            [name] =\u003e Hello World\n            [source] =\u003e  cda22aa1e43992c1103a9f8a386b5dcb\n            [type] =\u003e php\n            [description] =\u003e My Hello World task\n            [params] =\u003e \n            [updated] =\u003e 2018-01-01 00:00:00\n            [created] =\u003e 2018-01-01 00:00:00\n        )\n\n    [__info:protected] =\u003e Array\n        (\n            [type] =\u003e tasksource\n            [sys.id] =\u003e id\n            [sys.orig] =\u003e Array\n                (\n                    [id] =\u003e 1\n                    [name] =\u003e Hello World\n                    [source] =\u003e  cda22aa1e43992c1103a9f8a386b5dcb\n                    [type] =\u003e php\n                    [description] =\u003e My Hello World task\n                    [params] =\u003e \n                    [updated] =\u003e 2018-01-01 00:00:00\n                    [created] =\u003e 2018-01-01 00:00:00\n                )\n\n            [tainted] =\u003e \n            [changed] =\u003e \n            [changelist] =\u003e Array\n                (\n                )\n\n            [model] =\u003e \n        )\n\n    [beanHelper:protected] =\u003e RedBeanPHP\\BeanHelper\\SimpleFacadeBeanHelper Object\n        (\n        )\n\n    [fetchType:protected] =\u003e \n    [withSql:protected] =\u003e \n    [withParams:protected] =\u003e Array\n        (\n        )\n\n    [aliasName:protected] =\u003e \n    [via:protected] =\u003e \n    [noLoad:protected] =\u003e \n    [all:protected] =\u003e \n)\n```\n\n### Get Task Sources\n\nGet all tasks.\n\n**Call**\n``` php\n$client-\u003etasks-\u003egetTaskSources();\n```\n\n**Response (RedBean Object)**\n``` text\nArray\n(\n    [1] =\u003e RedBeanPHP\\OODBBean Object\n        (\n            [properties:protected] =\u003e Array\n                (\n                    [id] =\u003e 1\n                    [name] =\u003e Hello World\n                    [source] =\u003e  cda22aa1e43992c1103a9f8a386b5dcb\n                    [type] =\u003e php\n                    [description] =\u003e My Hello World task\n                    [params] =\u003e \n                    [updated] =\u003e 2018-01-01 00:00:00\n                    [created] =\u003e 2018-01-01 00:00:00\n                )\n        \n            [__info:protected] =\u003e Array\n                (\n                    [type] =\u003e tasksource\n                    [sys.id] =\u003e id\n                    [sys.orig] =\u003e Array\n                        (\n                            [id] =\u003e 1\n                            [name] =\u003e Hello World\n                            [source] =\u003e  cda22aa1e43992c1103a9f8a386b5dcb\n                            [type] =\u003e php\n                            [description] =\u003e My Hello World task\n                            [params] =\u003e \n                            [updated] =\u003e 2018-01-01 00:00:00\n                            [created] =\u003e 2018-01-01 00:00:00\n                        )\n        \n                    [tainted] =\u003e \n                    [changed] =\u003e \n                    [changelist] =\u003e Array\n                        (\n                        )\n        \n                    [model] =\u003e \n                )\n        \n            [beanHelper:protected] =\u003e RedBeanPHP\\BeanHelper\\SimpleFacadeBeanHelper Object\n                (\n                )\n        \n            [fetchType:protected] =\u003e \n            [withSql:protected] =\u003e \n            [withParams:protected] =\u003e Array\n                (\n                )\n        \n            [aliasName:protected] =\u003e \n            [via:protected] =\u003e \n            [noLoad:protected] =\u003e \n            [all:protected] =\u003e \n        )\n    )\n)\n```\n\n### Status\n\nGet the status of a task.\n\n| Parameter   | Type           | Description   | Default        |\n| ----------  | -------------  | ------------- |  ------------- | \n| name        | string         | Name of task  | |\n\n**Call**\n``` php\n$client-\u003etasks-\u003estatus('Hello World');\n```\n\n**Response**\n``` text\nrunning\n```\n\n### Run Count\n\nGet the run count of a particular task.\n\n| Parameter   | Type           | Description   | Default        |\n| ----------  | -------------  | ------------- |  ------------- | \n| name        | string         | Name of task  | |\n\n**Call**\n``` php\n$client-\u003etasks-\u003erunCount('Hello World');\n```\n\n**Response**\n``` text\n100\n```\n\n### Remove\n\nRemove a task by its name.\n\n| Parameter   | Type           | Description   | Default        |\n| ----------  | -------------  | ------------- |  ------------- | \n| name        | string         | Name of task  | |\n\n**Call**\n``` php\n$client-\u003etasks-\u003eremove('Hello World');\n```\n\n**Response**\n``` text\ntrue\n```\n\n### Remove By Id\n\nRemove a task by its id.\n\n| Parameter   | Type           | Description   | Default        |\n| ----------  | -------------  | ------------- |  ------------- | \n| id          | int            | Id of task    |                |\n\n**Call**\n``` php\n$client-\u003etasks-\u003eremoveById(1);\n```\n\n**Response**\n``` text\ntrue\n```\n\n### Get Tasks Log\n\nTask logs are entries created, when a task is run. Use this method to get the data.\n\n| Parameter   | Type           | Description   | Default        |\n| ----------  | -------------  | ------------- |  ------------- | \n| tasksource_id | int          | The id of the task source (optional) |  |\n\n\n**Call**\n``` php\n$result = $client-\u003etasks-\u003egetTasksLog();\n```\n\n**Response**\n``` text\nArray\n(\n    [1] =\u003e RedBeanPHP\\OODBBean Object\n        (\n            [properties:protected] =\u003e Array\n                (\n                    [id] =\u003e 1\n                    [name] =\u003e Hello World\n                    [params] =\u003e []\n                    [repeats] =\u003e 1\n                    [completed] =\u003e 0\n                    [sleep] =\u003e 1\n                    [tasksource_id] =\u003e 1\n                    [run_last] =\u003e 2018-01-01 00:00:00\n                    [run_next] =\u003e 2018-01-01 00:00:00\n                    [run_count] =\u003e 6\n                    [result] =\u003e \n                    [tasksource] =\u003e \n                )\n\n            [__info:protected] =\u003e Array\n                (\n                    [type] =\u003e tasks\n                    [sys.id] =\u003e id\n                    [sys.orig] =\u003e Array\n                        (\n                            [id] =\u003e 1\n                            [name] =\u003e Hello World\n                            [params] =\u003e []\n                            [repeats] =\u003e 1\n                            [completed] =\u003e 0\n                            [sleep] =\u003e 1\n                            [tasksource_id] =\u003e 1\n                            [run_last] =\u003e 2018-01-01 00:00:00\n                            [run_next] =\u003e 2018-01-01 00:00:00\n                            [run_count] =\u003e 6\n                            [result] =\u003e \n                            [tasksource] =\u003e \n                        )\n\n                    [tainted] =\u003e \n                    [changed] =\u003e \n                    [changelist] =\u003e Array\n                        (\n                        )\n\n                    [model] =\u003e \n                )\n\n            [beanHelper:protected] =\u003e RedBeanPHP\\BeanHelper\\SimpleFacadeBeanHelper Object\n                (\n                )\n\n            [fetchType:protected] =\u003e \n            [withSql:protected] =\u003e \n            [withParams:protected] =\u003e Array\n                (\n                )\n\n            [aliasName:protected] =\u003e \n            [via:protected] =\u003e \n            [noLoad:protected] =\u003e \n            [all:protected] =\u003e \n        )\n    )\n)\n```\n\n### Get Tasks Log Count\n\nTask logs are entries created, when a task is run. Use this method to get the counts.\n\n| Parameter   | Type           | Description   | Default        |\n| ----------  | -------------  | ------------- |  ------------- | \n| tasksource_id | int          | The id of the task (optional) |  |\n\n\n**Call**\n``` php\n$result = $client-\u003etasks-\u003egetTasksLogCount();\n```\n\n**Response**\n``` text\n1\n```\n\n### Remove Tasks Log\n\nRemove a task log from the task.\n\n| Parameter   | Type           | Description   | Default        |\n| ----------  | -------------  | ------------- |  ------------- | \n| task_id     | int            | The id of the task |           |\n\n\n**Call**\n``` php\n$result = $client-\u003etasks-\u003eremoveTasksLog(1);\n```\n\n**Response**\n``` text\ntrue\n```\n\n### Get Tasks\n\nTask logs are entries created, when a task is run. Use this method to get the data.\n\n| Parameter   | Type           | Description   | Default        |\n| ----------  | -------------  | ------------- |  ------------- | \n| task_id     | int            | The id of the task (optional) |  |\n\n\n**Call**\n``` php\n$result = $client-\u003etasks-\u003egetTasks();\n```\n\n**Response**\n``` text\nArray\n(\n    [1] =\u003e RedBeanPHP\\OODBBean Object\n        (\n            [properties:protected] =\u003e Array\n                (\n                    [id] =\u003e 1\n                    [name] =\u003e Hello World\n                    [params] =\u003e []\n                    [repeats] =\u003e 1\n                    [completed] =\u003e 0\n                    [sleep] =\u003e 1\n                    [tasksource_id] =\u003e 1\n                    [run_last] =\u003e 2018-01-01 00:00:00\n                    [run_next] =\u003e 2018-01-01 00:00:00\n                    [run_count] =\u003e 6\n                    [result] =\u003e \n                    [tasksource] =\u003e \n                )\n\n            [__info:protected] =\u003e Array\n                (\n                    [type] =\u003e tasks\n                    [sys.id] =\u003e id\n                    [sys.orig] =\u003e Array\n                        (\n                            [id] =\u003e 1\n                            [name] =\u003e Hello World\n                            [params] =\u003e []\n                            [repeats] =\u003e 1\n                            [completed] =\u003e 0\n                            [sleep] =\u003e 1\n                            [tasksource_id] =\u003e 1\n                            [run_last] =\u003e 2018-01-01 00:00:00\n                            [run_next] =\u003e 2018-01-01 00:00:00\n                            [run_count] =\u003e 6\n                            [result] =\u003e \n                            [tasksource] =\u003e \n                        )\n\n                    [tainted] =\u003e \n                    [changed] =\u003e \n                    [changelist] =\u003e Array\n                        (\n                        )\n\n                    [model] =\u003e \n                )\n\n            [beanHelper:protected] =\u003e RedBeanPHP\\BeanHelper\\SimpleFacadeBeanHelper Object\n                (\n                )\n\n            [fetchType:protected] =\u003e \n            [withSql:protected] =\u003e \n            [withParams:protected] =\u003e Array\n                (\n                )\n\n            [aliasName:protected] =\u003e \n            [via:protected] =\u003e \n            [noLoad:protected] =\u003e \n            [all:protected] =\u003e \n        )\n    )\n)\n```\n\n### Run\n\nPlace task entry in tasking table for deamon to run.\n\n| Parameter   | Type           | Description   | Default        |\n| ----------  | -------------  | ------------- |  ------------- | \n| name        | string         | Name of the task | ``          |\n| params      | array          | Array of values which are passed to task | `` |\n| sleep       | int            | Sleep time between iterations, if 0 its run once | `0` |\n\n\n**Call**\n``` php\n// run once\n$client-\u003etasks-\u003erun('Hello World', [], 0);\n\n// run every day\n$client-\u003etasks-\u003erun('Hello World', [], 86400);\n```\n\n**Response**\n``` text\nArray\n(\n    [id] =\u003e 1\n    [name] =\u003e Hello World\n    [params] =\u003e []\n    [repeats] =\u003e 1\n    [completed] =\u003e 0\n    [sleep] =\u003e 86400\n    [tasksource_id] =\u003e 1\n    [run_last] =\u003e 2018-01-01 00:00:00\n    [run_next] =\u003e 2018-01-01 00:00:00\n    [run_count] =\u003e 10\n    [result] =\u003e Hello World\n)\n```\n\n### Run Now\n\nRun a task now (task is not placed in tasking table for deamon to run), and **run as the web server user**.\n\n| Parameter   | Type           | Description   | Default        |\n| ----------  | -------------  | ------------- |  ------------- | \n| name        | string         | Name of the task | ``          |\n\n**Call**\n``` php\n$client-\u003etasks-\u003erunNow('Hello World');\n```\n\n**Response**\n``` text\nHello World\n```\n\n### Clear\n\nDelete all tasks.\n\n**Call**\n``` php\n$result = $client-\u003etasks-\u003eclear();\n```\n\n**Response**\n``` text\ntrue\n```\n\n### Reset\n\nDelete database. **Use with caution.**\n\n**Call**\n``` php\n$result = $client-\u003etasks-\u003ereset();\n```\n\n**Response**\n``` text\ntrue\n```\n\n## Testing\n\nThere are no tests setup for this component.\n\n## Contributing\n\nPlease see [CONTRIBUTING](https://github.com/plinker-rpc/files/blob/master/CONTRIBUTING) for details.\n\n## Security\n\nIf you discover any security related issues, please contact me via [https://cherone.co.uk](https://cherone.co.uk) instead of using the issue tracker.\n\n## Credits\n\n- [Lawrence Cherone](https://github.com/lcherone)\n- [All Contributors](https://github.com/plinker-rpc/files/graphs/contributors)\n\n## Links\n\nWant to see an example project which uses this component?\n\n - [PlinkerUI](https://github.com/lcherone/PlinkerUI)\n\n\n## Development Encouragement\n\nIf you use this project and make money from it or want to show your appreciation,\nplease feel free to make a donation [https://www.paypal.me/lcherone](https://www.paypal.me/lcherone), thanks.\n\n## Sponsors\n\nGet your company or name listed throughout the documentation and on each github repository, contact me at [https://cherone.co.uk](https://cherone.co.uk) for further details.\n\n## License\n\nThe MIT License (MIT). Please see [License File](https://github.com/plinker-rpc/files/blob/master/LICENSE) for more information.\n\nSee the [organisations page](https://github.com/plinker-rpc) for additional components.\n","funding_links":["https://www.paypal.me/lcherone"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplinker-rpc%2Ftasks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplinker-rpc%2Ftasks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplinker-rpc%2Ftasks/lists"}