create-prisma-php-app 2.0.16 → 2.0.17
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.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -36,7 +36,7 @@ async function installComposerDependencies(baseDir, dependencies) {
|
|
|
36
36
|
console.log("Initializing new Composer project...");
|
|
37
37
|
// Initialize a composer.json if it doesn't exist
|
|
38
38
|
if (!fs.existsSync(path.join(baseDir, "composer.json"))) {
|
|
39
|
-
execSync(`composer init -n --name="
|
|
39
|
+
execSync(`composer init -n --name="tsnc/prisma-php" --require="php:^8.2"`, {
|
|
40
40
|
stdio: "inherit",
|
|
41
41
|
cwd: baseDir,
|
|
42
42
|
});
|