{"id":36997288,"url":"https://github.com/rrortega/sms-handler","last_synced_at":"2026-01-13T23:54:07.289Z","repository":{"id":62537741,"uuid":"115768827","full_name":"rrortega/sms-handler","owner":"rrortega","description":"Core for send \u0026 receive SMS using several methods!","archived":false,"fork":false,"pushed_at":"2018-07-18T20:44:53.000Z","size":30,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-05-23T10:26:33.797Z","etag":null,"topics":["gateway","message","smpp","sms"],"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/rrortega.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}},"created_at":"2017-12-30T02:41:04.000Z","updated_at":"2019-04-03T14:46:29.000Z","dependencies_parsed_at":"2022-11-02T16:15:40.932Z","dependency_job_id":null,"html_url":"https://github.com/rrortega/sms-handler","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/rrortega/sms-handler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrortega%2Fsms-handler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrortega%2Fsms-handler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrortega%2Fsms-handler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrortega%2Fsms-handler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rrortega","download_url":"https://codeload.github.com/rrortega/sms-handler/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrortega%2Fsms-handler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28405631,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["gateway","message","smpp","sms"],"created_at":"2026-01-13T23:54:06.774Z","updated_at":"2026-01-13T23:54:07.280Z","avatar_url":"https://github.com/rrortega.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"PHP-based SMS handler lib\n=============\n\nThis is a SMS Handle lib for sending or receiving SMSs through sereral drivers\n\nUsing composser\n-----\n``` \n  composer require rrortega/sms-handler\n``` \n\nBasic usage example\n-----\n\nTo send a SMS you can do:\n\n``` php\n\u003c?php\n\nrequire_once \"vendor/autoload.php\";\n\n$configuration=[\n   \"smpp\"=\u003e[\n      \"sender\" =\u003e [  \n         \"class\" =\u003e \\rrortega\\sms\\core\\Sender\\SmppSender::class,\n         \"conf\" =\u003e [\n           \"host\" =\u003e \"smpp.host.com\",\n           \"port\" =\u003e 2875,\n           \"user\" =\u003e \"smppuser\",\n           \"pass\" =\u003e \"smppasss\",\n           \"timeout\" =\u003e 10000,\n         ], \n       ]\n   ],\n   \"twilio\"=\u003e[\n      \"sender\" =\u003e [  \n        \"class\" =\u003e \\rrortega\\sms\\core\\Sender\\TwilioSender::class,\n        \"conf\" =\u003e [\n          \"sid\" =\u003e \"sid-xxxxxxxxx\",\n          \"token\" =\u003e \"token-xxxxxxxxxx\n        ],\n      ]\n   ]\n];\n\n\n//using smpp\n$handler = new \\rrortega\\sms\\core\\SmsHandler($configuration['smpp']);\n\n//using twilio\n$handler = new \\rrortega\\sms\\core\\SmsHandler($configuration['twilio']);\n\n$m = $handler-\u003esendSms(\"TEST SMPP\", 521000000000, \"Messaje sent using Smpp Driver\");\n$m-\u003egetStatus(); //SUCCESS or FAILED\n$m-\u003egetId(); // message id\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frrortega%2Fsms-handler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frrortega%2Fsms-handler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frrortega%2Fsms-handler/lists"}