Download the PHP package sageit/phalcon-exception-handler without Composer

On this page you can find all versions of the php package sageit/phalcon-exception-handler. 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 phalcon-exception-handler

Phalcon Exception Handler

[![Latest Stable Version](http://poser.pugx.org/sageit/phalcon-exception-handler/v?style=plastic)](https://packagist.org/packages/sageit/phalcon-exception-handler) [![Total Downloads](http://poser.pugx.org/sageit/phalcon-exception-handler/downloads?style=plastic)](https://packagist.org/packages/sageit/phalcon-exception-handler) [![License](http://poser.pugx.org/sageit/phalcon-exception-handler/license?style=plastic)](https://packagist.org/packages/sageit/phalcon-exception-handler) [![PHP Version Require](http://poser.pugx.org/sageit/phalcon-exception-handler/require/php?style=plastic)](https://packagist.org/packages/sageit/phalcon-exception-handler) [![Phalcon Version](https://img.shields.io/packagist/dependency-v/sageit/phalcon-exception-handler/ext-phalcon?label=Phalcon&logo=Phalcon%20Version&style=plastic)](https://packagist.org/packages/sageit/phalcon-exception-handler)

Adds Preset throwable exceptions along with a built in handler with included logging.

**[Explore the docs »](https://github.com/SageITSolutions/phalcon-exception-handler)** **[Report Bug](https://github.com/SageITSolutions/phalcon-exception-handler/issues)** · **[Request Feature](https://github.com/SageITSolutions/phalcon-exception-handler/issues)**

Table of Contents


About The Project

Built With


Installation

Git:

Composer:


Usage

This project consists of an included Exception Handler which is supported by both Full suite Phalcon Applications and Micro Apps. The intent is to integrate logging and presentation to generic exceptions.

This should not be used in lieu of Phalcon\Support\Debug functionality. The exception-handler is intended for production handling of known events

Full Application

_This action would instantiation a new Exception Handler which is set globally (true) as the exceptionhandler. 'Error' Can be replaced with any CSS Class used by a flash service for displaying exceptions.

if Logger is present, and log level is greater than or equal to the LOG_LEVEL defined in the exception, an event will be logged according to the level specified. This is useful for auditing failed authentication attempts.

if Flash is present, a flash alert will be displayed when an Exception is thrown. Exceptions not included in this lib will be automagically converted to a generic "Unknown Exception".

if Flash is not present, a simple echo with Exception encountered: {error message} will return.

Micro Application

Add the following within the Micro class

The same logging action of the Full Application takes place if a Logger Service is present in dependancy injection

Custom Exceptions

You are not limited to the provided Exceptions. Any custom Exception can be created by extending \Phalcon\Exception\Exception

_LOG_LEVEL Corresponds to the levels utilized by \Phalcon\Logger\Logger_

Log Levels

  1. Emergency
  2. Critical
  3. Alert
  4. Error
  5. Warning
  6. Notice
  7. Info
  8. Debug
  9. Custom


Additional Methods

setDisplay

the CSS displayClass used by flash can be altered before an exception is thrown so the default exception handler can apply the correct styling

display

if global error catching is not in place, and you need to utilize the flash display service with a custom class, this can bbe called directly

The exception provided can be any Throwable \Exception

log

if there is a need to log an exception without displaying it, this can be called directly. This will do nothing if no Logger Service is present

getJSON

_as demonstrated in the MicroApp the method getJSON returns a named array with the elements of the exception.

result

convertException

this static method is called within several other methds but can be used externally to transpose a generic exception into the \Phalcon\Exception\Exception utilized by this handler

there is no returned value, as this action is completed as a variable reference


Roadmap

See the open issues for a list of proposed features (and known issues).


Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request


License

Distributed under the MIT License. See LICENSE for more information.


Contact

Sage IT Solutions - Email

Project Link: https://github.com/SageITSolutions/phalcon-exception-handler


All versions of phalcon-exception-handler with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
ext-phalcon Version 4.* || 5.*
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 sageit/phalcon-exception-handler contains the following files

Loading the files please wait ....