forked from JeffreyHyer/bamboohr-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.07 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
{
"name": "hilmak01/bamboohr-laravel",
"type": "library",
"description": "Laravel 5.x Service Provider and Facade for the jeffreyhyer/bamboohr package",
"keywords": ["laravel", "bamboohr", "api"],
"version": "1.0.4",
"require": {
"php": ">=7.0.0",
"illuminate/support": ">=5.0",
"jeffreyhyer/bamboohr": "~1.0"
},
"license": "MIT",
"authors": [
{
"name": "Hilkiah Makemo",
"email": "[email protected]"
}
],
"homepage": "https://github.com/jeffreyhyer/bamboohr-laravel",
"support": {
"issues": "https://github.com/jeffreyhyer/bamboohr-laravel/issues",
"source": "https://github.com/jeffreyhyer/bamboohr-laravel"
},
"autoload": {
"psr-4": {
"JeffreyHyer\\BambooHR\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"JeffreyHyer\\BambooHR\\ServiceProvider"
],
"aliases": {
"BambooHR": "JeffreyHyer\\BambooHR\\Facade"
}
}
}
}