Download the PHP package asxer/laravel-entity-generator without Composer

On this page you can find all versions of the php package asxer/laravel-entity-generator. 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 laravel-entity-generator

Laravel-Entity-Generator

Laravel-Entity-Generator - This generator is used to create a standard class stack for a new entity.

Install

Add Asxer\Support\EntityGeneratorServiceProvider::class to app/config/app.php, into 'providers' variable. And publish.

Examples

Documentation

artisan make:entity command - add new Entity to project.

Syntax: artisan make:entity [name] [flags]

[name] - Name of the Entity.

[flags] :

-i|--integer                : Add integer field to entity.

-I|--integer-required       : Add required integer field to entity. If you want to specify default value you have to do it manually.

-f|--float                  : Add float field to entity.

-F|--float-required         : Add required float field to entity. If you want to specify default value you have to do it manually.

-s|--string                 : Add string field to entity. Default type is VARCHAR(255) but you can change it manually in migration.

-S|--string-required        : Add required string field to entity. If you want to specify default value ir size you have to do it manually.

-b|--boolean                : Add boolean field to entity.

-B|--boolean-required       : Add boolean field to entity. If you want to specify default value you have to do it manually.

-t|--timestamp              : Add timestamp field to entity.

-T|--timestamp-required     : Add timestamp field to entity. If you want to specify default value you have to do it manually.

-j|--json                   : Add json field to entity.

-a|--has-one          : Set hasOne relations between you entity and existed entity.

-A|--has-many         : Set hasMany relations between you entity and existed entity.

-e|--belongs-to       : Set belongsTo relations between you entity and existed entity.

-E|--belongs-to-many  : Set belongsToMany relations between you entity and existed entity.   

--without-model       : Set this flag if you already have model for this entity. Command will find it. This flag is a lower priority than --only-model.

--without-repository  : Set if you don't want to use Data Access Level. Created Service will use special trait for controlling entity. This flag is a lower priority than --without-repository.

--without-service     : Set this flag if you don't want to create service.

--without-controller  : Set this flag if you don't want to create controller. Automatically requests and tests will not create too.

--without-migration  : Set this flag if you already have table on db. This flag is a lower priority than --only-migration.

--without-requests    : Set this flag if you don't want to create requests to you controller.

--without-factory     : Set this flag if you don't want to create factory.

--without-tests       : Set this flag if you don't want to create tests. This flag is a lower priority than --only-tests.

--without-seeder      : Set this flag if you don't want to create seeder.

--only-model          : Set this flag if you want to create only model. This flag is a higher priority than --without-model, --only-migration, --only-tests and --only-repository.

--only-repository     : Set this flag if you want to create only repository. This flag is a higher priority than --without-repository, --only-tests and --only-migration.

--only-service        : Set this flag if you want to create only service.

--only-controller     : Set this flag if you want to create only controller.

--only-requests       : Set this flag if you want to create only requests.

--only-migration     : Set this flag if you want to create only repository. This flag is a higher priority than --without-migration and --only-tests.

--only-factory        : Set this flag if you want to create only factory. This flag is a higher priority than --without-factory.

--only-tests          : Set this flag if you want to create only tests. This flag is a higher priority than --without-tests.

--only-seeder         : Set this flag if you want to create only seeder.

Release notes

1.3

Since 1.3 version you need to add to your config/entity-generator.php following data:


All versions of laravel-entity-generator with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1.3
laravel/framework Version >=5.4.0
tymon/jwt-auth Version 0.5.* || 1.0.*@beta
minime/annotations Version 2.3.1
asxer/laravel-helpers Version >=1.5.1
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 asxer/laravel-entity-generator contains the following files

Loading the files please wait ....