PHPackages                             xnekv03/freelo-api-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. xnekv03/freelo-api-client

ActiveLibrary[API Development](/categories/api)

xnekv03/freelo-api-client
=========================

Freelo api wrapper

v1.0.0(6y ago)3161MITPHPPHP &gt;=7.1

Since Feb 8Pushed 6y ago1 watchersCompare

[ Source](https://github.com/xnekv03/freelo-api-client)[ Packagist](https://packagist.org/packages/xnekv03/freelo-api-client)[ Docs](https://www.freelo.cz)[ RSS](/packages/xnekv03-freelo-api-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

Unofficial client for Freelo
============================

[](#unofficial-client-for-freelo)

This library makes it easy to send requests towards [Freelo API](https://freelo.docs.apiary.io)

Installation
------------

[](#installation)

The recommended way to install package is through [Composer](http://getcomposer.org).

```
# Install Composer
curl -sS https://getcomposer.org/installer | php
```

Next, run the Composer command to install the latest stable version of package:

```
composer require xnekv03/freelo-api-client
```

After installing, you need to require Composer's autoloader:

```
require 'vendor/autoload.php';
```

You can then later update package using composer:

```
composer update
```

Usage
-----

[](#usage)

### Before you start

[](#before-you-start)

#### Create a Freelo account

[](#create-a-freelo-account)

[Registration](https://app.freelo.cz/registration)

#### Get your API key

[](#get-your-api-key)

Login to your [Dashboard](https://app.freelo.cz/dashboard), go to your Settings and obtain your API key which will be something like `9lDZU35Lb0wmnq4tWvmmUkugLja4dXwPDcOMP1CBdIa`

### Initialize API Client

[](#initialize-api-client)

```
# load autoload file
require_once  'vendor/autoload.php';

# Import Freelo library
use Freelo\Client;

$freeloApiToken = '9lDZU35Lb0wmnq4tWvmmUkugLja4dXwPDcOMP1CBdIa';
$loginEmail = 'john@doe.com';

# Initialize a client
$freeloClient = new Client($freeloApiToken,$loginEmail);
```

### Create project

[](#create-project)

```
$projectName = "Project Alice";
$currencyIso = "EUR";  // currently EUR, USD or CZK is supported

$projectId = $freeloClient->createProject($projectName, $currencyIso);
echo $projectId;        // 74201 - project ID is returned
```

### Collection of all own projects including active To-Do lists

[](#collection-of-all-own-projects-including-active-to-do-lists)

```
$projects = $freeloClient->getAllOwnProjectIncludinglToDo();
var_dump($projects);        // array with all projects including their names, IDs and task lists
```

### Paginated collection of all invited projects

[](#paginated-collection-of-all-invited-projects)

```
$projects = $freeloClient->getAllInvitedProjects();
var_dump($projects);        // array with all invited projects
```

### Paginated collection of all archived projects

[](#paginated-collection-of-all-archived-projects)

```
$projects = $freeloClient->getAllArchivededProjects();
var_dump($projects);        // array with all archived projects
```

### Paginated collection of all templated projects

[](#paginated-collection-of-all-templated-projects)

```
$projects = $freeloClient->getAllTemplateProjects();
var_dump($projects);        // array with all templated projects
```

### Project workers collection

[](#project-workers-collection)

```
$projectId = 73335;
$projectsWorkers = $freeloClient->allProjectWorkers($projectId);
var_dump($projectsWorkers);        // array with all workers assigned to given project
```

### Create to-do list

[](#create-to-do-list)

```
$projectId = 73335;     // ID of an existing project
$budget = 10205; // 2 decimal places with no decimal separator, ie. 1.05 = '105'
$listName = 'Pre-launch test';

$projectDetails = $freeloClient->createToDoList($projectId, $budget, $listName);
var_dump($projectDetails);        // array with task details
```

### Find all assignable workers for To-Do list

[](#find-all-assignable-workers-for-to-do-list)

```
$projectId = 73335;     // ID of an existing project
$taskId = 179444;     // ID of existing task

$workers = $freeloClient->assignableWorkersCollection($projectId, $taskId);
var_dump($workers);        // array with available workers and their IDs
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2290d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/38c43c2ad59af1bef8eee0f520030f5ae7e5fe3f9b96cb4478d36a273ee71dfa?d=identicon)[xnekv03](/maintainers/xnekv03)

---

Top Contributors

[![xnekv03](https://avatars.githubusercontent.com/u/17554971?v=4)](https://github.com/xnekv03 "xnekv03 (3 commits)")

---

Tags

Tasksproject managementtask managementfreeloteam cooperation

###  Code Quality

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/xnekv03-freelo-api-client/health.svg)

```
[![Health](https://phpackages.com/badges/xnekv03-freelo-api-client/health.svg)](https://phpackages.com/packages/xnekv03-freelo-api-client)
```

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.2M720](/packages/statamic-cms)[ashallendesign/laravel-exchange-rates

A wrapper package for interacting with the exchangeratesapi.io API.

485677.8k](/packages/ashallendesign-laravel-exchange-rates)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[vluzrmos/slack-api

Wrapper for Slack.com WEB API.

102589.1k3](/packages/vluzrmos-slack-api)[smodav/mpesa

M-Pesa API implementation

16363.7k1](/packages/smodav-mpesa)[codebar-ag/laravel-docuware

DocuWare integration with Laravel

1221.1k](/packages/codebar-ag-laravel-docuware)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
