omegacms/framework

This package install all omega framework dependancy.

1.0.0 2024-10-20 16:36 UTC

This package is auto-updated.

Last update: 2024-10-20 16:37: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:

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