PHPackages                             betoalien/pardox-php - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. betoalien/pardox-php

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

betoalien/pardox-php
====================

High-Performance DataFrame Engine powered by Rust (The PardoX Project)

v0.3.1(2mo ago)15MITPHPPHP &gt;=8.1

Since Mar 1Pushed 2mo agoCompare

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

READMEChangelogDependenciesVersions (2)Used By (0)

PardoX for PHP — High-Performance DataFrame Engine
==================================================

[](#pardox-for-php--high-performance-dataframe-engine)

[![Packagist](https://camo.githubusercontent.com/5aac1eee91aa61dfef01e26fe02220904e1f01fe077ba6bbe8aa3bef0a3fa2cf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6265746f616c69656e2f706172646f782d7068702e737667)](https://packagist.org/packages/betoalien/pardox-php)[![License: MIT](https://camo.githubusercontent.com/fdf2982b9f5d7489dcf44570e714e3a15fce6253e0cc6b5aa61a075aac2ff71b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d79656c6c6f772e737667)](https://opensource.org/licenses/MIT)[![PHP 8.1+](https://camo.githubusercontent.com/6986f2567d70cc4fcee2a56ed2de4c3d0e4f7cfb911ce3612d1282169441a593/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d382e312b2d3838393242462e737667)](https://www.php.net/)[![Powered By Rust](https://camo.githubusercontent.com/8862601c68136832622650fe10aa90cfb0b77bcde8189937e1e542db3315ac53/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f706f776572656425323062792d527573742d6f72616e67652e737667)](https://www.rust-lang.org/)

**The Speed of Rust. The Simplicity of PHP.**

PardoX is a high-performance DataFrame engine for PHP. A single **Rust core** handles all computation — CSV parsing, arithmetic, database I/O, sorting, GroupBy, Window functions, and more — exposed to PHP through the native FFI extension. No Python. No Node. No middleware.

> **v0.3.2 is now available.** PRDX streaming to PostgreSQL (150M rows validated), GroupBy, String &amp; Date ops, Window functions, Lazy pipeline, SQL over DataFrames, Encryption, Data Contracts, Time Travel, Arrow Flight, Linear Algebra, REST Connector, and 29 total gap features — all from PHP.

---

⚡ Why PardoX for PHP?
---------------------

[](#-why-pardox-for-php)

CapabilityHow**Zero-copy ingestion**Multi-threaded Rust CSV parser — no PHP string processing**SIMD arithmetic**AVX2 / NEON — 5x–20x faster than PHP loops**Native database I/O**Rust drivers for PostgreSQL, MySQL, SQL Server, MongoDB — no PHP extensions needed**PRDX Streaming**Stream 150M-row files to PostgreSQL at ~145k rows/s with O(block) RAM**GPU sort**WebGPU Bitonic sort with transparent CPU fallback**GroupBy + Window**Aggregations, rolling, rank, lag/lead — pure Rust**No dependencies**Only requires PHP's built-in `ext-ffi` and `ext-json`**Cross-platform**Linux x64 · Windows x64 · macOS Intel · macOS Apple Silicon---

📦 Installation
--------------

[](#-installation)

```
composer require betoalien/pardox-php
```

**Requirements:**

- PHP 8.1 or higher
- `ext-ffi` enabled in `php.ini`
- `ext-json` (standard, usually enabled by default)

Enable the FFI extension:

```
; php.ini
extension=ffi
ffi.enable=true
```

---

🚀 Quick Start
-------------

[](#-quick-start)

```
