omegacms/framework

The example application for the Omega framework.

1.0.0 2024-04-11 14:40 UTC

This package is auto-updated.

Last update: 2024-04-11 14:42:32 UTC


README

Release Information

Omega Framework 1.0.0

Overview

This repository contains the composer.json file to install the full stack of OmegaCMS Framework. All the components listed below will be installed:

Components
application filesystem serializable-closure
cache helpers session
config http support
container logging testing
database model validation
email queue view
environment renderer
exceptions routing

New Features

  • A large number of improvements, upgrades, fix and refactors across many components.
  • Support for PHP 8.1+.

Top

Install

There are multiple ways you can get Pop PHP Framework into your project.

Option 1: Create a New Project

You can create a new project with the composer create-project command, which is recommended.

$ composer create-project omegacms/framework project-folder
Option 2: Clone the Repo

You can clone this repository directly.

$ git clone https://github.com/omegacms/framework.git project-folder
$ cd project-folder
$ composer install
Option 3: Use composer require

You can add it to an existing project with the composer require command:

$ composer require omegacms/framework
Option 4: Use composer.json

You can add it your project's composer.json file:

"require": {
    "omegacms/framework": "^1.0.0"
}

Top

Support

The best way to directly interact with Omega CMS is here on GitHub. You can:

  • Contribute code
  • Request a feature
  • Report an issue

but please do so under the pertinent repository related to the topic at hand.

Top