Download the PHP package itsrd/scaffy without Composer

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

StyleCI

This package is no longer maintained.

Scaffy - Scaffold your Laravel application

Never write a CRUD

Requirements

Installation

Require this package with composer:

After adding the package to composer you can add the service provider to the providers array in config/app.php

Now you've to publish the config, you can use the config to setup templates to create your very own scaffolder

Now you want to install the 'scaffy directory' to create your own templates

Usage

To use scaffy, you can run this command:

Custom Templates (in progress)

Scaffy has already included a default template out of the box with some default settings. You can also set your own default template in the config file.

Templates are made to scaffold specific items on a website (e.g. admin).

Variables

You can use these variables in any stub file or filename, these variables will compile to the results listed below. You can also create params yourself in the scaffy config (templates > template name > params)

In the results below we use the name 'social-media'

Variable Explanation Result
&name& Entered name page
&class_name& Classname of entered 'name' SocialMedia
&snake_name& Snakecase of entered 'name' page_media
&controller_path& Default controller path (can be changed in config) app/Http/Controllers
&controller_ns& Default controller namespace App\Http\Controllers
&request_path& Default request path (can be changed in config) app/Http/Requests
&request_ns& Default request namespace App\Http\Requests
&model_path& Default model path (can be changed in config) app/
&model_ns& default model path App
&view_path laravel path to view /resources/views
&plural_name& Makes plural of 'name' social-media
&slugged_name& Makes a slug of 'name' social-media

License

The MIT License (MIT). Please see License File for more information.


All versions of scaffy with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version ^5.6|^6.0|^7.0|^8.0
php Version ~7.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 itsrd/scaffy contains the following files

Loading the files please wait ....