We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e904a commit 32d4384Copy full SHA for 32d4384
composer.json
@@ -1,6 +1,6 @@
1
{
2
"name": "bugover/ship",
3
- "version": "1.9.20",
+ "version": "1.9.21",
4
"type": "library",
5
"description": "Core package for Porto architecture.",
6
"keywords": [
src/Generator/Commands/ConfigurationGenerator.php
@@ -71,6 +71,6 @@ public function getUserInputs(): ?array
71
*/
72
public function getDefaultFileName(): string
73
74
- return Str::snake($this->sectionName) . '_' . Str::snake($this->containerName);
+ return Str::kebab($this->sectionName) . '-' . Str::kebab($this->containerName);
75
}
76
0 commit comments