ldynia/core

There is no license information available for the latest version (dev-master) of this package.

Core lib for any Laravel project -the aim is to facilitate development of common tasks

dev-master 2015-08-27 11:49 UTC

This package is auto-updated.

Last update: 2024-03-29 03:20:28 UTC


README

The purpose of the package is to facilitates common operations encauntered in application development. So far package contains following Classess

  • Repository

Version

0.1

Tech

Laravel 5

Installation

$ composer require ldynia/core

Configuration

Because at this moment I have problem with fixing ServiceProvider. I am enforced to load package according to psr-4 standard (nampsaceing). File composer.json

"autoload": {
    "psr-4": {
        "Ldynia\\Core\\": "vendor/ldynia/core/src"
    }
}

Add Service provider to providers array in config/app.php

// laravel 5.0
'Ldynia\Core\CoreServiceProvider'

// laravel 5.1
Ldynia\Core\CoreServiceProvider::class