Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
GhazanfarMir committed Dec 19, 2017
1 parent d5108ef commit a39b2f6
Show file tree
Hide file tree
Showing 9 changed files with 1,945 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@ Homestead.yaml
Homestead.json

# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
<<<<<<< d5108ef74d4eeeb235a223c30fa7045e0f1c8304
.rocketeer/
=======
.rocketeer/
>>>>>>> initial commit
40 changes: 40 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"name": "ghazanfarmir/laravel-lever-api",
"description": "Laravel Package to retrieve jobs from Lever for specified employer",
"type": "Package",
"require": {
"guzzlehttp/guzzle": "^6.3",
"php": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.4"
},
"autoload": {
"psr-4": {
"GhazanfarMir\\Lever\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GhazanfarMir\\Lever\\Api\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Ghazanfar Mir",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"GhazanfarMir\\Lever\\Api\\LeverApiServiceProvider"
],
"aliases": {
"LeverApi": "GhazanfarMir\\Lever\\Api\\Facades\\LeverApi"
}
}
}
}
Loading

0 comments on commit a39b2f6

Please sign in to comment.