Download the PHP package mrjuliuss/syntara-logviewer without Composer

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

Syntara Logviewer (Laravel 4 package)


A Logviewer for Syntara package, using Mikemand logviewer package

Features

Requirements

Dependencies

Installation

In the require key of composer.json file add the following line

If your application uses Laravel 4.0 :

/!\ This branch is no longer maintained

If your application uses Laravel 4.1 :

Run the Composer update command

In app/config/app.php :

Add and to the end of the $providers array

'providers' => array(
    'Illuminate\Foundation\Providers\ArtisanServiceProvider',
    'Illuminate\Auth\AuthServiceProvider',
    ...
    'Kmd\Logviewer\LogviewerServiceProvider',
    'Mrjuliuss\SyntaraLogviewer\SyntaraLogviewerServiceProvider'
),

Launch install commands :

You can see logs here :

http://your-url/dashboard/logviewer

Custom Development

Add logviewer to the navbar

@include('syntara-logviewer::navigation')

add to app/filters.php (or app/routes.php)

View::composer('syntara::layouts.dashboard.master', function($view)
{
    $view->nest('navPages', 'syntara-logviewer::navigation');
});

A note about Laravel 4.1 (mikemand recommandation)

As of right now (2013-11-29), fresh Laravel 4.1 applications log things differently than they used to. While this doesn't technically break LogViewer, LogViewer also doesn't know how to handle these changes. Whether these changes are permanent or not is unclear, but here's a quick fix:

In your app/start/global.php, line 34 change:

to:

This only applies to new installations of Laravel 4.1. If you've upgraded an existing 4.0 application (and did not make changes to the way logs are created and stored), everything should still work.


Others :

Please see Mikemand logviewer doc.

License

Syntara logviewer is released under the MIT License. See the licence file for details.


All versions of syntara-logviewer with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
illuminate/support Version 4.1.*
kmd/logviewer Version 1.1.*
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 mrjuliuss/syntara-logviewer contains the following files

Loading the files please wait ....