-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
47 lines (47 loc) · 1.12 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "ticketevolution/ticketevolution-php",
"description": "A PHP 7.1+ library for the Ticket Evolution API.",
"type": "library",
"keywords": [
"library",
"Ticket Evolution",
"ticket",
"guzzle",
"guzzlehttp",
"guzzle-services",
"laravel"
],
"homepage": "https://github.com/ticketevolution/ticketevolution-php",
"license": "BSD-3-Clause",
"authors": [
{
"name": "J Cobb",
"homepage": "https://github.com/jwcobb",
"role": "Developer"
}
],
"require": {
"php": "^7.1.3 || ^8.0",
"symfony/config": "^4.2 || ^5.0",
"guzzlehttp/guzzle-services": "^1.1"
},
"suggest": {
"rtheunissen/guzzle-log-middleware": "Guzzle 6 middleware used to log requests and responses",
"monolog/monolog": "Sends your logs to files, sockets, inboxes, databases and various web services"
},
"autoload": {
"psr-4": {
"TicketEvolution\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"TicketEvolution\\Laravel\\TEvoServiceProvider"
],
"aliases": {
"TEvo": "TicketEvolution\\Laravel\\TEvoFacade"
}
}
}
}