Download the PHP package luna/laravel-packager without Composer
On this page you can find all versions of the php package luna/laravel-packager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download luna/laravel-packager
More information about luna/laravel-packager
Files in luna/laravel-packager
Package laravel-packager
Short Description Create a Laravel package template with ease
License MIT
Informations about the package laravel-packager
Laravel Packager
# Prerequisites
This package should run on PHP 5.5+ and Laravel 5.1+.
# Setup
First, add this package to your composer.json
:
Then, add the service provider to config/app.php
:
If you want to use the package in the current project without adding it to, for example, packagist just yet, ie. for development, add the following line to your main project's composer.json
:
After adding that line, run composer dump
, and add the package's service provider to config/app.php
.
For example, you made a package which has the following structure: <project_root>/packages/Foo/Bar/BarServiceProvider.php
.
When you add the line to the composer.json
in the project root, you can use that service provider with it's usual namespace: Foo\Bar\BarServiceProvider::class
.
# Usage
Be default, the package files are created in <project_root>/packages/Vendor/Package
.
By specifying --base-dir
in the make:package
command, you can change where the files are placed.
All versions of laravel-packager with dependencies
illuminate/support Version 5.1.*|5.2.*|5.3.*|5.4.*
illuminate/console Version 5.1.*|5.2.*|5.3.*|5.4.*
illuminate/filesystem Version 5.1.*|5.2.*|5.3.*|5.4.*