Download the PHP package aliqsyed/scaffolder without Composer

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

Scaffolder

Packagist Version GitHub CircleCI

About Scaffolder

This Laravel package scaffolds Controllers, Models, Factories, Policies, Requests and front end blade files for forms (both edit and delete), show and index views.

This package generates code. Please make sure you read the generated code and make any corrections necessary.

Compatiblity

This package works with Laravel 6.0 and above.

Installation

Via Composer

This will add the scaffolder artisan commands to your project.

Usage

You need to create and run a migration for a table. This is a mandatory step since the scoffolds for items listed above are based on the table structure.

Let's say you have created a table called posts. You can create various classes/files as follows:

or you can generate all the scaffolds available at once by running the following command:

All the classes and views generated are copied to their standard Laravel locations.

Command options

--force

Use this option to overwrite an existing file.

--nostubs

Use this option to use the stubs that come with the package instead of the onces published. See information below on publishing stubs.

Additional command options for models only

If you are generating models, you can use these additional options.

--nosetters

If you use this option, the model will be created without any setters. By default there are setters for date fields.

--nocasts

If you use this option, the model will be created without any casts. By default there are casts for date fields.

Customizing the code being generated

Use the tag scaffolder.stubs to publish stubs.

The publishes the stubs for scaffolder to resources/vendor/aliqsyed/stubs folder.

Once the stubs are published, you can edit them in any way you want. Please do not delete any individual files in the stubs folder.

You can delete the resources/vendor/aliqsyed/stubs directory, and the package will go back to using the default stubs that come with the package.

License

MIT. Please see the license file for more information.


All versions of scaffolder with dependencies

PHP Build Version
Package Version
Requires doctrine/dbal Version ^2.10
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 aliqsyed/scaffolder contains the following files

Loading the files please wait ....