npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@polyprism/php-domain-class

v0.3.1

Published

Prisma 6 & 7 generator that emits PHP 8.4 domain classes with property hooks — @coerce / @normalise honoured via the polyprism/runtime Composer package. Pure ESM. Part of PolyPrism.

Readme

@polyprism/php-domain-class

Part of PolyPrism — the multi-pattern Prisma type generator.

Generates PHP 8.4 domain classes with property hooks from your Prisma schema. The setter pipeline honours @coerce, @normalise, and @noCoerce so untrusted boundary input (HTTP bodies, form posts, queue messages) is normalised on the way into your model layer — exactly like the TypeScript @polyprism/ts-domain-class generator, but on the PHP side.

Requirements

  • PHP 8.4 or later (property hooks are the load-bearing feature)
  • A Composer dependency on polyprism/runtime for the Coerce / Normalise helpers the generated setters call into

Install

In your Prisma project:

npm i -D @polyprism/php-domain-class
# or: pnpm add -D @polyprism/php-domain-class

Then, in the PHP project that consumes the generated output:

composer require polyprism/runtime

Wire the generator into schema.prisma:

generator polyprismCodegen {
  provider = "polyprism-php-domain-class"
  output   = "../generated"
}

Wire the generated dir into your composer.json autoload:

{
  "require": {
    "polyprism/runtime": "^0.2"
  },
  "autoload": {
    "psr-4": {
      "Generated\\": "src/Generated/"
    }
  }
}

What you get

For each model, a final class with one typed property per field. Coerce-by-default scalars (Int / Float / BigInt / Decimal / DateTime) get a set hook that routes the assigned value through Polyprism\Runtime\Coerce, so passing a stringified "42" to an int field works just like passing the int directly.

model User {
  id     String   @id @default(cuid())
  /// @normalise(trim, lowercase)
  email  String
  points Int      @default(0)
  /// @noCoerce
  joined DateTime @default(now())
}
<?php

declare(strict_types=1);

namespace Generated\Models;

use Polyprism\Runtime\Coerce;
use Polyprism\Runtime\Normalise;

final class User
{
    public string $id;

    public string $email {
        set(string $value) {
            $this->email = Normalise::apply($value, [Normalise::TRIM, Normalise::LOWERCASE]);
        }
    }

    public int $points = 0 {
        set(int|string $value) {
            $this->points = Coerce::int($value, 'User.points');
        }
    }

    public \DateTimeImmutable $joined;

    public function __construct(
        string $id,
        string $email,
        \DateTimeImmutable $joined,
        int|string $points = 0,
    ) {
        $this->id = $id;
        $this->email = $email;
        $this->joined = $joined;
        $this->points = $points;
    }
}

Constructing the class normalises and coerces in one go:

$user = new User(
    id: 'user_1',
    email: '  [email protected]  ',  // → '[email protected]'
    joined: new DateTimeImmutable('2026-01-01'),
    points: '42',                  // → 42 (int)
);

Bad input throws TypeError with a field-path-tagged message:

$user->points = 'abc';
// TypeError: Cannot coerce "abc" to int for User.points

Hydrating from a request body / Prisma row

Every generated class gets a static from(array $data): self factory that routes a Record-like array through the constructor — so the property hooks fire on every field the same way they would on a direct new User(...) call. Missing required fields throw \TypeError with the field name; optional/defaulted fields fall through to their constructor default; unknown keys are silently dropped.

// e.g. inside a Laravel controller
public function store(Request $request): User
{
    return User::from($request->json()->all());
    // - email lower-cased + trimmed via @normalise
    // - points stringified "42" coerced to int via @coerce
    // - any extra keys in the request body silently ignored
    // - missing 'email' throws TypeError with the field name
}

Excluding Prisma-managed fields with @hide

Fields like @id @default(autoincrement()), @updatedAt, or @default(cuid()) are Prisma-managed — the database fills them at insert time and the developer typically doesn't supply them when constructing a new record. By default, PolyPrism PHP treats these as required fields on both the constructor and from(), because PHP has no equivalent of TypeScript's "this field is set later by the framework" concept built into the type system.

If your DTO is purely for creating records (POST handlers, queue producers, etc.), annotate the Prisma-managed fields with @hide to drop them from the generated class entirely:

model User {
  /// @hide
  id        String   @id @default(cuid())

  email     String

  /// @hide
  createdAt DateTime @default(now())

  /// @hide
  updatedAt DateTime @updatedAt
}
// Now User::from() doesn't require id / createdAt / updatedAt
$user = User::from(['email' => '[email protected]']);

If your DTO needs to read those fields after Prisma has filled them (typical for the "fetch row from DB → hydrate DTO → serve to client" flow), keep them on the class and pass them through. PHP from() handles both shapes:

// Hydrating a fetched row — all fields including id/updatedAt present
$user = User::from($prismaRowAsArray);

// Hydrating a request body — annotate @hide on managed fields
$user = User::from($request->json()->all());

It's a deliberate v0 trade: explicit-via-annotation rather than implicit- via-introspection. Matches PHP's "explicit > magic" culture; the developer always knows what fields the DTO accepts.

from() is not a validator

from() is a constructor adapter, not a validator — it doesn't check cross-field invariants or reject explicit null for non-nullable fields beyond what PHP's typed-property contract enforces. Pre-validate untrusted boundary input with a schema library (JSON Schema, Symfony Validator, etc.) if those richer failure modes matter to your application.

Annotations honoured

| Annotation | What it does | | ------------------------- | ------------------------------------------------------------------------------------------------------- | | @hide | Field omitted from the class body | | @deprecated | PHPDoc @deprecated tag | | @name(<ident>) | Override the PHP class / field identifier | | @type(<expr>) | Override the PHP type expression verbatim | | @json(...) | Inline @json shapes generate readonly value classes under JsonTypes/ | | @coerce(<target>) | Cross-type coerce (@coerce(int) on a String field accepts int\|string) | | @noCoerce | Opt a default-coerce scalar back to strict (no widening on the setter) | | @normalise(<ops...>) | Apply string ops in order on the way in (trim, lowercase, uppercase, nullEmptyToNull) |

Coerce-by-default scalars

Five Prisma scalars get a coerce hook automatically:

| Prisma type | PHP property type | Setter accepts | Runtime method | | ----------- | --------------------- | --------------------------------------------------- | ------------------------- | | Int | int | int\|string | Coerce::int(...) | | Float | float | float\|int\|string | Coerce::float(...) | | BigInt | int | int\|string | Coerce::bigint(...) | | Decimal | string | string\|float\|int | Coerce::decimal(...) | | DateTime | \DateTimeImmutable | \DateTimeImmutable\|string\|int | Coerce::date(...) |

String and Boolean are strict by default. Use @coerce(int) on a String field to opt in to cross-type coercion for legacy stringified columns; use @noCoerce on a default-coerce field to opt back to strict.

Compared to @polyprism/php-class / @polyprism/php-readonly

| Feature | php-class | php-readonly | php-domain-class | | ------------------------------------ | :---------: | :------------: | :-----------------: | | PHP floor | 8.1 | 8.2 | 8.4 | | Mutable after construction | ✓ | | ✓ | | Constructor property promotion | ✓ | ✓ | | | @coerce / @normalise honoured | | | ✓ | | Runtime dependency | None | None | polyprism/runtime |

License

MIT