Installation

Install ZeroPing and run your first app locally in a few commands.

Requirements: PHP 8.1+, Composer, and a MySQL-compatible database.

Method 1 — Zero CLI

Recommended

Creates a new ZeroPing application instantly using the Zero CLI.

BASH terminal
php zero new my-app
cd my-app
php zero serve

Method 2 — Composer

Installs ZeroPing directly from Packagist using Composer.

BASH terminal
composer create-project rith-1437/zeroping my-app
cd my-app
php zero serve
Both methods generate the exact same project structure. Use Zero CLI for the fastest experience, or Composer if it's already installed on your system.
Ready to go! Your ZeroPing application is now running.