Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 679 Bytes

README.md

File metadata and controls

30 lines (18 loc) · 679 Bytes

Formstack Project

User MVC interview project.

Instructions

run vagrant up

run vagrant ssh

run cd /vagrant

run composer install

run ./app/database/phinx migrate

run ./app/database/phinx seed:run

Hit any user endpoint

  • GET /user/{userId} (get specific user)
  • GET /user (get all users)
  • POST /user/upload_avatar/{userId} (upload user avatar)
  • POST /user (create)
  • PUT /user/{userId} (update user)
  • DELETE /user/{userId} (delete user)

Note!

This project was influenced by Barebones PHP! It was stripped down even more to get to the bare necessities that this project required.