{"id":19035750,"url":"https://github.com/freeclimbapi/php-sms-quickstart","last_synced_at":"2026-02-28T12:08:55.930Z","repository":{"id":169150942,"uuid":"644499885","full_name":"FreeClimbAPI/PHP-SMS-Quickstart","owner":"FreeClimbAPI","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-09T15:01:11.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"VCSWP-15872","last_synced_at":"2025-02-21T21:38:25.621Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Hack","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/FreeClimbAPI.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":"2023-05-23T16:37:26.000Z","updated_at":"2025-01-09T15:01:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"ec2449eb-e716-45da-b36a-81520bd1848d","html_url":"https://github.com/FreeClimbAPI/PHP-SMS-Quickstart","commit_stats":null,"previous_names":["freeclimbapi/php-sms-quickstart"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/FreeClimbAPI/PHP-SMS-Quickstart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2FPHP-SMS-Quickstart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2FPHP-SMS-Quickstart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2FPHP-SMS-Quickstart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2FPHP-SMS-Quickstart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FreeClimbAPI","download_url":"https://codeload.github.com/FreeClimbAPI/PHP-SMS-Quickstart/tar.gz/refs/heads/VCSWP-15872","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FreeClimbAPI%2FPHP-SMS-Quickstart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29933061,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T09:58:13.507Z","status":"ssl_error","status_checked_at":"2026-02-28T09:57:57.047Z","response_time":90,"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":[],"created_at":"2024-11-08T21:51:59.755Z","updated_at":"2026-02-28T12:08:55.909Z","avatar_url":"https://github.com/FreeClimbAPI.png","language":"Hack","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PHP SMS Quickstart\n\nThis quickstart serves as a guide to get your first SMS application up and running with [FreeClimb](https://docs.freeclimb.com/docs/how-freeclimb-works).\n\nSpecifically, the project will:\n\n- Receive an incoming message via a FreeClimb application\n- Respond with a FreeClimb command to say 'Hello World!' to messager\n\n## Requirements\n\n- A [FreeClimb account](https://www.freeclimb.com/dashboard/signup/)\n\n- A [registered application](https://docs.freeclimb.com/docs/registering-and-configuring-an-application#register-an-app) with a named alias\n\n- A [configured FreeClimb number](https://docs.freeclimb.com/docs/getting-and-configuring-a-freeclimb-number) assigned to your application\n\n- Trial accounts: a [verified number](https://docs.freeclimb.com/docs/using-your-trial-account#verifying-outbound-numbers)\n\n## Tools:\n\n- [PHP](https://www.php.net/manual/en/install.php) 7.2 or higher\n- [Composer](https://getcomposer.org/)\n- [ngrok](https://ngrok.com/download) (recommended for hosting)\n\n## Setting up the Quickstart\n\n1. Install the required packages\n\n   ```bash\n   composer install\n   ```\n\n2. Configure environment variables (in `.env.sample` and rename the file to `.env`):\n\n   | ENV VARIABLE     | DESCRIPTION                                                                                                                            |\n   | ---------------- | -------------------------------------------------------------------------------------------------------------------------------------- |\n   | ACCOUNT_ID       | Account ID which can be found under [API credentials](https://www.freeclimb.com/dashboard/portal/account/authentication) in dashboard. |\n   | API_KEY          | API key which can be found under [API credentials](https://www.freeclimb.com/dashboard/portal/account/authentication) in dashboard.    |\n   | FREECLIMB_NUMBER | The number that sends messages from your application. Your FreeClimb number.                                                           |\n\n3. Make your local server publicly accessible\n    ```bash\n    ngrok http 3000\n    ```\n    Once you run ngrok you should receive a response with a public URL, that looks something like 'https://ba1c-63-209-137-19.ngrok-free.app'. \n\n4. [Configure your applications's endpoints](https://docs.freeclimb.com/docs/registering-and-configuring-an-application#configure-your-application) by adding a publicly accessible URL (we recommend an [ngrok](https://ngrok.com/download) URL) and the route reference `/incoming-sms.php` to your App Config's VoiceURL:\n\n   ```bash\n   https://YOUR-URL.ngrok.io/incoming-sms.php\n   ```\n\n## Running the Quickstart\n\n1. Start your voice quickstart application\n\n   ```bash\n   php -S 127.0.0.1:3000\n   ```\n\n2. Message the FreeClimb number assigned to the application you've configured for this tutorial\n\n## Using Docker to Run the Quickstart\n\n1. Pull docker image from dockerhub\n\n   ```bash\n   docker pull freeclimbapi/php-sms-quickstart\n   ```\n\n2. Run docker image after replacing placeholder values\n\n   ```bash\n   docker run -e ACCOUNT_ID=\u003cYOUR_ACCOUNT_ID\u003e -e API_KEY=\u003cYOUR_API_KEY\u003e -e FREECLIMB_NUMBER=\u003cYOUR_FREECLIMB_NUMBER\u003e -p 3000:3000 freeclimbapi/php-sms-quickstart\n   ```\n\n## Feedback \u0026 Issues\n\nIf you would like to give the team feedback or you encounter a problem, please [contact support](https://www.freeclimb.com/support/) or [submit a ticket](https://freeclimb.com/dashboard/portal/support) in the dashboard.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreeclimbapi%2Fphp-sms-quickstart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffreeclimbapi%2Fphp-sms-quickstart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreeclimbapi%2Fphp-sms-quickstart/lists"}