Skip to content

Commit

Permalink
new command and generate command proposal (WPDevICU#1) (WPDevICU#2)
Browse files Browse the repository at this point in the history
* chore: ide files ignore

* new: `new` command and `generate` command

* style: spacing

* new: test added

* chore: `composer.lock` removed

* style: variable name change

* update: readme change
  • Loading branch information
shohag121 authored Dec 14, 2021
1 parent 66d438d commit ecf8346
Show file tree
Hide file tree
Showing 9 changed files with 3,123 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
composer.phar
/vendor/
/.idea/
.phpunit.result.cache
composer.lock

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
Expand Down
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
# WordPress-Plugin-Generator
# WordPress Plugin Generator
A Robust WordPress Plugin Generator

## Description

## Installation

## Usage

## Contributing

## License

## Tests

## Changelog

## FAQ

## Support
32 changes: 32 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "wpdevicu/wppg",
"description": "A Robust WordPress Plugin Generator",
"type": "library",
"license": "GPL2",
"autoload": {
"psr-4": {
"WPDevICU\\WPPG\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WPDevICU\\WPPG\\": "src/",
"WPDevICU\\WPPG\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Shazahanul Islam Shohag",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0.3",
"symfony/console": "^5.4|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"bin": ["bin/wppg"]
}
Loading

0 comments on commit ecf8346

Please sign in to comment.