Skip to content
This repository was archived by the owner on Jan 28, 2026. It is now read-only.

Commit bd4c6cd

Browse files
Merge pull request #15 from package-wizard/andrey-helldar-patch-1
Rename `light`
2 parents 7c4d8ac + d86d54c commit bd4c6cd

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
}
2222
],
2323
"support": {
24-
"issues": "https://github.com/package-wizard/composer-light/issues",
25-
"source": "https://github.com/package-wizard/composer-light"
24+
"issues": "https://github.com/package-wizard/composer/issues",
25+
"source": "https://github.com/package-wizard/composer"
2626
},
2727
"require": {
2828
"php": "^8.2"
@@ -34,7 +34,7 @@
3434
"prefer-stable": true,
3535
"autoload": {
3636
"psr-4": {
37-
"PackageWizard\\ComposerLight\\": "src/"
37+
"PackageWizard\\Composer\\": "src/"
3838
}
3939
},
4040
"autoload-dev": {

src/YourApp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace PackageWizard\ComposerLight;
5+
namespace PackageWizard\Composer;
66

77
class YourApp
88
{

tests/Unit/ExampleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
use PackageWizard\ComposerLight\YourApp;
5+
use PackageWizard\Composer\YourApp;
66

77
it('example', function () {
88
expect(

wizard.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
"type": "ask",
3232
"prompt": "text",
3333
"question": "Which namespace of your project?",
34-
"placeholder": "E.g. PackageWizard\\ComposerLight",
35-
"replace": "PackageWizard\\ComposerLight"
34+
"placeholder": "E.g. PackageWizard\\Composer",
35+
"replace": "PackageWizard\\Composer"
3636
},
3737
{
3838
"type": "ask",
3939
"prompt": "text",
4040
"question": "Under what name will the project be distributed?",
41-
"placeholder": "E.g. package-wizard/composer-light",
42-
"replace": "package-wizard/composer-light"
41+
"placeholder": "E.g. package-wizard/composer",
42+
"replace": "package-wizard/composer"
4343
}
4444
]
4545
}

0 commit comments

Comments
 (0)