Download the PHP package infancyit/igloo without Composer

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

Igloo Code Generator

Contents

Change Log

New in v1.2

New in v1.1

Installation

1) To install Igloo Code Generator, run the following command:

2) Run the command below to load all configuration file:

3) For allowing CORS on a API middleware group or route, add the HandleCors middleware to middleware array in the file:

Usage

Create Model

Let's start by creating a basic Model:

Model will be saved on app\Models folder.

Run the following command on project root.

If you want to add fillable or guarded value you may pass the list of columns as well:

or

or

Create Service

Let's create some basic Service which will extends our BaseService from app\Services:

Run the following command on project root.

Create Repository

Let's create some basic Repository which will extends our BaseRepository from app\Repositories:

Run the following command on project root.

Create Transformer

Let's create a basic Transformer:

Transformer will be created in the app/Transformers/Api folder.

Run the following command on project root.

In the creation of Transformer attributes list are required. All columns should be separated by a single , (comma). This will create the main portion like this

Create Request

Let's create a basic Request:

Transformer will be created in the app/Request/Api folder.

Run the following command on project root.

In the creation of Request attributes list are required. All columns should be separated by a single , (comma). This will create the main portion like this

Create Route

You can also create API routes for your model. Run the following command on project root.

This command will output like this:

This command will not save anything. You've to copy this segment from console and paste it in your web.php or api.php file. The assumption for the controller name will be [Modelname]Controller.

Installation

License

Igloo Code Generator is free software distributed under the terms of the MIT license.


All versions of igloo with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version ^5.5
laracasts/generators Version ^1.1
spatie/laravel-fractal Version ^5.3
ellipsesynergie/api-response Version ^0.15.0
barryvdh/laravel-cors Version ^0.11.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 infancyit/igloo contains the following files

Loading the files please wait ....