Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neofox/objective-php-debug-bar
Debug bar for objective-php
https://github.com/neofox/objective-php-debug-bar
Last synced: 7 days ago
JSON representation
Debug bar for objective-php
- Host: GitHub
- URL: https://github.com/neofox/objective-php-debug-bar
- Owner: Neofox
- License: gpl-3.0
- Created: 2016-11-10T16:19:14.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-23T14:07:38.000Z (almost 8 years ago)
- Last Synced: 2024-11-21T09:52:11.847Z (2 months ago)
- Language: PHP
- Size: 70.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Objective PHP / DebugBar Package [![Build Status](https://secure.travis-ci.org/Neofox/objective-php-debug-bar.png?branch=master)](http://travis-ci.org/Neofox/objective-php-debug-bar)
## Project introduction
This package allow to add a php debugbar in Objective PHP
## Requirement
For the moment this package will require two steps in your application:
- Route
- RenderingSteps names will be configurable in a futur releases.
## Installation
### Manual
You can clone our Github repository by running:
```
git clone http://github.com/Neofox/objective-php-debug-bar
```If you're to proceed this way, you probably don't need more explanation about how to use the library :)
### Composer
The easiest way to install the library and get ready to play with it is by using Composer. Run the following command in an empty folder you just created for Primitives:
```
composer require --dev neofox/objective-php-debug-bar:dev-master
```
### Usage
Now that you get the package, you need to plug it in your application (Application.php):
```
$this->getStep('bootstrap')->plug(DebugBarPackage::class)
```
And you're done!## How to test the work in progress?
### Run unit tests
First of all, please always run the unit tests suite. Our tests are written using PHPUnit, and can be run as follow:
```
composer test
```### Configure the package
To be continued!