kinsari-os / azticketing
A robust ticketing system for your Laravel application using Azure Board
Requires
This package is auto-updated.
Last update: 2025-09-18 16:17:05 UTC
README
Report bugs and more from your Laravel application to Azure DevOps Boards.
Motivation
This package was created to help developers integrate Azure Board into their Laravel applications in order to add ticketing support for their users. This package is designed to be simple and easy to use.
Installation
- You can install the package via repository:
On your composer.json
file, add the following repository:
"repositories": [ { "type": "vcs", "url": "https://github.com/antonio-pedro99/azticketing" } ]
Then, run the following command:
composer update
- Publish the configuration file:
php artisan vendor:publish --tag="azticketing-config"
- Publish the views:
php artisan vendor:publish --tag="azticketing-views"
- Publish the assets:
php artisan vendor:publish --tag="azticketing-assets"
Configuration
You can configure the package by editing the config/azticketing.php
file. It contains the following options:
"organization": // Your Azure DevOps organization. "project": // Your Azure DevOps project. "pat": //Personal Access Token for Azure DevOps. "webhook_secret": //Secret for validating incoming webhooks. Ignore for now "area_path": // Area path for the tickets. If not set, it will use the project name. "app:" //Configuration for the Laravel application. You can set the following options: "page_title": // Default page title. "enable_views": // Enable or disable the default views for manager tickets. "routes": // Configuration for the default routes. You can set the following options: "prefix": // The prefix for the routes.
Exemple of usage
Creating a Ticket
You can create a ticket using the createTicket
method:
use use AzTicketingManager; AzTicketingManager::createTicket( 'My first ticket', 'This is the description of my first ticket.', []);
The empty array at the end is for metadata or customs fields. You can pass tags, priority, and other fields.
Contributing
If you would like to contribute to this package, please feel free to submit a pull request.
License
The MIT License (MIT). Please see License File for more information.