gitextract_wkweo582/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ └── default.yml ├── .gitignore ├── .styleci.yml ├── LICENSE ├── README.md ├── composer.json ├── config/ │ └── package-generator.php ├── skeleton/ │ ├── .editorconfig │ ├── .gitattributes.tpl │ ├── .github/ │ │ └── workflows/ │ │ └── default.yml │ ├── .gitignore.tpl │ ├── .styleci.yml │ ├── LICENSE.tpl │ ├── README.md.tpl │ ├── composer.json.tpl │ ├── phpunit.xml │ └── src/ │ └── ServiceProvider.php.tpl ├── src/ │ ├── Commands/ │ │ ├── PackageNew.php │ │ ├── PackageRemove.php │ │ └── Traits/ │ │ ├── ChangesComposerJson.php │ │ ├── CopiesSkeleton.php │ │ ├── InteractsWithComposer.php │ │ ├── InteractsWithGit.php │ │ ├── InteractsWithUser.php │ │ └── ManipulatesPackageFolder.php │ ├── Exceptions/ │ │ └── RuntimeException.php │ └── ServiceProvider.php └── stubs/ ├── Facade.php.tpl ├── MainClass.php.tpl ├── MainClassTest.php.tpl └── config.php