Download the PHP package reinvanoyen/cmf without Composer

On this page you can find all versions of the php package reinvanoyen/cmf. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package cmf

Laravel CMF

Tests License Latest Stable Version PHP Version Require Total Downloads

Introduction

Laravel CMF is the flexible Content Management Framework for your next application. This software allows for rapid creation of your Content Management System while not being opinionated on how you build your Laravel application.

Installation

First, require the package using composer:

This will automatically register the service provider in your config/app.php.

Next, run the cmf:install command. This will essentially publish assets, config-files, migrations and other needed files.

The install command has also published an application-specific service provider. Register it in your config/app.php file, like so:

Migrate your application.

Create a user.

This command will ask for a name for your user, an email address and a password.

Once the user is created, you're ready to start building!

Updating

Build a basic CRUD module

This section assumes you have already created the needed migration and model for your database entries.

Next you'll have to create a meta file. This is the file that describes how the software should interpret your entry.

The package provides an easy-to-use command to create your meta file. If you want to make a CRUD module for your "Project" model, all you have to do is run the following:

A new meta file for this model will be created under App/Cmf/Meta. To change this location, change the meta_namespace option in your config/cmf.php file.

Now that your meta file has been created, run the following command to generate your basic module:

A new module file will be created under App/Cmf/Modules. To change this location, change the modules_namespace option in your config/cmf.php file.

All that's left to do, is to register your module in the application-specific service provider. Add the module to your App\Providers\CmfServiceProvider.php, like so:

Log in to your CMF backend panel (/admin), you should see your newly created module in the left-hand navigation panel.


All versions of cmf with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4|^8.0
spatie/temporary-directory Version ^1.3
intervention/image Version ^2.7
ozdemirburak/iris Version ^2.5
spatie/laravel-tags Version ^2.0|^3.0|^4.0
illuminate/support Version ^8.0|^9.0|^10.0
illuminate/database Version ^8.0|^9.0|^10.0
illuminate/http Version ^8.0|^9.0|^10.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package reinvanoyen/cmf contains the following files

Loading the files please wait ....