Download the PHP package anlutro/l4-core without Composer

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

L4 Core Build Status Latest Version

This is my personal development boilerplate for Laravel 4. It includes user management and authentication controllers, views, language files and more.

As this is a repository mostly for my personal use, I do not recommend you ever install this into your project as I will never bother to document everything. Instead, draw inspiration from it, pick up tricks here and there from reading source code.

Also check out the following repositories, which contains classes that this package uses. These are suited to be included in your own projects and are more thoroughly documented.

Prerequisites

Installation

composer require anlutro/l4-core - pick the latest minor release tag from github or packagist. For example, 0.16.*

Add anlutro\Core\CoreServiceProvider to the list of providers in app/config/app.php.

Run artisan core:publish config to publish config files. You can do the same with "migration", "lang" and "view" if you want. Delete the published files you don't want to override.

Remove everything from app/start/global.php except the line that sets up the logger.

In app/config/auth.php, set the driver to "eloquent-exceptions".

In app/start/global.php or a serviceprovider's boot method, you need to add some code.

Password reset

If you want the new and improved password reset/reminder functionality, remove the default ReminderServiceProvider from the providers array and replace it with anlutro\Core\Auth\Reminders\ReminderServiceProvider.

User registration and activation

If you want access to activation, add anlutro\Core\Auth\Activation\ActivationServiceProvider as well.

Improved form builder

Replace the default Laravel HtmlServiceProvider with anlutro\Core\Html\ServiceProvider in the providers array.

Contact

Open an issue on GitHub if you have any questions.

License

The contents of this repository is released under the MIT license.


All versions of l4-core with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
anlutro/l4-repository Version 0.7.*
anlutro/l4-controller Version 0.3.*
anlutro/l4-testing Version 0.2.*
laravel/framework Version ~4.2
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 anlutro/l4-core contains the following files

Loading the files please wait ....