TL;DR: I built Lighthouse PHP Framework because modern frameworks got too complex. It lets you handle forms in views (like PHP intended), uses SQLite out of the box, includes security by default, and gets you productive in 30 seconds. No controllers, no magic, just productive PHP development.TL;DR: I built Lighthouse PHP Framework because modern frameworks got too complex. It lets you handle forms in views (like PHP intended), uses SQLite out of the box, includes security by default, and gets you productive in 30 seconds. No controllers, no magic, just productive PHP development.

Tired of Learning 50 New Concepts to Build a Form? Say Hello to Lighthouse for PHP

Building modern web apps shouldn't require learning 50 new concepts. Sometimes you just want to write PHP.

The Problem with Modern PHP Frameworks

Don't get me wrong—Laravel, Symfony, and other frameworks are incredible. But sometimes you're building a simple web app and you find yourself:

  • 📚 Reading documentation for hours just to create a basic form
  • 🔧 Configuring dozens of services you don't need
  • 🐘 Fighting with complex abstractions for simple tasks
  • ⚡ Waiting for slow development servers to restart

What if there was a better way?

Meet Lighthouse 🚨

Lighthouse is a minimal, predictable PHP micro-framework that embraces the simplicity PHP was meant for. It's designed around one core principle: get productive immediately.

<?php // That's it. Your first route. route('/', function() { return view('home.php', ['message' => 'Hello World!']); });

Why Lighthouse is Different

1. Logic Where It Makes Sense

Instead of forcing everything through controllers, Lighthouse lets you handle form logic directly in views—the way PHP was designed:

<?php // views/contact.php $errors = []; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $email = sanitize_email($_POST['email']); $message = sanitize_string($_POST['message']); if (!validate_email($email)) { $errors[] = 'Invalid email'; } if (empty($errors)) { db_insert('contacts', ['email' => $email, 'message' => $message]); $success = 'Message sent!'; } } ?> <form method="POST"> <?php if ($success ?? false): ?> <div class="success"><?= $success ?></div> <?php endif; ?> <input type="email" name="email" required> <textarea name="message" required></textarea> <button type="submit">Send</button> </form>

Self-contained. Predictable. No magic.

2. Modern Stack, Zero Configuration

  • PHP 8+ with type hints and modern features
  • SQLite for zero-config databases
  • HTMX for dynamic interactions
  • Pico.css for beautiful, minimal styling

# Get started in 30 seconds lighthouse new my-app cd my-app php -S localhost:8000 -t public/

3. Security by Default

// CSRF protection built-in <?= csrf_field() ?> // Input sanitization included $clean_input = sanitize_string($_POST['data']); // Rate limiting ready if (!check_rate_limit($_SERVER['REMOTE_ADDR'])) { // Handle rate limit }

4. Database Operations That Make Sense

// Simple, predictable database operations $users = db_select('users', ['active' => 1]); $user_id = db_insert('users', ['name' => $name, 'email' => $email]); db_update('users', ['last_login' => date('Y-m-d H:i:s')], ['id' => $user_id]);

Real-World Example: Authentication in 5 Minutes

Here's how you build a complete login system:

<?php // routes.php route('/login', function() { return view('login.php'); }); route('/dashboard', function() { if (!auth_user()) { header('Location: /login'); exit; } return view('dashboard.php'); });

<?php // views/login.php if ($_SERVER['REQUEST_METHOD'] === 'POST') { $email = sanitize_email($_POST['email']); $password = $_POST['password']; $user = db_select_one('users', ['email' => $email]); if ($user && auth_verify_password($password, $user['password'])) { auth_login($user['id']); header('Location: /dashboard'); exit; } $error = 'Invalid credentials'; } ?> <form method="POST"> <?php if ($error ?? false): ?> <div class="error"><?= $error ?></div> <?php endif; ?> <input type="email" name="email" required> <input type="password" name="password" required> <?= csrf_field() ?> <button type="submit">Login</button> </form>

That's it. No controllers, no middleware configuration, no service providers. Just PHP doing what PHP does best.

When to Use Lighthouse

Lighthouse shines when you're building:

  • 🚀 MVPs and prototypes - Get to market fast
  • 📊 Internal tools and dashboards - No need for complexity
  • 🏢 Small business websites - Contact forms, simple e-commerce
  • 🎓 Learning projects - Focus on concepts, not framework magic
  • 🔧 API backends - Lightweight and fast

The Philosophy

Lighthouse embraces pragmatic PHP development:

  • Start simple - Use logic in views for rapid development
  • Refactor when needed - Move to more complex patterns as you grow
  • Choose what fits - Multiple approaches supported
  • Stay productive - Don't over-engineer simple problems

Getting Started

# Install the CLI bash -c "$(curl -fsSL https://raw.githubusercontent.com/max-yterb/Lighthouse/main/scripts/install.sh)" # Create your first app lighthouse new my-awesome-app cd my-awesome-app # Start building php -S localhost:8000 -t public/

What's Next?

Lighthouse is actively developed with a focus on:

  • 🔐 Enhanced authentication providers (OAuth, SAML)
  • 🗄️ Multiple database support (MySQL, PostgreSQL)
  • ⚡ Performance monitoring tools
  • 📱 Advanced HTMX integration patterns

Try It Today

If you're tired of complex frameworks for simple projects, give Lighthouse a try. It might just remind you why you fell in love with PHP in the first place.

  • 📖 Documentation: max-yterb.github.io/Lighthouse
  • 💻 GitHub: github.com/max-yterb/Lighthouse
  • 💬 Discussions: GitHub Discussions

What do you think? Are you ready to try a framework that gets out of your way? Drop a comment below with your thoughts on modern PHP development!

Piyasa Fırsatı
FORM Logosu
FORM Fiyatı(FORM)
$0.3679
$0.3679$0.3679
-2.74%
USD
FORM (FORM) Canlı Fiyat Grafiği
Sorumluluk Reddi: Bu sitede yeniden yayınlanan makaleler, halka açık platformlardan alınmıştır ve yalnızca bilgilendirme amaçlıdır. MEXC'nin görüşlerini yansıtmayabilir. Tüm hakları telif sahiplerine aittir. Herhangi bir içeriğin üçüncü taraf haklarını ihlal ettiğini düşünüyorsanız, kaldırılması için lütfen [email protected] ile iletişime geçin. MEXC, içeriğin doğruluğu, eksiksizliği veya güncelliği konusunda hiçbir garanti vermez ve sağlanan bilgilere dayalı olarak alınan herhangi bir eylemden sorumlu değildir. İçerik, finansal, yasal veya diğer profesyonel tavsiye niteliğinde değildir ve MEXC tarafından bir tavsiye veya onay olarak değerlendirilmemelidir.

Ayrıca Şunları da Beğenebilirsiniz

Japan-Based Bitcoin Treasury Company Metaplanet Completes $1.4 Billion IPO! Will It Buy Bitcoin? Here Are the Details

Japan-Based Bitcoin Treasury Company Metaplanet Completes $1.4 Billion IPO! Will It Buy Bitcoin? Here Are the Details

The post Japan-Based Bitcoin Treasury Company Metaplanet Completes $1.4 Billion IPO! Will It Buy Bitcoin? Here Are the Details appeared on BitcoinEthereumNews.com. Japan-based Bitcoin treasury company Metaplanet announced today that it has successfully completed its public offering process. Metaplanet Grows Bitcoin Treasury with $1.4 Billion IPO The company’s CEO, Simon Gerovich, stated in a post on the X platform that a large number of institutional investors participated in the process. Among the investors, mutual funds, sovereign wealth funds, and hedge funds were notable. According to Gerovich, approximately 100 institutional investors participated in roadshows held prior to the IPO. Ultimately, over 70 investors participated in Metaplanet’s capital raising. Previously disclosed information indicated that the company had raised approximately $1.4 billion through the IPO. This funding will accelerate Metaplanet’s growth plans and, in particular, allow the company to increase its balance sheet Bitcoin holdings. Gerovich emphasized that this step will propel Metaplanet to its next stage of development and strengthen the company’s global Bitcoin strategy. Metaplanet has recently become one of the leading companies in Japan in promoting digital asset adoption. The company has previously stated that it views Bitcoin as a long-term store of value. This large-scale IPO is considered a significant step in not only strengthening Metaplanet’s capital but also consolidating Japan’s role in the global crypto finance market. *This is not investment advice. Follow our Telegram and Twitter account now for exclusive news, analytics and on-chain data! Source: https://en.bitcoinsistemi.com/japan-based-bitcoin-treasury-company-metaplanet-completes-1-4-billion-ipo-will-it-buy-bitcoin-here-are-the-details/
Paylaş
BitcoinEthereumNews2025/09/18 08:42
CME Group to Launch Solana and XRP Futures Options

CME Group to Launch Solana and XRP Futures Options

The post CME Group to Launch Solana and XRP Futures Options appeared on BitcoinEthereumNews.com. An announcement was made by CME Group, the largest derivatives exchanger worldwide, revealed that it would introduce options for Solana and XRP futures. It is the latest addition to CME crypto derivatives as institutions and retail investors increase their demand for Solana and XRP. CME Expands Crypto Offerings With Solana and XRP Options Launch According to a press release, the launch is scheduled for October 13, 2025, pending regulatory approval. The new products will allow traders to access options on Solana, Micro Solana, XRP, and Micro XRP futures. Expiries will be offered on business days on a monthly, and quarterly basis to provide more flexibility to market players. CME Group said the contracts are designed to meet demand from institutions, hedge funds, and active retail traders. According to Giovanni Vicioso, the launch reflects high liquidity in Solana and XRP futures. Vicioso is the Global Head of Cryptocurrency Products for the CME Group. He noted that the new contracts will provide additional tools for risk management and exposure strategies. Recently, CME XRP futures registered record open interest amid ETF approval optimism, reinforcing confidence in contract demand. Cumberland, one of the leading liquidity providers, welcomed the development and said it highlights the shift beyond Bitcoin and Ethereum. FalconX, another trading firm, added that rising digital asset treasuries are increasing the need for hedging tools on alternative tokens like Solana and XRP. High Record Trading Volumes Demand Solana and XRP Futures Solana futures and XRP continue to gain popularity since their launch earlier this year. According to CME official records, many have bought and sold more than 540,000 Solana futures contracts since March. A value that amounts to over $22 billion dollars. Solana contracts hit a record 9,000 contracts in August, worth $437 million. Open interest also set a record at 12,500 contracts.…
Paylaş
BitcoinEthereumNews2025/09/18 01:39
Why the Testing Method Developers Prefer Is Rarely Ever the One That Finds the Most Bugs

Why the Testing Method Developers Prefer Is Rarely Ever the One That Finds the Most Bugs

A replicated controlled study confirms that developers’ perceptions, preferences, and opinions about software testing techniques do not reliably predict actual
Paylaş
Hackernoon2025/12/18 05:00