{"id":37015254,"url":"https://github.com/zembrowski/phpsms-poland","last_synced_at":"2026-01-14T01:32:33.053Z","repository":{"id":57089812,"uuid":"51264125","full_name":"zembrowski/phpsms-poland","owner":"zembrowski","description":"Send SMS via Polish mobile carriers using PHP","archived":true,"fork":false,"pushed_at":"2017-08-03T22:16:26.000Z","size":28,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-27T16:55:40.119Z","etag":null,"topics":["orange","php","poland","sms"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":false,"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/zembrowski.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-02-07T20:13:04.000Z","updated_at":"2023-01-28T11:56:35.000Z","dependencies_parsed_at":"2022-08-20T16:00:55.299Z","dependency_job_id":null,"html_url":"https://github.com/zembrowski/phpsms-poland","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/zembrowski/phpsms-poland","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zembrowski%2Fphpsms-poland","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zembrowski%2Fphpsms-poland/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zembrowski%2Fphpsms-poland/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zembrowski%2Fphpsms-poland/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zembrowski","download_url":"https://codeload.github.com/zembrowski/phpsms-poland/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zembrowski%2Fphpsms-poland/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408447,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T00:40:43.272Z","status":"ssl_error","status_checked_at":"2026-01-14T00:40:42.636Z","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":["orange","php","poland","sms"],"created_at":"2026-01-14T01:32:32.399Z","updated_at":"2026-01-14T01:32:33.034Z","avatar_url":"https://github.com/zembrowski.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# phpsms-poland\n\n[![Latest Version on Packagist][ico-version]][link-packagist]\n[![Software License][ico-license]](LICENSE)\n[![Total Downloads][ico-downloads]][link-downloads]\n[![Build Status][ico-travis]][link-travis]\n[![Quality Score][ico-scrutinizer]][link-scrutinizer]\n[![Coveralls Status][ico-coveralls]][link-coveralls]\n[![Codeship Status][ico-codeship]][link-codeship]\n\n\nSend SMS via Polish mobile carriers using Object-Orientated PHP.\n\nCurrently only Orange Multibox is supported.\n\n\n## Install\n\nVia [Composer][link-composer]\n\n``` bash\n$ composer require zembrowski/phpsms-poland\n```\n\nor  \n\njust download [src/Orange.php](src/Orange.php), [Requests for PHP](http://requests.ryanmccue.info), [simple_html_dom](https://github.com/EmanueleMinotto/simple-html-dom) and require all needed classes like this:\n``` php\nrequire_once 'Requests.php';\nRequests::register_autoloader();\nrequire_once 'simple_html_dom.php';\nrequire_once 'Orange.php';\n```\n\n\n## Usage\n\nWith [Composer][link-composer]\n``` php\nrequire_once 'vendor/autoload.php';\n\n$login = 'login';\n$password = 'password';\n$recipient = '501234567';\n$text = 'It works! Thanks :)';\ntry {\n  $sms = new zembrowski\\SMS\\Orange();\n  $sms-\u003elogin($login, $password);\n  $sms-\u003esend($recipient, $text);\n} catch (Exception $e) {\n  echo '[ERROR] ' . $e-\u003egetMessage();\n}\n```\n\nSee [examples](examples) folder for advanced function usage.\n\n\n## Change log\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.\n\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n\n## Credits\n\n- [Krzysztof Tomasz Zembrowski][link-author]\n- [All Contributors][link-contributors]\n\n\n## License\n\nThe MIT License (MIT) applies. Please see [License File](LICENSE) for more information.\n\n[ico-version]: https://img.shields.io/packagist/v/zembrowski/phpsms-poland.svg?style=flat-square\n[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\n[ico-downloads]: https://img.shields.io/packagist/dt/zembrowski/phpsms-poland.svg?style=flat-square\n[ico-travis]: https://img.shields.io/travis/zembrowski/phpsms-poland/master.svg?style=flat-square\n[ico-scrutinizer]: https://img.shields.io/scrutinizer/g/zembrowski/phpsms-poland.svg?style=flat-square\n[ico-coveralls]: https://coveralls.io/repos/github/zembrowski/phpsms-poland/badge.svg?branch=master\n[ico-codeship]: https://codeship.com/projects/44743910-b0be-0133-3c40-7ee430441c87/status?branch=master\n\n[link-packagist]: https://packagist.org/packages/zembrowski/phpsms-poland\n[link-downloads]: https://packagist.org/packages/zembrowski/phpsms-poland\n[link-travis]: https://travis-ci.org/zembrowski/phpsms-poland\n[link-scrutinizer]: https://scrutinizer-ci.com/g/zembrowski/phpsms-poland\n[link-coveralls]: https://coveralls.io/github/zembrowski/phpsms-poland\n[link-codeship]: https://codeship.com/projects/132791\n\n[link-composer]: https://getcomposer.org\n[link-author]: https://github.com/zembrowski\n[link-contributors]: ../../contributors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzembrowski%2Fphpsms-poland","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzembrowski%2Fphpsms-poland","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzembrowski%2Fphpsms-poland/lists"}