arnaudleroy-studio/dropthe
Composer 安装命令:
composer require arnaudleroy-studio/dropthe
包简介
Access open datasets for movies, series, crypto, companies from DropThe.
README 文档
README
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
composer require arnaudleroy-studio/dropthe
Quick Start
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
// 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
$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
// 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
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
License
MIT License. See LICENSE for details.
arnaudleroy-studio/dropthe 适用场景与选型建议
arnaudleroy-studio/dropthe 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 03 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 arnaudleroy-studio/dropthe 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 arnaudleroy-studio/dropthe 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 30
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-28