This application is built to sync loggings from toggl to invoiceninja
set the correct parameters in config/parameters.yml
- Clone or download the repo
- Use the latest tagged release
- run
composer install
Now fill in the parameters
parameters:
debug: false
serializer.config_dir: %kernel.root_dir%/config/serializer
seriaizer.cache_dir: %kernel.root_dir%/cache
toggl.api_key: KEY
toggl.toggl_base_uri: https://www.toggl.com/api/
toggl.reports_base_uri: https://www.toggl.com/reports/api/
toggl.time_entries_storage_dir: '%kernel.root_dir%/storage/'
toggl.time_entries_storage_file: 'sent-time-entries'
invoice_ninja.base_uri: {your-invoice-ninja-url}/api/
invoice_ninja.api_key: KEY
# Key = name in toggl (Has to be correct)
# Value = client id from invoiceninja
# Use '[]' if you don't need any config here
# clients:
# client_name: 1
# Key = name in toggl
# Value= id from invoiceninja
# Use '[]' if you don't need any config here
# projects:
# first_project: 1
# second_project: 2
Clients and Projects are automatically pulled from the specified Toggl account and created in Invoice Ninja if one does not already exist with the same name.
The key-value pairs in the clients
and projects
variables are optional values for if you want to manually pair a toggl client to an invoice ninja client or manually pair a toggl project to an invoice ninja project. The key should be the exact client/project name from toggl. The value should be the client/project id from invoiceninja.
to run the command just run:
php syncer sync:timings
As this command syncs the tasks from the current day, this cronjob setting will run the command daily at 23:55.
55 23 * * * /path/to/php /path/to/syncer sync:timings
- Next major release will use Symfony 4 components.