{"id":15650908,"url":"https://github.com/wendelladriel/laravel-api-skeleton","last_synced_at":"2025-09-01T08:05:45.292Z","repository":{"id":90777863,"uuid":"71949119","full_name":"WendellAdriel/laravel-api-skeleton","owner":"WendellAdriel","description":"Awesome Laravel boilerplate to create APIs using many cool features and technologies","archived":false,"fork":false,"pushed_at":"2016-11-01T15:29:40.000Z","size":57,"stargazers_count":34,"open_issues_count":0,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-29T18:14:09.826Z","etag":null,"topics":["api","architecture","boilerplate","docker","laravel","php","skeleton"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WendellAdriel.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2016-10-26T00:00:31.000Z","updated_at":"2023-02-22T06:01:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"e75d53c3-6acb-4613-b5f6-2ae570efd318","html_url":"https://github.com/WendellAdriel/laravel-api-skeleton","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/WendellAdriel/laravel-api-skeleton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WendellAdriel%2Flaravel-api-skeleton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WendellAdriel%2Flaravel-api-skeleton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WendellAdriel%2Flaravel-api-skeleton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WendellAdriel%2Flaravel-api-skeleton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WendellAdriel","download_url":"https://codeload.github.com/WendellAdriel/laravel-api-skeleton/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WendellAdriel%2Flaravel-api-skeleton/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273093151,"owners_count":25044436,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-01T02:00:09.058Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","architecture","boilerplate","docker","laravel","php","skeleton"],"created_at":"2024-10-03T12:36:16.729Z","updated_at":"2025-09-01T08:05:45.269Z","avatar_url":"https://github.com/WendellAdriel.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel API Skeleton\n\n\u003e Awesome Laravel boilerplate to create APIs using many cool features and technologies\n\nI like to change the default architecture of Laravel when I work wit it, and some weeks ago I saw\nsome videos in [CodeCasts](https://codecasts.com.br/) of a serie about **Advanced Laravel** using version 5.3 \nand I loved the architecture that they built. So this project is inspired by [codecasts/laravel](https://github.com/codecasts/laravel) \nand all the credits must go to [Diego Hernandes](https://github.com/hernandev), [Vinicius Reis](https://github.com/vinicius73) and \n[Fábio Vedovelli](https://github.com/vedovelli). I only made some personal changes to their architecture and I'm sharing it because I think \nthat this repo can help when you need to start a new project.\n\n## Tecnhologies\n\n- [Ambientum](https://github.com/codecasts/ambientum)\n  - Docker\n  - PHP 7\n  - Caddy\n  - Redis\n  - MySQL 5.7\n- JWT Authentication\n  - Uses [tymondesigns/jwt-auth](https://github.com/tymondesigns/jwt-auth)\n  - Authentication with e-mail and password ready to use\n  - Method to get authenticated user\n- [Migrator](https://github.com/artesaos/migrator)\n- Repositories using [prettus/l5-repository](https://github.com/andersao/l5-repository)\n- Validator using [prettus/laravel-validator](https://github.com/andersao/laravel-validator)\n- Presenters/Transformers using [Fractal](http://fractal.thephpleague.com/)\n\n## How to use it\n\n#### Checking your envirorment\n\nTo use this repository make sure you have **Docker** and **Docker Compose** installed. If you don't, you can \nuse the links below to help you install them:  \n  \n- [Install Docker](https://www.docker.com/products/overview)\n- [Install Docker Composer](https://docs.docker.com/compose/install/)\n\n#### Using the boilerplate\n\n- Clone this repo\n- Install the dependencies\n```shell\ncomposer install\n```\n- You can check the default routes with:\n```shell\nphp artisan route:list\n```\n- Rename the file `.env.example` to `.env`\n- You can customize the variables in `.env` and `docker-compose.yml` if you want to.\n- Run the migrations and seeders:\n```shell\ndocker-compose run api bash\nphp artisan migrator --seed\nexit\n```\n- Run the application:\n```shell\ndocker-compose up\n```\n- Now you can use [Postman](https://www.getpostman.com/) or other app you like to test your API.\n\n**NOW YOU CAN START DEVELOPING YOUR NEW AWESOME PROJECT WITH THIS BOILERPLATE!!!**\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/WendellAdriel/laravel-api-skeleton/. \nThis project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to \nthe [Contributor Covenant](http://contributor-covenant.org) code of conduct.\n\n## License\n\nThe project is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwendelladriel%2Flaravel-api-skeleton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwendelladriel%2Flaravel-api-skeleton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwendelladriel%2Flaravel-api-skeleton/lists"}