Skip to content

Commit

Permalink
cap api initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeBurke-RL committed Jan 29, 2018
1 parent 3fc3894 commit 6cb75c3
Show file tree
Hide file tree
Showing 7 changed files with 935 additions and 20 deletions.
22 changes: 2 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,2 @@
vendor/
node_modules/
npm-debug.log

# Laravel 4 specific
bootstrap/compiled.php
app/storage/

# Laravel 5 & Lumen specific
public/storage
public/hot
storage/*.key
.env.*.php
.env.php
.env
Homestead.yaml
Homestead.json

# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
.rocketeer/
/vendor/
/.idea/
23 changes: 23 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "mike-k-burke/cap-api",
"description": "API for retriving used car valuation data from the Experian Autocheck system",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mike Burke",
"email": "mkburke@hotmail.co.uk"
}
],
"autoload": {
"psr-4": {
"MikeKBurke\\CapApi\\": "src/"
}
},
"minimum-stability": "dev",
"require": {
"guzzlehttp/guzzle": "^6.3",
"bespoke-support/reg": "^0.1.0",
"nesbot/carbon": "^1.23@dev"
}
}
Loading

0 comments on commit 6cb75c3

Please sign in to comment.