-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (39 loc) · 1.09 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": "jeffreyhyer/bamboohr-laravel",
"type": "library",
"description": "Laravel 5.x Service Provider and Facade for the jeffreyhyer/bamboohr package",
"keywords": ["laravel", "bamboohr", "api"],
"version": "1.0.8",
"require": {
"php": ">=7.0.0",
"illuminate/support": "5.*|^6.0|^7.0|^8.0",
"jeffreyhyer/bamboohr": "~1.0"
},
"license": "MIT",
"authors": [
{
"name": "Jeffrey Hyer",
"email": "jmhyer135@gmail.com"
}
],
"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"
}
}
}
}