prisma-client-php 0.0.31 → 0.0.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/init.js +3 -1
  2. package/package.json +1 -1
package/dist/init.js CHANGED
@@ -210,7 +210,9 @@ const composerPinnedVersions = {
210
210
  "brick/math": "^0.13.0",
211
211
  };
212
212
  function composerPkg(name) {
213
- return composerPinnedVersions[name] ?? name;
213
+ return composerPinnedVersions[name]
214
+ ? `${name}:${composerPinnedVersions[name]}`
215
+ : name;
214
216
  }
215
217
  async function main() {
216
218
  const isPrismaPHP = process.argv.includes("--prisma-php");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prisma-client-php",
3
3
  "description": "Prisma Client PHP is an auto-generated query builder that enables type-safe database access in PHP.",
4
- "version": "0.0.31",
4
+ "version": "0.0.32",
5
5
  "main": "index.js",
6
6
  "type": "module",
7
7
  "scripts": {