{"id":36279909,"url":"https://github.com/paxha/laravel-asterisk","last_synced_at":"2026-01-11T09:02:47.570Z","repository":{"id":57036663,"uuid":"472313877","full_name":"paxha/laravel-asterisk","owner":"paxha","description":"Laravel Asterisk provides a Docker powered local development experience for Asterisk in Laravel that is compatible with macOS, Windows (WSL2), and Linux. Other than Docker, no software or libraries are required to be installed on your local computer before using Laravel Asterisk.","archived":false,"fork":false,"pushed_at":"2022-04-05T10:29:15.000Z","size":271,"stargazers_count":6,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-02T09:39:04.739Z","etag":null,"topics":["asterisk","asterisk-development","asterisk-laravel","laravel-asterisk"],"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/paxha.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-03-21T11:48:51.000Z","updated_at":"2025-06-24T18:20:00.000Z","dependencies_parsed_at":"2022-08-23T21:00:17.605Z","dependency_job_id":null,"html_url":"https://github.com/paxha/laravel-asterisk","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/paxha/laravel-asterisk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paxha%2Flaravel-asterisk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paxha%2Flaravel-asterisk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paxha%2Flaravel-asterisk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paxha%2Flaravel-asterisk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/paxha","download_url":"https://codeload.github.com/paxha/laravel-asterisk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paxha%2Flaravel-asterisk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28298875,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T08:21:30.231Z","status":"ssl_error","status_checked_at":"2026-01-11T08:21:26.882Z","response_time":60,"last_error":"SSL_read: 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":["asterisk","asterisk-development","asterisk-laravel","laravel-asterisk"],"created_at":"2026-01-11T09:02:47.071Z","updated_at":"2026-01-11T09:02:47.557Z","avatar_url":"https://github.com/paxha.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://packagist.org/packages/paxha/laravel-asterisk\"\u003e\n        \u003cimg src=\"https://img.shields.io/packagist/dt/paxha/laravel-asterisk\" alt=\"Total Downloads\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/paxha/laravel-asterisk\"\u003e\n        \u003cimg src=\"https://img.shields.io/packagist/v/paxha/laravel-asterisk\" alt=\"Latest Stable Version\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/paxha/laravel-asterisk\"\u003e\n        \u003cimg src=\"https://img.shields.io/packagist/l/paxha/laravel-asterisk\" alt=\"License\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n## Introduction\n\nLaravel Asterisk provides a Docker powered local development experience for Asterisk in Laravel that is compatible with\nmacOS, Windows (WSL2), and Linux. Other than Docker, no software or libraries are required to be installed on your local\ncomputer before using Laravel Asterisk.\n\n\u003e **Note:** This package is considering you are using `sail` or `docker`.\n\n## Installation\n\n```shell\ncomposer require paxha/laravel-asterisk\n```\n\n## Configuration\n\nYou have to simply add a service in `docker-compose.yml`.\n\n```\n# For more information: https://laravel.com/docs/sail\nversion: '3'\nservices:\n    # ...\n\n    asterisk:\n        build:\n            context: ./vendor/paxha/laravel-asterisk/runtimes\n            dockerfile: Dockerfile\n            args:\n                MYSQL_PORT: '${FORWARD_DB_PORT:-3306}'\n                MYSQL_DATABASE: '${DB_DATABASE}'\n                MYSQL_USER: '${DB_USERNAME}'\n                MYSQL_PASSWORD: '${DB_PASSWORD}'\n        image: laravel-asterisk:latest\n        ports:\n            - '${SIP_PORT:-5060}:5060/udp'\n            - '${IAX_PORT:-4569}:4569/udp'\n        volumes:\n            - './vendor/paxha/laravel-asterisk/config:/etc/asterisk'\n        networks:\n            - sail\n        depends_on:\n            - mysql \n\nnetworks:\n    sail:\n        driver: bridge\n```\n\nAnd then\n\n```shell\nsail up -d\n```\n\nTo publish the asterisk configuration for i.e. `/etc/asterisk`\n\n```shell\nsail artisan asterisk:install\n```\n\nYou will see the directory for asterisk configurations and modify according to your requirement.\n\n```\nasterisk\n│   \n└───config\n    │   asterisk.conf\n    │   modules.conf\n    │   res_odbc.conf\n    │   ...\n```\n\n## License\n\nLaravel Asterisk is open-sourced software licensed under the [MIT license](LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaxha%2Flaravel-asterisk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpaxha%2Flaravel-asterisk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaxha%2Flaravel-asterisk/lists"}