create-prisma-php-app 1.26.537 → 1.26.539

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.
@@ -74,6 +74,9 @@ class TwMerge
74
74
  // **Flexbox alignment classes**
75
75
  "justify" => "/^justify-(start|end|center|between|around|evenly)$/",
76
76
 
77
+ // **Width classes**
78
+ "w" => "/^w-(full|[0-9]+|\\[.+\\])$/",
79
+
77
80
  // **Other utility classes can be added here**
78
81
  ];
79
82
 
@@ -123,6 +126,9 @@ class TwMerge
123
126
  // **Flexbox alignment conflict group**
124
127
  "justify" => ["justify"],
125
128
 
129
+ // **Width conflict group**
130
+ "w" => ["w"],
131
+
126
132
  // **Add other conflict groups as needed**
127
133
  ];
128
134
 
@@ -118,7 +118,7 @@ class PrismaPHPSettings
118
118
 
119
119
  private static function getClassesLogFiles(): array
120
120
  {
121
- $jsonFileName = SETTINGS_PATH . '/class-log.json';
121
+ $jsonFileName = SETTINGS_PATH . '/class-imports.json';
122
122
  $classLogFiles = file_exists($jsonFileName) ? json_decode(file_get_contents($jsonFileName), true) : [];
123
123
 
124
124
  return $classLogFiles;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-prisma-php-app",
3
- "version": "1.26.537",
3
+ "version": "1.26.539",
4
4
  "description": "Prisma-PHP: A Revolutionary Library Bridging PHP with Prisma ORM",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",