{"id":19380244,"url":"https://github.com/luigiminardi/gamingchatphp","last_synced_at":"2026-04-20T13:31:57.582Z","repository":{"id":37591372,"uuid":"480013833","full_name":"luigiMinardi/GamingChatPHP","owner":"luigiMinardi","description":"A LFG (Looking For Group) platform REST API made with laravel.","archived":false,"fork":false,"pushed_at":"2023-04-19T19:26:46.000Z","size":304,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-22T15:18:23.535Z","etag":null,"topics":["api-rest","laravel","mysql","php","rest-api"],"latest_commit_sha":null,"homepage":"https://lug-php.herokuapp.com/api","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/luigiMinardi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-10T12:40:59.000Z","updated_at":"2022-04-11T21:07:39.000Z","dependencies_parsed_at":"2025-02-24T16:57:18.254Z","dependency_job_id":null,"html_url":"https://github.com/luigiMinardi/GamingChatPHP","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/luigiMinardi/GamingChatPHP","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luigiMinardi%2FGamingChatPHP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luigiMinardi%2FGamingChatPHP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luigiMinardi%2FGamingChatPHP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luigiMinardi%2FGamingChatPHP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/luigiMinardi","download_url":"https://codeload.github.com/luigiMinardi/GamingChatPHP/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luigiMinardi%2FGamingChatPHP/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32048936,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-rest","laravel","mysql","php","rest-api"],"created_at":"2024-11-10T09:13:22.792Z","updated_at":"2026-04-20T13:31:57.559Z","avatar_url":"https://github.com/luigiMinardi.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gaming Chat with PHP\n\n\u003cdiv align=\"center\"\u003e\n\n![License](https://img.shields.io/github/license/luigiMinardi/movieClubBackend?style=for-the-badge)\n![Laravel](https://img.shields.io/badge/Laravel-FF2D20?style=for-the-badge\u0026logo=laravel\u0026logoColor=white)\n![PHP](https://img.shields.io/badge/PHP-777BB4?style=for-the-badge\u0026logo=php\u0026logoColor=white)\n![Mysql](https://img.shields.io/badge/MySQL-005C84?style=for-the-badge\u0026logo=mysql\u0026logoColor=white)\n![JsonWebToken](https://img.shields.io/badge/JWT-000000?style=for-the-badge\u0026logo=JSON%20web%20tokens\u0026logoColor=white)\n![Composer](https://img.shields.io/badge/Composer-885630?style=for-the-badge\u0026logo=Composer\u0026logoColor=white)\n\u003c/div\u003e\n\nThis is a REST API of a gaming LFG platform, using mysql as data base. Having tables for `games`, `members` and `messages`, `parties`, `users`.\n\n\u003cdiv align=\"center\"\u003e\n\n[![Documentation](https://img.shields.io/badge/go%20to-documentation-informational?style=for-the-badge)](https://github.com/luigiMinardi/GamingChatPHP/wiki)\n\u003c/div\u003e\n\n## Installing\n\n* First clone the repository:\n\n    ```bash\n    git clone https://github.com/luigiMinardi/GamingChatPHP\n    ```\n\n    Enter in the cloned repo `cd GamingChatPHP` or open in your IDE, for example `code GamingChatPHP` if you're using VSC.\n\n* Install all the dependencies:\n\n    ```bash\n    composer install\n    ```\n\n* Create the data base:\n\n    \u003cu\u003e**You need to have mysql installed and running on your computer for this to work**\u003c/u\u003e. You need to create the db directly on mysql (or your GUI manager for SQL dbs).\n\n* Make the migrations:\n\n    ```bash\n    php artisan migrate\n    ```\n\n* Run the server:\n\n    ```bash\n    php artisan serve\n    ```\n\n### Configuring .env\nIn your root repository duplicate the `.env.example` file and rename it to be just `.env`, there you need to eddit these variables with your data:\n```m\nAPP_KEY=\n\nDB_DATABASE=laravel\nDB_USERNAME=root\nDB_PASSWORD=\n```\n\nRun `php artisan jwt:secret` to create the `JWT_SECRET` variable at your `.env`.\n\nNow you are ready to use it.\n\n# Using the API\n\n## Data Base ER Diagram\n\n![ER Draw](./.github/assets/img/laravelBackend.png)\n\n### Expected Behaviour\n\n`created_at`, `update_at`, `id`, are obligatory and auto-generated.\n\nthe `id` is the **Primary Key** of the tables.\n\nUSER `email` is unique.\n\nGAME `title` is unique.\n\n`user_id`, `game_id` and `party_id` are the USER, GAME and the PARTY **Foreign Key** respectively.\n\nYou may see references for the **Primary Key** as `pk` and for the **foreign key** as `fk`.\n\n## Endpoints\n\nTo see the endpoints and how they works, check our [documentation](https://github.com/luigiMinardi/GamingChatPHP/wiki).\n\n\u003cdiv align=\"center\"\u003e\n\n[![Documentation](https://img.shields.io/badge/go%20to-documentation-informational?style=for-the-badge)](https://github.com/luigiMinardi/GamingChatPHP/wiki)\n\u003c/div\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluigiminardi%2Fgamingchatphp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluigiminardi%2Fgamingchatphp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluigiminardi%2Fgamingchatphp/lists"}