Download the PHP package cleaniquecoders/artisan-extended without Composer

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

Laravel Artisan Extended

Installation

Register Service Provider

Open up config/app.php and register CleaniqueCoders\ArtisanExtended\ArtisanExtendedServiceProvider::class, in providers key.

Publishing Reusable Components and Layouts

Run following command to publish reusable components:

p/s: Scaffold / Resourceful views require reusable components, hence you need to publish the artisan-extended-views.

Important Notes

On production, only php artisan clear:cache available for use, other than that if your application running on local or staging, all the Artisan Extended commands available for you on artisan console.

Available Commands

Create a New Scaffold

You may create single or multiple Model at one time.

OR

p/s: Please take note that, for now you still need to update the model $fillable property, ModelFactory.php and model's migration scripts.

Clear All Caches

Clear All Caches and Serve the Application

In case you need to run at different port:

Create a New Route

Options available:

  1. -a - Create a new route for API
  2. -p - Set prefix for the route
  3. -m - Set middleware for the route. Each middleware separated by comma(,)
  4. -r - Create a new resourceful controller

Create an API Route

Create an API Route with Version

Create an API Route with Version and Middlewares

Create a new View

Generate a view extending default layout, app.

Generate a new admin's dashboard with layouts of admin.

Generate a resourceful view, by passing a -r option and ommit the specific blade files.

This command will create a directory named users in resources/views. There will be:

  1. index.blade.php,
  2. show.blade.php and
  3. form.blade.php.

You may want to create a resourceful controller by running php artisan make:resourceful UserController.

Create Event & Listener

Secure your Cookies

This command only for the new project only, as this command will change the default value of the cookie name to random string and set encrypt to true. It's recommended to change your application's cookie name and encrypt it.


All versions of artisan-extended with dependencies

PHP Build Version
Package Version
Requires illuminate/console Version 5.3.*
illuminate/support Version 5.3.*
laracasts/flash Version ^2.0
santigarcor/laratrust Version 3.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 cleaniquecoders/artisan-extended contains the following files

Loading the files please wait ....