Skip to content

Commit 18de6b9

Browse files
committed
rename project
1 parent 1f26033 commit 18de6b9

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
All notable changes to the "php-class-generator" extension will be documented in this file.
3+
All notable changes to the "php-skeleton-generator" extension will be documented in this file.
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

@@ -9,4 +9,5 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
99
### Added
1010
- Initial release
1111
- Command for create a basic skeleton of PHP class
12-
- Add namespace PSR4 in skeleton
12+
- Add namespace PSR4 in skeleton
13+
- Change name to php-skeleton-generator

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# php-class-generator Extension for Visual Studio Code
1+
# php-skeleton-generator Extension for Visual Studio Code
22

3-
With this extension, you can quickly generate a skeleton for a PHP class just by running a command. This can save you time when starting a new project or writing code, as you don't have to manually type out the basic structure of a PHP class every time.
3+
Looking for an easy and quick way to generate PHP code skeletons? Check out our "PHP Skeleton Generator" extension! With just a few clicks, you can create PHP classes, interfaces, traits, and enums with all the properties and methods you need. Our assistant guides you through the process, asking you for the options you need and generating the code for you. Save time and effort when creating your PHP projects with "PHP Skeleton Generator"!
44

55
## Features
66

7-
- Run `generate-php-class` command from the command palette to generate a skeleton for a PHP class
7+
- Run `php-skeleton-generate` command from the command palette to generate a skeleton for a PHP class
88

99
## Planned Features
1010

11-
- Generate skeleton of other types of PHP files [interface, trait, enum, value object]
11+
- Generate skeleton of other types of PHP files [interface, trait, enum]
1212

1313
## Requirements
1414

@@ -17,7 +17,7 @@ With this extension, you can quickly generate a skeleton for a PHP class just by
1717
## Usage
1818

1919
1. Press `Ctrl+Shift+P` to open the command palette
20-
2. Type `generate-php-class` and press Enter
20+
2. Type `php-skeleton-generate` and press Enter
2121
3. Enter the name of your class and press Enter
2222
4. The skeleton for the PHP class will be generated
2323

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "php-class-generator",
2+
"name": "php-skeleton-generator",
33
"displayName": "PHP Class Generator",
44
"description": "Generate PHP classes",
55
"version": "0.0.1",
@@ -10,13 +10,13 @@
1010
"Other"
1111
],
1212
"activationEvents": [
13-
"onCommand:php-class-generator.generate-php-class"
13+
"onCommand:php-skeleton-generator.php-skeleton-generate"
1414
],
1515
"main": "./out/extension.js",
1616
"contributes": {
1717
"commands": [
1818
{
19-
"command": "php-class-generator.generate-php-class",
19+
"command": "php-skeleton-generator.php-skeleton-generate",
2020
"title": "Generate PHP Class"
2121
}
2222
]

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { wizardGeneratePhpSkeleton } from './wizardPhpSkeletons';
66
// This method is called when your extension is activated
77
// Your extension is activated the very first time the command is executed
88
export function activate(context: vscode.ExtensionContext) {
9-
console.log('Congratulations, your extension "php-class-generator" is now active!');
10-
context.subscriptions.push(vscode.commands.registerCommand('php-class-generator.generate-php-class', wizardGeneratePhpSkeleton));
9+
console.log('Congratulations, your extension "php-skeleton-generator" is now active!');
10+
context.subscriptions.push(vscode.commands.registerCommand('php-skeleton-generator.php-skeleton-generate', wizardGeneratePhpSkeleton));
1111
}
1212

1313
// This method is called when your extension is deactivated

0 commit comments

Comments
 (0)