{"id":15699245,"url":"https://github.com/manchenkoff/breeze-api","last_synced_at":"2025-05-08T20:58:16.652Z","repository":{"id":237481975,"uuid":"794516254","full_name":"manchenkoff/breeze-api","owner":"manchenkoff","description":"Laravel Breeze API template application based on Sail","archived":false,"fork":false,"pushed_at":"2025-04-06T20:36:32.000Z","size":248,"stargazers_count":19,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-08T20:58:08.850Z","etag":null,"topics":["api","authentication","breeze","docker","laravel","sail","sanctum"],"latest_commit_sha":null,"homepage":"","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/manchenkoff.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"zenodo":null},"funding":{"github":"manchenkoff","thanks_dev":"manchenkoff","buy_me_a_coffee":"manchenkoff"}},"created_at":"2024-05-01T11:04:07.000Z","updated_at":"2025-04-15T06:07:22.000Z","dependencies_parsed_at":"2024-06-01T17:26:24.220Z","dependency_job_id":"f1bf2aaf-870e-4b69-a4f4-714a59e8ec17","html_url":"https://github.com/manchenkoff/breeze-api","commit_stats":{"total_commits":17,"total_committers":1,"mean_commits":17.0,"dds":0.0,"last_synced_commit":"41c0052940d6858bca1960b9766239821d4ca5b4"},"previous_names":["manchenkoff/breeze-api"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manchenkoff%2Fbreeze-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manchenkoff%2Fbreeze-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manchenkoff%2Fbreeze-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manchenkoff%2Fbreeze-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manchenkoff","download_url":"https://codeload.github.com/manchenkoff/breeze-api/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253149569,"owners_count":21861720,"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","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","authentication","breeze","docker","laravel","sail","sanctum"],"created_at":"2024-10-03T19:39:11.921Z","updated_at":"2025-05-08T20:58:16.613Z","avatar_url":"https://github.com/manchenkoff.png","language":"PHP","funding_links":["https://github.com/sponsors/manchenkoff","https://thanks.dev/manchenkoff","https://buymeacoffee.com/manchenkoff"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://laravel.com\" target=\"_blank\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg\" width=\"400\" alt=\"Laravel Logo\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n# Laravel Breeze API template\n\nThis repository is a template for Laravel projects based on Sail environment to integrate with the Sanctum authentication.\n\nYou can use this project to integrate with one of these frontend applications:\n\n-   [Breeze Next](https://github.com/laravel/breeze-next/) (React/Next)\n-   [Breeze Nuxt](https://github.com/manchenkoff/breeze-nuxt) (Vue/Nuxt)\n\n## Prerequisites\n\nTo work with this project you will also need to install the following software:\n\n-   [Git](https://git-scm.com/)\n-   [Docker](https://docker.com/)\n-   [Justfile](https://just.systems/)\n\n## Features\n\n-   Laravel 12\n-   Breeze API with Sanctum\n-   Laravel Pint code formatter\n-   Larastan static analysis rules\n-   IDE helper for Laravel (Stubs generation)\n\n## Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/manchenkoff/breeze-api\n```\n\n2. Build the project and install dependencies:\n\n```bash\njust build\n```\n\n3. Start the project:\n\n```bash\njust start\n```\n\nOnce the project is started, you can access it at [http://localhost](http://localhost).\n\n## Development\n\nTo get more details about available commands in `justfile`, run the following command:\n\n```bash\njust help\n```\n\nTo auto-format your code use `just fmt` command and also `just lint` to check the code quality by running Larastan checks.\n\n## Production\n\n**Environment**\n\nTo make sure that Laravel Sanctum will work on your production instance, make sure that you defined properly the following environment variables:\n\n```dotenv\nAPP_KEY=base64:your_key_here    # Generate a new key using `php artisan key:generate --show`\nFRONTEND_URL=https://domain.com # Your frontend Nuxt application URL\nSESSION_DOMAIN=.domain.com      # Your domain should start with a dot to support all subdomains like www.* or frontend.*\n```\n\n_💡 Keep in mind, that `SESSION_DOMAIN` is not applicable for `localhost` and should not be used during development with the value other than `null`._\n\n**Multiple apps**\n\nIf you have multiple frontend applications (e.g. public and admin apps), you can define the `SANCTUM_STATEFUL_DOMAINS` environment variable to allow multiple domains to access the same session.\n\n```dotenv\nSANCTUM_STATEFUL_DOMAINS=domain.com,backoffice.domain.com,admin.domain.com\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanchenkoff%2Fbreeze-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanchenkoff%2Fbreeze-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanchenkoff%2Fbreeze-api/lists"}