tsnc/prisma-php

Prisma PHP: The Next-Gen Framework Merging PHP’s Power with Prisma's ORM Mastery

1.0.0 2025-06-29 12:16 UTC

This package is auto-updated.

Last update: 2025-06-29 12:29:27 UTC


README

License PHP Version

PPHP (Prisma PHP) is a modern framework that fuses PHP’s robust server capabilities with the intuitive power of Prisma-style ORM. Designed for developers who value simplicity, speed, and modern workflows.

✨ Features

  • ✅ PSR-4 autoloading
  • ✅ Built on PHP 8.2+ for type safety & modern syntax
  • ✅ Designed for reactive apps & Prisma-style ORM patterns
  • ✅ Tiny footprint, blazing fast

🚀 Installation

Install via Composer:

composer require tsnc/prisma-php

PPHP uses PSR-4, so your classes load automatically. No manual includes needed.

🏁 Getting Started

Create and use a set:

<?php
require 'vendor/autoload.php';

use PPHP\Set;

$set = new Set();
$set->add("Hello");
$set->add("World");

print_r($set->values());

🛠 Example Usage

<?php
require 'vendor/autoload.php';

use PPHP\Set;

$set = new Set();
$set->add("PPHP");
$set->add("rocks");

var_dump($set->values());

📜 License

Released under the MIT License.

❤️ Credits

Created & maintained by Jefferson The Steel Ninja Code.