Skip to content

Commit e12c5ca

Browse files
committed
Updated some bits
1 parent ff3a914 commit e12c5ca

File tree

4 files changed

+6
-76
lines changed

4 files changed

+6
-76
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
All notable changes to `laravel-ticket-tailor-wrapper` will be documented in this file.
44

5-
## 1.0.0 - 202X-XX-XX
5+
## 1.0.0 - 2020-12-19
66

77
- initial release

README.md

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
# Laravel wrapper for ticket tailor.
22

3-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/webdevhayes/laravel-ticket-tailor-wrapper.svg?style=flat-square)](https://packagist.org/packages/webdevhayes/laravel-ticket-tailor-wrapper)
4-
[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/webdevhayes/laravel-ticket-tailor-wrapper/run-tests?label=tests)](https://github.com/webdevhayes/laravel-ticket-tailor-wrapper/actions?query=workflow%3ATests+branch%3Amaster)
5-
[![Total Downloads](https://img.shields.io/packagist/dt/webdevhayes/laravel-ticket-tailor-wrapper.svg?style=flat-square)](https://packagist.org/packages/webdevhayes/laravel-ticket-tailor-wrapper)
6-
7-
8-
This is a laravel wrapper for [Ticket Tailor](https://tickettailor.com/). This wrapper allows you to access your Ticket Tailor data through their Apis.
3+
This is a laravel wrapper for [Ticket Tailor](https://tickettailor.com/). This wrapper allows you to access your Ticket Tailor data through their [Apis](https://developers.tickettailor.com/#ticket-tailor-api).
94

105
## Installation
116

@@ -15,8 +10,6 @@ You can install the package via composer:
1510
composer require webdevhayes/laravel-ticket-tailor-wrapper
1611
```
1712

18-
You can publish and run the migrations with:
19-
2013
You can publish the config file with:
2114
```bash
2215
php artisan vendor:publish --provider="Webdevhayes\LaravelTicketTailorWrapper\LaravelTicketTailorWrapperServiceProvider" --tag="config"
@@ -47,6 +40,7 @@ return [
4740
| api is called.
4841
|
4942
*/
43+
5044
"api_key" => env('TT_API_KEY', ''),
5145

5246
];
@@ -55,28 +49,17 @@ return [
5549
## Usage
5650

5751
```php
58-
$ticketTailor = new Webdevhayes\LaravelTicketTailorWrapper();
52+
$ticketTailor = new Webdevhayes\LaravelTicketTailorWrapper( config('ticket-tailor-wrapper.api_key'), config('ticket-tailor-wrapper.api_key') );
5953
dd($ticketTailor->auth()->getAllEvents());
6054
```
6155

62-
## Testing
63-
64-
```bash
65-
composer test
66-
```
56+
## TODO/POSSIBLE FEATURES
57+
* Add tests
6758

6859
## Changelog
6960

7061
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
7162

72-
## Contributing
73-
74-
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
75-
76-
## Security Vulnerabilities
77-
78-
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
79-
8063
## Credits
8164

8265
- [James Hayes](https://github.com/WebDevHayes)

tests/ExampleTest.php

Lines changed: 0 additions & 12 deletions
This file was deleted.

tests/TestCase.php

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)