PHPackages                             cryptoweb/infoflot-api - 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. cryptoweb/infoflot-api

ActiveLibrary[API Development](/categories/api)

cryptoweb/infoflot-api
======================

PHP Client for Infoflot REST API

0.1.3(1y ago)2412MITPHPPHP &gt;=7.2

Since Jul 3Pushed 1y ago2 watchersCompare

[ Source](https://github.com/Xmk/infoflot-api)[ Packagist](https://packagist.org/packages/cryptoweb/infoflot-api)[ RSS](/packages/cryptoweb-infoflot-api/feed)WikiDiscussions main Synced 1mo ago

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

[![Latest Version](https://camo.githubusercontent.com/86580f6a26a9d9957eb1026583c90b5295ab87e9c1b2b646342e9392b28451b3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f63727970746f7765622f696e666f666c6f742d6170693f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/cryptoweb/infoflot-api)[![License](https://camo.githubusercontent.com/75fd0a476a48ff28f0f6b769094dd5bcd4bd18fd908f245d9d60f4e51a6d3309/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f63727970746f7765622f696e666f666c6f742d6170693f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/cryptoweb/infoflot-api)

Warning

This package is at an early stage of development!

Description
-----------

[](#description)

Note

Basic documentation:

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

[](#installation)

```
composer require cryptoweb/infoflot-api
```

Integration
-----------

[](#integration)

We have package for simple integration with Laravel: [cryptoweb/infoflot-laravel](https://packagist.org/packages/cryptoweb/infoflot-laravel)

Usage
-----

[](#usage)

### client initialization

[](#client-initialization)

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

use CryptoWeb\InfoflotApi\Client;
use CryptoWeb\InfoflotApi\ClientOptions;

$client = new Client(
	new GuzzleHttp\Client(),
	new ClientOptions(
		apiKey: 'your-api-key',
	)
);
```

### factory

[](#factory)

```
use CryptoWeb\InfoflotApi\Enums\ShipTypeAsOnMainSiteEnum;
use CryptoWeb\InfoflotApi\Factory;

$infoflot = new Factory($client);

$infoflot->cruises()
	->type(ShipTypeAsOnMainSiteEnum::TURKISH_RIVERA)
	->nights(5)
	->get();

$infoflot->cruises(100500)
	->get();

$infoflot->cruises(100500)
	->cabins()
	->get();

$infoflot->cruises(100500)
	->cabins()
	->search()
	->get();

// etc...
```

### builders

[](#builders)

```
use CryptoWeb\InfoflotApi\Builders\Cruises;
use CryptoWeb\InfoflotApi\Builders\CruisesId;
use CryptoWeb\InfoflotApi\Builders\CruisesIdCabins;
use CryptoWeb\InfoflotApi\Builders\CruisesIdCabinsSearch;
use CryptoWeb\InfoflotApi\Enums\CruiseTypeEnum;

// get all cruises
$cruisesBuilder = new Cruises($client);
$cruisesBuilder->type(CruiseTypeEnum::RIVER)
$cruisesBuilder->nights(5);
$cruisesResult = $cruisesBuilder->get();

// or
$cruisesResult = (new Cruises($client))
	->type(CruiseTypeEnum::SEA)
	->nights(5, 6, 7)
	->get();

// get cruise by id
$cruiseBuilder = new CitiesId($client);
$cruiseBuilder->id(311);
$cruiseResult = $cruiseBuilder->get();

// get cruise cabins by id
$cruiseCabinsResult = (new CruisesIdCabins($client))
	->id(311)
	->get();

// etc...
```

### usage basic

[](#usage-basic)

```
$result = $client->request('cruises', [
	'ship' => '311,312,400',
	'type' => 'sea'
]);
```

License
-------

[](#license)

The MIT License (MIT). Please see [LICENSE](LICENSE) for more information.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity28

Early-stage or recently created project

 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

Every ~0 days

Total

4

Last Release

673d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/25a9323a28949b80f42baee1862e443e59254b07f6301991fcf324967b7fd761?d=identicon)[CryptoWeb](/maintainers/CryptoWeb)

---

Top Contributors

[![Xmk](https://avatars.githubusercontent.com/u/1087368?v=4)](https://github.com/Xmk "Xmk (34 commits)")

---

Tags

phpapisdkinfoflot

### Embed Badge

![Health badge](/badges/cryptoweb-infoflot-api/health.svg)

```
[![Health](https://phpackages.com/badges/cryptoweb-infoflot-api/health.svg)](https://phpackages.com/packages/cryptoweb-infoflot-api)
```

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[hubspot/api-client

Hubspot API client

23414.2M16](/packages/hubspot-api-client)[php-opencloud/openstack

PHP SDK for OpenStack APIs. Supports BlockStorage, Compute, Identity, Images, Networking and Metric Gnocchi

2292.2M24](/packages/php-opencloud-openstack)[mailchimp/transactional

458.9M16](/packages/mailchimp-transactional)[resend/resend-php

Resend PHP library.

564.7M21](/packages/resend-resend-php)[checkout/checkout-sdk-php

Checkout.com SDK for PHP

553.3M7](/packages/checkout-checkout-sdk-php)

PHPackages © 2026

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