create-prisma-php-app 1.11.520 → 1.11.521

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/index.js +3 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -832,8 +832,9 @@ async function main() {
832
832
  console.log("currentDir", currentDir);
833
833
  console.log("projectPath", projectPath);
834
834
  process.chdir(projectPath);
835
- execSync(`composer install`, { stdio: "inherit" });
836
- // execSync(`php composer install`, { stdio: "inherit" });
835
+ console.log("currentDir", process.cwd());
836
+ // execSync(`composer install`, { stdio: "inherit" });
837
+ execSync(`php composer install`, { stdio: "inherit" });
837
838
  // execSync(`D:\\xampp\\php\\php.exe php composer install`, { stdio: "inherit" });
838
839
  console.log(
839
840
  `${chalk.green("Success!")} Prisma PHP project successfully created in ${
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-prisma-php-app",
3
- "version": "1.11.520",
3
+ "version": "1.11.521",
4
4
  "description": "Prisma-PHP: A Revolutionary Library Bridging PHP with Prisma ORM",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",