Download the PHP package reedware/laravel-blueprints without Composer

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

Laravel Blueprints

Adds useful methods to the blueprint schema builder.

Laravel Version Code Quality Total Downloads

Installation

Step 1: Require this Package

Require this package with composer.

This package uses auto-discovery, so it doesn't require you to manually add the service provider for Laravel 5.5+. Should you choose to register the service provider manually, or you're using a framework older than Laravel 5.5, you can include the following class in your list of service providers:

Step 2: Publish Configuration

This package comes with a configuration file. You can either publish the configuration file (using php artisan vendor:publish), or by copying the configuration file from the source code directly (see ~/config/blueprints.php).

Step 3: Replace the Schema Facade

This package leverages the Schema facade to override the default blueprint resolver for the schema builder. While this is minimally invasive on Laravel's source code, it requires a small workaround to become functional in a project. The first quirk is that you'll have to replace Laravel's default Schema facade with the one provided by this package.

Step 4: Change your Migrations before running

Since Laravel 5.3, the absolute path to Laravel's Schema facade was included in all of the migrations that were automatically generated. This bypasses the facade configuration that you did in Step 3. You can either uncomment this line (which will then defer to the correct facade), or you change the namespace to match the one from this package.

or


use Reedware\LaravelBlueprints\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

All versions of laravel-blueprints with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1.0
illuminate/database Version ^5.1|^6.0|^7.0|^8.0
illuminate/support Version ^5.1|^6.0|^7.0|^8.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 reedware/laravel-blueprints contains the following files

Loading the files please wait ....