Download the PHP package monolyth/lodger without Composer

On this page you can find all versions of the php package monolyth/lodger. 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 lodger

monolyth/lodger

Codger recipes for Monolyth components

Installation

Using Composer (recommended):

Usage

See the Codger documentation for general usage.

Included recipes

lodger/module

Generates an entire Monolyth-style module. --skip-SOMETHING options are provided to skip certain components, e.g. --skip-model to not generate a model.

lodger/model

Generate a model. By default properties are added according to a corresponding database table; use --skip-prefill to skip this. Optionally specify --ornament to make the model Ornament-compatible.

lodger/repository

Generate a repository. Though not technically a part of Monolyth (since we don't want to dictate how you handle your data), in practice Monolyth projects tend to use repositories for all (database) storage operations - i.e., insert, update, delete and select.

Generated repositories hold basic common methods such as save, all and find. However, the implementation is up to you. If your repositories follow a common structure, we recommend extending a base class instead. For database-based storage, have a look at the DatabaseRepository in sensimedia\supporty. It plays very nicely with Monolyth, but does make some assumptions based on how Sensi Media (my company) builds its projects.

lodger/view

Generate a generic (page) view.

lodger/listing/view and lodger/listing/template

Generate a view and template for a "listing page". This contains basically the output of a repository's all() call, with clickable links.

lodger/detail/view and lodger/detail/template

Generate a view and template for a "detail view". This is where you end up when you click on one of the listing links ;)

lodger/controller

Generate a generic CRUD controller. The generated create, update and delete methods work out of the box with the corresponding repository, but of course do nothing yet since we aren't dictating how you should store your data (or handle permissions, for that matter).

lodger/form

Generate a Formulaic form to go with the module.


All versions of lodger with dependencies

PHP Build Version
Package Version
Requires php Version >=8
codger/php Version ^0.9.11
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 monolyth/lodger contains the following files

Loading the files please wait ....