-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
42 lines (37 loc) · 951 Bytes
/
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
{
"name": "ixudra/toggl",
"description": "Custom PHP library to connect with the Toggl API - developed by Ixudra",
"version": "2.1.1",
"keywords": ["Ixudra", "Laravel", "Toggl", "API"],
"homepage": "https://ixudra.be",
"license": "MIT",
"authors": [
{
"name": "Jan Oris",
"email": "jan.oris@ixudra.be"
}
],
"require": {
"php": ">=5.6.0",
"nesbot/carbon": ">=1.19",
"ixudra/curl": "~6.0"
},
"suggest": {
"illuminate/support": "Support for laravel using the TogglServiceProvider"
},
"autoload": {
"psr-4": {
"Ixudra\\Toggl\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Ixudra\\Toggl\\TogglServiceProvider"
],
"aliases": {
"IxdTogglPckg": "Ixudra\\Toggl\\Facades\\Toggl"
}
}
}
}