makuruwan / export-project-structure
A Laravel package to export project structure files into text files.
Package info
github.com/Cletous/export-project-structure
pkg:composer/makuruwan/export-project-structure
v2.0.1
2026-03-08 11:04 UTC
Requires
- php: ^8.1
- illuminate/support: ^10.0|^11.0|^12.0
README
A Laravel package for exporting project structure files into text files.
Installation
composer require makuruwan/export-project-structure
Publish config
php artisan vendor:publish --tag=export-project-structure-config
Usage
Export everything into one file:
php artisan code:export --all
Export everything into separate files:
php artisan code:export --all-separate
Export only models:
php artisan code:export --models
Export only controllers:
php artisan code:export --controllers
Export only views:
php artisan code:export --views
Export multiple selected sections:
php artisan code:export --models --controllers --views