โ— LIVE
OpenAI releases GPT-5 APIIndia AI startup raises $120MBitcoin ETF hits record inflowsMeta Llama 4 benchmarks leakedOpenAI releases GPT-5 APIIndia AI startup raises $120MBitcoin ETF hits record inflowsMeta Llama 4 benchmarks leaked
๐Ÿ“… Thu, 26 Mar, 2026โœˆ๏ธ Telegram
AiFeed24

AI & Tech News

๐Ÿ”
โœˆ๏ธ Follow
๐Ÿ Home๐Ÿค–AI๐Ÿ’ปTech๐Ÿš€Startupsโ‚ฟCrypto๐Ÿ”’Security๐Ÿ‡ฎ๐Ÿ‡ณIndiaโ˜๏ธCloud๐Ÿ”ฅDeals
โœˆ๏ธ News Channel๐Ÿ›’ Deals Channel
Home/Cloud & DevOps/How This Developer Migrated a Full Laravel App in 8 Hours with Claude Code's TDD Pipeline
โ˜๏ธCloud & DevOps

How This Developer Migrated a Full Laravel App in 8 Hours with Claude Code's TDD Pipeline

A developer completed a complex Laravel-to-custom-framework migration in one Claude Code session using a TDD-first approach and reusable skills. A developer recently migrated GoFormX, a Laravel 12 + Inertia + Vue 3 application, to a custom PHP framework called Waaseyaa in a single 8-hour Claude Code

โšกQuick SummaryAI generating...
G

gentic news

๐Ÿ“… Mar 24, 2026ยทโฑ 4 min readยทDev.to โ†—
โœˆ๏ธ Telegram๐• TweetWhatsApp
๐Ÿ“ก

Original Source

Dev.to

https://dev.to/gentic_news/how-this-developer-migrated-a-full-laravel-app-in-8-hours-with-claude-codes-tdd-pipeline-56c4
Read Full โ†—

A developer completed a complex Laravel-to-custom-framework migration in one Claude Code session using a TDD-first approach and reusable skills.

The Technique โ€” TDD as Claude Code's Feedback Loop

A developer recently migrated GoFormX, a Laravel 12 + Inertia + Vue 3 application, to a custom PHP framework called Waaseyaa in a single 8-hour Claude Code session. The key wasn't just Claude's coding abilityโ€”it was structuring the work so Claude could verify its own progress at every step.

Why It Works โ€” Concrete, Verifiable Outcomes

The developer created a reusable skill called laravel-to-waaseyaa that follows this 6-phase pipeline:

  1. Scaffold โ€” Basic package structure with composer.json and ServiceProvider
  2. TDD Core Components โ€” Write test โ†’ watch it fail โ†’ implement โ†’ watch it pass
  3. Wire โ€” Register services, middleware, and routes
  4. Verify โ€” Run full test suite + CS Fixer
  5. Deploy โ€” Add to monorepo, create GitHub repo, tag, submit to Packagist

This works because every step has a concrete, verifiable outcome. The tests aren't just for code qualityโ€”they're Claude's feedback mechanism. When a test passes, Claude knows that specific component works. No ambiguity, no guessing.

What Got Built โ€” The Output

In that single session:

3 Framework Packages (published to Packagist):

  • waaseyaa/inertia โ€” Inertia v3 adapter with 30 tests
  • waaseyaa/auth โ€” Headless authentication with TOTP 2FA and rate limiting (46 tests)
  • waaseyaa/billing โ€” Stripe integration with webhook processing (35 tests)

1 Complete Application:

  • 7 PHP controllers with 37 unit tests
  • 28 Vue 3 page components
  • 24 shadcn-vue UI component directories
  • Full Docker Compose setup with 6 services
  • GitHub Actions CI/CD pipeline
  • Ansible deployment config

Total: 148 tests, all green.

How To Apply It โ€” Creating Your Own Claude Code Pipeline

1. Start with a Detailed Spec

The migration spec was written BEFORE any Claude Code session. It specified every route, entity field, and API endpoint. Your CLAUDE.md should include:

## Migration Specification

### Routes to Port
- GET /login โ†’ AuthController@showLoginForm
- POST /login โ†’ AuthController@login
- GET /dashboard โ†’ DashboardController@index

### Database Schema
- users table: id, email, password_hash, created_at
- sessions table: id, user_id, token, expires_at

### API Endpoints
- POST /api/v1/forms โ†’ FormController@store
- GET /api/v1/forms/{id} โ†’ FormController@show

2. Structure Your Work as Test-First Tasks

Instead of "build authentication system," break it down:

## Current Task: User Login

1. Create test for UserRepository::findByEmail()
2. Implement UserRepository with MariaDB PDO connection
3. Create test for AuthService::attemptLogin()
4. Implement AuthService with password verification
5. Create test for LoginController@store
6. Implement controller with session creation

3. Use Playwright MCP for End-to-End Verification

The developer used Playwright MCP (browser automation) to verify flows actually work in a browser, not just with curl. This catches issues like the Inertia v3 data-page="app" attribute requirement that took reading framework source code to discover.

4. Handle Environment Gotchas

They discovered PHP-FPM doesn't inherit Docker environment variables by default. The fix: add clear_env = no to FPM config AND switch from $_ENV to getenv() with a helper function. Document these in your CLAUDE.md under "Known Issues."

The Reusable Skill โ€” Your Secret Weapon

The laravel-to-waaseyaa skill encodes all the patterns, conventions, and gotchas discovered during the migration. When you complete a complex project with Claude Code, extract the workflow into a skill. Next time you face a similar task, the skill provides the playbook.

What's Actually Verified

Every flow was tested with Playwright MCP:

  • GET login page โ†’ fill credentials โ†’ click "Sign in" โ†’ land on dashboard
  • Vue app rendering with navigation working
  • User data displayed correctly
  • HMAC signatures accepted by Go API

This isn't just unit testsโ€”it's full integration testing that the migration actually works.

The Takeaway for Your Next Claude Code Session

Three things made this migration successful:

  1. Detailed spec before coding โ€” Claude executes against concrete requirements
  2. TDD as the feedback loop โ€” Tests tell Claude when each component works
  3. Incremental verification โ€” Commit after every task, test after every component

Don't batch 10 things and hope they all work. Break your project into verifiable steps where Claude can see its own progress. The result? 148 green tests and a production-ready application scaffold in 8 hours.

Originally published on gentic.news

Tags:#cloud#dev.to

Found this useful? Share it!

โœˆ๏ธ Telegram๐• TweetWhatsApp

Read the Full Story

Continue reading on Dev.to

Visit Dev.to โ†—

Related Stories

โ˜๏ธ
โ˜๏ธCloud & DevOps

I wanted shadcn/ui for Blazor. It didnโ€™t exist. So I built it.

about 19 hours ago

โ˜๏ธ
โ˜๏ธCloud & DevOps

Shipping Fast with AI? Youโ€™re Probably Shipping Vulnerabilities Too.

about 19 hours ago

Oops, I Vibecoded Again. Please Help Me! โ€” A CSS Refiner
โ˜๏ธCloud & DevOps

Oops, I Vibecoded Again. Please Help Me! โ€” A CSS Refiner

about 19 hours ago

๐Ÿ’ณ Dรฉtection de Fraude Bancaire & IA : Ma contribution au Notion MCP Challenge
โ˜๏ธCloud & DevOps

๐Ÿ’ณ Dรฉtection de Fraude Bancaire & IA : Ma contribution au Notion MCP Challenge

about 19 hours ago

๐Ÿ“ก Source Details

Dev.to

๐Ÿ“… Mar 24, 2026

๐Ÿ• 2 days ago

โฑ 4 min read

๐Ÿ—‚ Cloud & DevOps

Read Original โ†—

Web Hosting

๐ŸŒ Hostinger โ€” 80% Off Hosting

Start your website for โ‚น69/mo. Free domain + SSL included.

Claim Deal โ†’

๐Ÿ“ฌ AiFeed24 Daily

Top 5 AI & tech stories every morning. Join 40,000+ readers.

โœฆ 40,218 subscribers ยท No spam, ever

Cloud Hosting

โ˜๏ธ Vultr โ€” $100 Free Credit

Deploy cloud servers in 25+ locations. From $2.50/mo. No contract.

Claim $100 Credit โ†’
AiFeed24

India's AI-powered tech news hub. Daily coverage of AI, startups, crypto and emerging technology.

โœˆ๏ธ๐Ÿ›’

Topics

Artificial IntelligenceStartups & VCCryptocurrencyCybersecurityCloud & DevOpsIndia Tech

Company

About AiFeed24Write For UsContact

Daily Digest

Top 5 AI stories every morning. 40,000+ readers.

No spam, ever.

ยฉ 2026 AiFeed24 Media.Affiliate Disclosure โ€” We earn commission on qualifying purchases at no extra cost to you.
PrivacyTermsCookies