All Projects → DanielHe4rt → try-laravel-solid

DanielHe4rt / try-laravel-solid

Licence: other
Project to improve your SOLID skills on Laravel Ecossystem

Programming Languages

PHP
23972 projects - #3 most used programming language
Blade
752 projects
shell
77523 projects

Try Laravel SOLID

About the Project

The idea is for you get an application built without worrying about the SOLID principles and apply them. The theory is really nice, but you will not really understand it until you code it.

The SOLID Principles exist to make code more readable and maintainable. All the content you need to make it happen can be found here.

Expectations

Fork the project and try to run it on your machine and your goal is to focus on the tasks below:

  • Apply the Open Closed Principle on Services (Github and Twitch) without breaking them.
  • Apply Single Responsibility Principle mostly on Controllers and Repositories (that do not exist yet, so you have to create them).
  • Apply Liskov Substitution Principle on the methods that return specific data and make it a pattern.
  • Apply Interface Segregation Principle on Services that don't use all interface methods.
  • Find a place to implement Dependency Inversion and then make all the major modifications in the code.

If you want to worry about Clean Code here are some tips:

  • Know the difference between single and double quotes.
  • Use "Early Return" on methods.
  • Look to type every function/method in the entire project.
  • Create a new config file to store credentials and NEVER use env() function directly in the code
  • Use this new config file to generate the Sign-In buttons and leave an active flag for each provider as a Feature Flip.

When you're done, open a pull request on your fork and tag me for a code review.

Running the Project

  1. Clone the repository using this command:
$ git clone https://github.com/DanielHe4rt/try-laravel-solid.git
  1. Access the project folder on your terminal:
$ cd try-laravel-solid
  1. Run the command to install all dependencies with Composer.
$ composer install
  1. Copy the .env.example config to a new file called .env
$ cp .env.example .env
  1. Change the database environment variables on .env:
    • DB_DATABASE: Database that you created for the project.
    • DB_USERNAME: MySQL username.
    • DB_PASSWORD: MySQL password.
DB_DATABASE=dev_solid
DB_USERNAME=root
DB_PASSWORD=root
  1. Active the folder sync and let public the user avatars
$ php artisan storage:link
  1. Run the application
$ php artisan serve

Getting the Providers

For this application you will need two base providers, that will be Github and Twitch.

Create a new application on both providers and fill the callback urls same as the .env variables:

Github => "http://localhost:8000/auth/oauth/github"
Twitch => "http://localhost:8000/auth/oauth/twitch"

After that, replace the ID and Secret on envs providers:

GITHUB_OAUTH_ID="Iv1.your-github-app-id"
GITHUB_OAUTH_SECRET="your-github-secret"

TWITCH_OAUTH_ID="your-twitch-app-id"
TWITCH_OAUTH_SECRET="your-twitch-secret"

After the replacement you should be able to authenticate on the platform.

License

The Laravel framework is open-sourced software licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].