makuruwan/export-project-structure

A Laravel package to export project structure files into text files.

Maintainers

Package info

github.com/Cletous/export-project-structure

pkg:composer/makuruwan/export-project-structure

Statistics

Installs: 9

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v2.0.1 2026-03-08 11:04 UTC

This package is auto-updated.

Last update: 2026-05-08 11:29:11 UTC


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