PHPackages                             arnaudleroy-studio/dropthe - 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. arnaudleroy-studio/dropthe

ActiveLibrary

arnaudleroy-studio/dropthe
==========================

Access open datasets for movies, series, crypto, companies from DropThe.

00PHP

Since Mar 28Pushed 1mo agoCompare

[ Source](https://github.com/arnaudleroy-studio/dropthe-php)[ Packagist](https://packagist.org/packages/arnaudleroy-studio/dropthe)[ RSS](/packages/arnaudleroy-studio-dropthe/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

DropThe PHP Client
==================

[](#dropthe-php-client)

[![Packagist Version](https://camo.githubusercontent.com/51d5d2d4b901557dc26f4281c24bd61c3aae496d8445bf14919b80f03567b1a0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f61726e6175646c65726f792d73747564696f2f64726f70746865)](https://packagist.org/packages/arnaudleroy-studio/dropthe)[![PHP Version](https://camo.githubusercontent.com/b48ba04d8c0d025c0ceee11b3e9b900cacd0041ac381294a8b0c46ff648cb5af/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f61726e6175646c65726f792d73747564696f2f64726f70746865)](https://packagist.org/packages/arnaudleroy-studio/dropthe)[![License](https://camo.githubusercontent.com/77291073493852d51307ae892eddc275f1abcfd0d96f11ffd801345378ef9110/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f61726e6175646c65726f792d73747564696f2f64726f70746865)](LICENSE)

PHP client library for working with structured entertainment and financial data from DropThe, a data utility media platform covering 25,000+ movies, series, cryptocurrencies, companies, and public figures. Built for PHP 8.0+ with strict typing, named arguments, and modern language features throughout.

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

[](#installation)

```
composer require arnaudleroy-studio/dropthe
```

Quick Start
-----------

[](#quick-start)

### Browse entity categories

[](#browse-entity-categories)

```
use DropThe\Client;

$client = new Client();

// List all verticals the platform covers
$verticals = $client->getVerticals();
// ['movies', 'series', 'cryptocurrencies', 'companies', 'people']

// Check coverage stats per vertical
$stats = $client->getStats(vertical: 'movies');
echo "{$stats['vertical']} — {$stats['count']} entities tracked";
```

### Search and filter entities

[](#search-and-filter-entities)

```
// Type-safe search with named arguments
$results = $client->search(
    query: 'Nolan',
    vertical: 'people',
    limit: 5,
);

// Array destructuring from results
foreach ($results as ['name' => $name, 'slug' => $slug, 'type' => $type]) {
    echo "{$name} ({$type}) — dropthe.org/{$slug}\n";
}
```

### Null-safe access for optional fields

[](#null-safe-access-for-optional-fields)

```
$entity = $client->findBySlug('bitcoin');

// Entities may or may not have pricing data attached
$price = $entity?->getData('price_usd');
$tier = $entity?->getData('tier') ?? 'unranked';

echo "BTC: \${$price} — tier {$tier}";
```

### Build filtered collections

[](#build-filtered-collections)

```
// Arrow function for inline transforms
$slugs = array_map(
    fn(array $e) => $e['slug'],
    $client->search(vertical: 'movies', limit: 20)
);

// Retrieve multiple entities at once
$batch = $client->findMany(slugs: $slugs);
```

Available Data
--------------

[](#available-data)

The library provides structured access to DropThe's knowledge graph, which spans several content verticals. Movie and series records include metadata like release dates, cast links, and streaming availability across platforms. Cryptocurrency entries track real-time pricing alongside project fundamentals. Company profiles cover founding details, leadership, and industry classification. People records link individuals to the films, companies, and projects they are associated with, forming a navigable entity graph with nearly three million relationship edges.

Links
-----

[](#links)

- [DropThe Platform](https://dropthe.org)
- [GitHub Repository](https://github.com/arnaudleroy-studio/dropthe-php)

License
-------

[](#license)

MIT License. See [LICENSE](LICENSE) for details.

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance60

Regular maintenance activity

Popularity0

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/1825e83fcd5fd59c7ee41b967310ab63726ddb49a0549ca3b7260bde705369e7?d=identicon)[arnaudleroy-studio](/maintainers/arnaudleroy-studio)

### Embed Badge

![Health badge](/badges/arnaudleroy-studio-dropthe/health.svg)

```
[![Health](https://phpackages.com/badges/arnaudleroy-studio-dropthe/health.svg)](https://phpackages.com/packages/arnaudleroy-studio-dropthe)
```

PHPackages © 2026

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