Get expert guidance in a few days with a Laravel code review

Skeletor

Last updated on by

Skeletor image

Skeletor is an application skeleton scaffolding package created by Josh Manders. With this package you can use it to add additional functionality to anything you can setup with composer create-project. It works well with Laravel, however, it isn’t exclusive to Laravel apps.

To install this package you use composer:

composer install --dev aniftyco/skeletor

From there you update the scripts section of composer.json:

"post-create-project-cmd": [
"NiftyCo\\Skeletor\\Runner::execute"
],

And then create a Skeletorfile.php in the root of your project with this:

<?php
 
use NiftyCo\Skeletor\Skeletor;
 
return function (Skeletor $skeletor) {
// add the commands you would like to execute in your new application starter
};

Skeletor offers various methods for gathering input, displaying information, executing file operations, and running commands—including find and replace within files. A few examples can be seen below:

// Display Messages and Alerts
$skeletor->intro('Welcome to the App setup wizard!');
 
// Text Input with a default value
$appName = $skeletor->text('Enter your App name:', 'laravel_news');
 
// Replace a string in a file
// e.g. $skeletor->replaceInFile('search string', 'replace string', 'path/to/file.txt');
$skeletor->replaceInFile('APP_NAME=Laravel', 'APP_NAME=' . $appName, '.env');
 
// Confirm a user choice with a default value
if ($skeletor->confirm('Do you want to install AcmeUIKit?', true) {
// Process some tasks and display a spinner
$skeletor->spin(
message: 'Installing AcmeUIKit and dependencies',
success: 'AcmeUIKit installed.',
error: 'Failed to install AcmeUIKit and one or more of its dependencies.',
callback: function () use ($skeletor) {
$skeletor->exec(['npm', 'install', '@acme/ui']);
}
);
}
 
$skeletor->outro('Your application setup is complete!');

With this in place, you can publish your skeleton to Packagist. When you run composer create-project with a Skeletor application skeleton, it automatically hooks into the post-create-project-cmd event and runs the setup commands defined in Skeletorfile.php.

As an example, Josh has already created a Laravel starter template that you can use which mimics his own personal preferences when starting a new Laravel app.

composer create-project starter/laravel my-new-app

If you need more control over your application setup, Skeletor makes customization easy. Whether you’re integrating a UI component library with a default layout, configuring Inertia with React or Vue.js, adding your database credentials to the .env file or automating other setup tasks, you can script these steps once and apply them to every new project—saving time and effort.

To learn more about Skeletor you can view the source code and documentation on Github.

Yannick Lyn Fatt photo

Staff Writer at Laravel News and Full stack web developer.

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

image
Bacancy

Outsource a dedicated Laravel developer for $3,200/month. With over a decade of experience in Laravel development, we deliver fast, high-quality, and cost-effective solutions at affordable rates.

Visit Bacancy
Curotec logo

Curotec

World class Laravel experts with GenAI dev skills. LATAM-based, embedded engineers that ship fast, communicate clearly, and elevate your product. No bloat, no BS.

Curotec
Bacancy logo

Bacancy

Supercharge your project with a seasoned Laravel developer with 4-6 years of experience for just $3200/month. Get 160 hours of dedicated expertise & a risk-free 15-day trial. Schedule a call now!

Bacancy
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
Cut PHP Code Review Time & Bugs into Half with CodeRabbit logo

Cut PHP Code Review Time & Bugs into Half with CodeRabbit

CodeRabbit is an AI-powered code review tool that specializes in PHP and Laravel, running PHPStan and offering automated PR analysis, security checks, and custom review features while remaining free for open-source projects.

Cut PHP Code Review Time & Bugs into Half with CodeRabbit
Get expert guidance in a few days with a Laravel code review logo

Get expert guidance in a few days with a Laravel code review

Expert code review! Get clear, practical feedback from two Laravel devs with 10+ years of experience helping teams build better apps.

Get expert guidance in a few days with a Laravel code review
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Harpoon: Next generation time tracking and invoicing logo

Harpoon: Next generation time tracking and invoicing

The next generation time-tracking and billing software that helps your agency plan and forecast a profitable future.

Harpoon: Next generation time tracking and invoicing
Lucky Media logo

Lucky Media

Get Lucky Now - the ideal choice for Laravel Development, with over a decade of experience!

Lucky Media
Lunar: Laravel E-Commerce logo

Lunar: Laravel E-Commerce

E-Commerce for Laravel. An open-source package that brings the power of modern headless e-commerce functionality to Laravel.

Lunar: Laravel E-Commerce
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a Multi-tenant Laravel SaaS Starter Kit that comes with all features required to run a modern SaaS. Payments, Beautiful Checkout, Admin Panel, User dashboard, Auth, Ready Components, Stats, Blog, Docs and more.

SaaSykit: Laravel SaaS Starter Kit

The latest

View all →
Laravel 12.44 Adds HTTP Client afterResponse() Callbacks image

Laravel 12.44 Adds HTTP Client afterResponse() Callbacks

Read article
Handle Nested Data Structures in PHP with the Data Block Package image

Handle Nested Data Structures in PHP with the Data Block Package

Read article
Detect and Clean Up Unchanged Vendor Files with Laravel Vendor Cleanup image

Detect and Clean Up Unchanged Vendor Files with Laravel Vendor Cleanup

Read article
Seamless PropelAuth Integration in Laravel with Earhart image

Seamless PropelAuth Integration in Laravel with Earhart

Read article
Laravel API Route image

Laravel API Route

Read article
Laravel News 2025 Recap image

Laravel News 2025 Recap

Read article