Download the PHP package onwwward/laravel-bugherd without Composer

On this page you can find all versions of the php package onwwward/laravel-bugherd. 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 laravel-bugherd

Laravel Bugherd

Build Status StyleCI [license]() [Packagist]()

This is a Laravel 5 wrapper for the PHP Bugherd Api package.

What is Bugherd?

BugHerd is a simple point and click bug tracker, that was founded in 2011 by Alan Downie and Matt Milosavljevic.

https://bugherd.com/

https://www.bugherd.com/api_v2

Basic Installation

Laravel

Add the service provider to the providers array in :

You can optionally use the facade for shorter code. Add the facade to the alias array in :

Lumen

Find the section in where you should register the service providers and add the following:

You can optionally use the facade for shorter code. However you will have to uncomment the following line in file:

You will also have to add the following to the same file:

Configuration

Laravel

You'll need to provide your apikey which you can find under your profile settings in Bugherd. In Laravel you should be able to publish the configuration file with an artisan command, but you can create the file manually as well.

Where's the file? Laravel 5 will publish the config file to /config/bugherd.php.

Lumen

There is no command for publishing package files in Lumen so you'll have to create the config file manually. Create a config directory in the application's root in case you don't have it. Then, either copy the bugherd.php file from /vendor/onwwward/laravel-bugherd/src/config/ or create the php file returning a simple array with the correct 'apikey' .

Code Example

There are several ways to resolve something out of the container.

with Facade

Include the facade at the top:

Then you can use it anywhere:

Type Hinting

Make method (Laravel)

app Helper (Lumen)

Accessing the Bugherd Resources

Todo

License

This plugin is released under the permissive MIT license. Your contributions are always welcome.


All versions of laravel-bugherd with dependencies

PHP Build Version
Package Version
Requires beleneglorion/php-bugherd-api Version ^1.0
illuminate/support Version ^5.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 onwwward/laravel-bugherd contains the following files

Loading the files please wait ....