Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in / Register
  • PHP Challenge PHP Challenge
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
  • Deployments
    • Deployments
    • Releases
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • Jobsity
  • PHP ChallengePHP Challenge
  • Wiki
  • PHP Challenge Instructions

PHP Challenge Instructions · Changes

Page history
Update PHP Challenge Instructions authored Sep 14, 2022 by Jobsity Admin's avatar Jobsity Admin
Show whitespace changes
Inline Side-by-side
Showing with 3 additions and 1 deletion
+3 -1
  • PHP-Challenge-Instructions.md PHP-Challenge-Instructions.md +3 -1
  • No files found.
PHP-Challenge-Instructions.md
View page @ b3b5a414
...@@ -8,7 +8,9 @@ This Challenge is designed to test your abilities building backend web projects ...@@ -8,7 +8,9 @@ This Challenge is designed to test your abilities building backend web projects
## Assignment ## Assignment
The objective of this challenge is to create a REST API application that the user can use to track the value of stocks in the stock market. The base for your application as presented here uses a simple implementation of [Slim Framework](https://www.slimframework.com/docs/v3/) The objective of this challenge is to create a REST API application that the user can use to track the value of stocks in the stock market. The base for your application as presented here uses a simple implementation of [Slim Framework](https://www.slimframework.com/docs/v3/)
You may use the [Stooq](https://stooq.com/q/l/?s={stock_code}&f=sd2t2ohlcvn&h&e=csv) API service to get latest stock market values. You may use the [Stooq](https://stooq.com/q) API service to get latest stock market values. Check the format used below. You can replace the `{stock_code}` placeholder with the corresponding stock code:
`https://stooq.com/q/l/?s={stock_code}&f=sd2t2ohlcvn&h&e=csv`
## Mandatory Features ## Mandatory Features
- The application must use a SQL database to store users and record logs of past requests. Check out the Slim documentation if you would like to use [Eloquent](https://www.slimframework.com/docs/v3/cookbook/database-eloquent.html), [Doctrine](https://www.slimframework.com/docs/v3/cookbook/database-doctrine.html) or [Atlas](https://www.slimframework.com/docs/v3/cookbook/database-atlas.html). - The application must use a SQL database to store users and record logs of past requests. Check out the Slim documentation if you would like to use [Eloquent](https://www.slimframework.com/docs/v3/cookbook/database-eloquent.html), [Doctrine](https://www.slimframework.com/docs/v3/cookbook/database-doctrine.html) or [Atlas](https://www.slimframework.com/docs/v3/cookbook/database-atlas.html).
......
Clone repository
  • PHP Challenge Instructions
  • Usage of the Mailer service (SwiftMailer)
  • Using RabbitMQ with Slim Framework
  • Home