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)
- Host: GitHub
- URL: https://github.com/bubnov-mikhail/xpropertyticketbundle
- Owner: bubnov-mikhail
- License: mit
- Created: 2016-10-07T12:19:04.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-07T12:21:15.000Z (over 8 years ago)
- Last Synced: 2025-01-13T05:29:24.351Z (5 months ago)
- Language: PHP
- Size: 210 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.[](https://travis-ci.org/hackzilla/TicketBundle)
[](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-themeDemo
----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