PHPackages                             appitudeio/lcms-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. appitudeio/lcms-sdk

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

appitudeio/lcms-sdk
===================

LCMS SDK

3.8.0(1mo ago)03proprietaryPHPPHP &gt;=8.1

Since Jan 19Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/appitudeio/LCMS-SDK)[ Packagist](https://packagist.org/packages/appitudeio/lcms-sdk)[ RSS](/packages/appitudeio-lcms-sdk/feed)WikiDiscussions development Synced 1mo ago

READMEChangelog (10)Dependencies (9)Versions (168)Used By (0)

LCMS SDK
========

[](#lcms-sdk)

A PHP MVC framework for building content-managed applications powered by the Logical Content Management System (LCMS).

Overview
--------

[](#overview)

The LCMS SDK provides a complete application framework with routing, controllers, views, database integration, multi-language support, and seamless integration with LCMS cloud services.

Requirements
------------

[](#requirements)

- PHP &gt;= 8.1
- Composer

Installation
------------

[](#installation)

```
composer require appitudeio/lcms-sdk
```

Core Components
---------------

[](#core-components)

### Application Kernel (Backbone)

[](#application-kernel-backbone)

- **Request/Response** - HTTP handling with middleware support
- **Routing** - Pattern matching, named routes, localization
- **Kernel** - Application bootstrapper with event system

### MVC Architecture

[](#mvc-architecture)

- **Controllers** - Base controller with before/after hooks
- **Views** - Template rendering with data binding
- **Pages** - Page compilation and metadata management

### Content Management

[](#content-management)

- **Node System** - Dynamic content blocks (TEXT, HTML, IMAGE, LOOP, etc.)
- **Template Engine** - HTML parsing and rendering
- **Database** - PDO wrapper with query builder
- **SEO** - Meta tags, OpenGraph, Twitter Cards, JSON-LD

### Internationalization

[](#internationalization)

- **Locale** - Multi-language support with currency, timezone handling
- **Translator** - i18n translation system
- **Navigation** - Localized navigation management

### Integration

[](#integration)

- **API Client** - LCMS cloud services integration (sandbox/production)
- **Asset Management** - File uploads with validation
- **Storage** - CDN integration via LCMS Storage

### Utilities

[](#utilities)

- **DI Container** - PHP-DI dependency injection
- **Cache** - Caching layer
- **Logger** - Logging functionality
- **Env** - Environment configuration
- **Crypt** - Encryption utilities
- **Recaptcha/Akismet** - Spam protection

Basic Usage
-----------

[](#basic-usage)

### Routing

[](#routing)

```
use LCMS\Route;

Route::get('/', 'HomeController@index');
Route::get('/about', 'PageController@show');
Route::post('/contact', 'ContactController@submit');
```

### Controllers

[](#controllers)

```
use LCMS\Controller;

class HomeController extends Controller {
    public function index() {
        return $this->view('home', [
            'title' => 'Welcome'
        ]);
    }
}
```

### Database

[](#database)

```
use LCMS\Database;

$users = Database::table('users')
    ->where('active', true)
    ->get();
```

### Multi-language

[](#multi-language)

```
use LCMS\Translator;

Translator::set('welcome', 'Welcome', 'en');
Translator::set('welcome', 'Välkommen', 'sv');

echo Translator::get('welcome'); // Outputs based on current locale
```

Architecture
------------

[](#architecture)

The SDK is designed to work with LCMS cloud services while providing flexibility for custom implementations. Applications built with the SDK can leverage centralized content management, multi-site support, and CDN delivery.

Dependencies
------------

[](#dependencies)

- [Guzzle HTTP](https://github.com/guzzle/guzzle) - HTTP client
- [PHP-DI](https://php-di.org/) - Dependency injection
- [LCMS Storage](https://packagist.org/packages/appitudeio/lcms-storage) - Asset storage

License
-------

[](#license)

Proprietary. See [LICENSE.md](LICENSE.md) for details.

Copyright (c) 2025 Appitude AB - All rights reserved.

Support
-------

[](#support)

For licensing and support inquiries:

###  Health Score

47

—

FairBetter than 94% of packages

Maintenance89

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~9 days

Recently: every ~3 days

Total

160

Last Release

54d ago

PHP version history (3 changes)v3.0.0PHP &gt;=7.4

v3.1.0PHP &gt;=8.0

v3.3.0-beta.9PHP &gt;=8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/d9c15bcc162cc07194eed7597e4bd984476128c39b5b54959fcf9dc139e96d23?d=identicon)[oakleaf](/maintainers/oakleaf)

---

Top Contributors

[![oakleaf](https://avatars.githubusercontent.com/u/441910?v=4)](https://github.com/oakleaf "oakleaf (63 commits)")

### Embed Badge

![Health badge](/badges/appitudeio-lcms-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/appitudeio-lcms-sdk/health.svg)](https://phpackages.com/packages/appitudeio-lcms-sdk)
```

###  Alternatives

[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
