Skip to content

eckenroed/myApi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Smartmove API PHP Package

Hello Jeff, I have made this just for you. I have set up the folder structure to match the namespaces. This is one I am proud of because there are no existing PHP packages to consume this API, so I had to create both the PHP package as well as a way for my Models to interract with the API.

  • Gateway.php - This is the main gateway file. It's very abstract to just handle the communication using Guzzle.
  • Landlord.php - This is for the endpoint /landlord. It extends the Gateway package and makes a method for each of the methods available on the endpoint.
  • Application.php - Similar to Landlord.php except for the /application end point.
  • Renter.php - Accessor for the /renter end point
  • SmartmoveProperty.php - Accessof for the /property end point

I then had to make a way for my models to translate data back to a way the API can use it. So I made a trait for each of the models to return the data in a way that the API can consume.

  • ApplicationHelper.php
  • ApplicantHelper.php
  • LandlordHelper.php
  • PropertyHelper.php

Finally, the credit report is very complicated so I have two files I use to decode the JSON of a credit report.

  • SmartmoveCodes.php - Contains objects that can translate the codes into usable english
  • CreditReport.php - The actual class that is loaded when the credit report is retreived from the model so as to be able to have a predictable API to pass to the view.

About

The API I created for SM

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages