An open API service indexing awesome lists of open source software.

https://github.com/bubnov-mikhail/xpropertyticketbundle

Fork of the TicketBundle v2 (https://github.com/hackzilla/TicketBundle)
https://github.com/bubnov-mikhail/xpropertyticketbundle

Last synced: 3 months ago
JSON representation

Fork of the TicketBundle v2 (https://github.com/hackzilla/TicketBundle)

Awesome Lists containing this project

README

        

Ticketing Bundle v1
===================

Latest version. See 0.9 for [previous version](https://github.com/hackzilla/TicketBundle/tree/0.9.x).

Simple multilingual ticketing bundle to add to any project.
Languages: English, French, Russian, German and Spanish.

[![Build Status](https://travis-ci.org/hackzilla/TicketBundle.png?branch=master)](https://travis-ci.org/hackzilla/TicketBundle)
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/091d37a9-7862-4365-952c-814ce95c4d6c/mini.png)](https://insight.sensiolabs.com/projects/091d37a9-7862-4365-952c-814ce95c4d6c)

Requirements
------------

* FOSUserBundle
* Knp Paginator
* Bootstrap v3 (optional) see: http://symfony.com/blog/new-in-symfony-2-6-bootstrap-form-theme

Demo
----

See [Ticket Bundle Demo App](https://github.com/hackzilla/TicketBundleDemoApp) for an example installation. This can also be used for confirming bugs.

Installation
------------

Add HackzillaTicketBundle in your composer.json:

```json
{
"require": {
"hackzilla/ticket-bundle": "~1.0",
"friendsofsymfony/user-bundle": "~2.0@dev",
}
}
```

Follow [FOSUserBundle guide](https://github.com/FriendsOfSymfony/FOSUserBundle)

Install Composer

```
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
```

Now tell composer to download the library by running the command:

``` bash
$ composer update hackzilla/ticket-bundle
```

Composer will install the bundle into your project's `vendor/hackzilla` directory.

### Step 2: Enable the bundle

Enable the bundle in the kernel:

``` php