Skip to content

Instantly share code, notes, and snippets.

@DragonBe
Created April 22, 2015 15:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DragonBe/6fe43f3790f9cf5838d2 to your computer and use it in GitHub Desktop.
Save DragonBe/6fe43f3790f9cf5838d2 to your computer and use it in GitHub Desktop.
Assignment: Microblog

Microblog

The first assignment is to create a microblog application.

You can use Silex if you want, but it's not a requirement.

Objectives

  • Display the latest 5 articles on the homepage
  • Create an authentication section where someone can
    • login (email + password)
    • register (name + email + password)
    • logout
  • Create a page to manage articles (authenticated)
    • create/edit new content (just text for now)
    • list created content
    • delete an article

Bonus

  • Adhere to the PSR-2 coding standards
  • Write tests for the authentication and article components
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment