├── .env ├── .github └── workflows │ └── linting.yaml ├── .gitignore ├── .php-cs-fixer.dist.php ├── LICENSE ├── README.md ├── bin └── kimai ├── box.json.dist ├── composer.json ├── composer.lock ├── phpstan.neon ├── src ├── Api │ ├── Configuration.php │ └── Connection.php ├── Application.php ├── Command │ ├── ActiveCommand.php │ ├── ActivityListCommand.php │ ├── BaseCommand.php │ ├── ConfigurationCommand.php │ ├── CustomerListCommand.php │ ├── ProjectListCommand.php │ ├── StartCommand.php │ ├── StopCommand.php │ ├── TimesheetCommandTrait.php │ └── VersionCommand.php ├── Constants.php ├── Entity │ ├── Activity.php │ ├── Customer.php │ └── Project.php └── Exception │ ├── ConnectionProblemException.php │ └── InvalidConfigurationException.php └── symfony.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/linting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/.github/workflows/linting.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/kimai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/bin/kimai -------------------------------------------------------------------------------- /box.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/box.json.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/composer.lock -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Api/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Api/Configuration.php -------------------------------------------------------------------------------- /src/Api/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Api/Connection.php -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Command/ActiveCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Command/ActiveCommand.php -------------------------------------------------------------------------------- /src/Command/ActivityListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Command/ActivityListCommand.php -------------------------------------------------------------------------------- /src/Command/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Command/BaseCommand.php -------------------------------------------------------------------------------- /src/Command/ConfigurationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Command/ConfigurationCommand.php -------------------------------------------------------------------------------- /src/Command/CustomerListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Command/CustomerListCommand.php -------------------------------------------------------------------------------- /src/Command/ProjectListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Command/ProjectListCommand.php -------------------------------------------------------------------------------- /src/Command/StartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Command/StartCommand.php -------------------------------------------------------------------------------- /src/Command/StopCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Command/StopCommand.php -------------------------------------------------------------------------------- /src/Command/TimesheetCommandTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Command/TimesheetCommandTrait.php -------------------------------------------------------------------------------- /src/Command/VersionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Command/VersionCommand.php -------------------------------------------------------------------------------- /src/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Constants.php -------------------------------------------------------------------------------- /src/Entity/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Entity/Activity.php -------------------------------------------------------------------------------- /src/Entity/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Entity/Customer.php -------------------------------------------------------------------------------- /src/Entity/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Entity/Project.php -------------------------------------------------------------------------------- /src/Exception/ConnectionProblemException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Exception/ConnectionProblemException.php -------------------------------------------------------------------------------- /src/Exception/InvalidConfigurationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/src/Exception/InvalidConfigurationException.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimai/cli/HEAD/symfony.lock --------------------------------------------------------------------------------