{"id":37366029,"url":"https://github.com/elythi0n/tallink","last_synced_at":"2026-01-16T04:52:25.119Z","repository":{"id":60974546,"uuid":"161872305","full_name":"elythi0n/tallink","owner":"elythi0n","description":"🛳️ A lightweight PHP client for the Tallink API.","archived":false,"fork":false,"pushed_at":"2026-01-12T12:54:41.000Z","size":124,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-14T14:50:55.088Z","etag":null,"topics":["api-client","ferry","sdk-php","tallink","transport"],"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/elythi0n.png","metadata":{"files":{"readme":"README.MD","changelog":"CHANGELOG.md","contributing":null,"funding":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-12-15T05:14:02.000Z","updated_at":"2026-01-12T12:54:38.000Z","dependencies_parsed_at":"2025-10-16T11:50:57.378Z","dependency_job_id":null,"html_url":"https://github.com/elythi0n/tallink","commit_stats":{"total_commits":68,"total_committers":2,"mean_commits":34.0,"dds":0.05882352941176472,"last_synced_commit":"6185182b0018f0c6088c42bf244926040ebdf53e"},"previous_names":["elythi0n/tallink"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/elythi0n/tallink","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elythi0n%2Ftallink","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elythi0n%2Ftallink/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elythi0n%2Ftallink/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elythi0n%2Ftallink/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elythi0n","download_url":"https://codeload.github.com/elythi0n/tallink/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elythi0n%2Ftallink/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477210,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"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":["api-client","ferry","sdk-php","tallink","transport"],"created_at":"2026-01-16T04:52:24.048Z","updated_at":"2026-01-16T04:52:25.101Z","avatar_url":"https://github.com/elythi0n.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Tests](https://github.com/marcosraudkett/tallink/actions/workflows/run-tests.yml/badge.svg)](https://github.com/marcosraudkett/tallink/actions/workflows/run-tests.yml)\n\n# PHP SDK for the Tallink API\n\nThis is an unofficial Tallink PHP SDK and should not be used in production without asking permission from Tallink.\n\n## Requirements\n\n- PHP 8.1+\n\nIf you're using an older version of PHP then you can use the [2.1.0](https://github.com/marcosraudkett/tallink/releases/tag/2.1.0) version but it's highly recommended that you use the latest version.\n\n## Installation\n\n```\ncomposer require marcosraudkett/tallink\n```\n## Usage \n\nExample on how to fetch journeys\n### Journeys\n```php\nuse marcosraudkett\\Tallink\\Constants\\Voyage;\nuse marcosraudkett\\Tallink\\Constants\\Locale;\nuse marcosraudkett\\Tallink\\Constants\\Station;\nuse marcosraudkett\\Tallink\\Requests\\GetTimetablesRequest;\nuse marcosraudkett\\Tallink\\Tallink;\n\n$tallink = new Tallink;\n$response = $tallink-\u003esend(new GetTimetablesRequest(\n    oneWay: true,\n    voyageType: Voyage::SHUTTLE,\n    dateFrom: date('Y-m-d'),\n    dateTo: date('Y-m-d', strtotime('+2 days')),\n    from: Station::HELSINKI, // hel\n    to: Station::TALLINN,    // tal\n    locale: Locale::ENGLISH, // en\n));\n\nprint_r($journeys-\u003ejson()); \n```\n\nCheck inside [/examples](/examples/) folder for more.\n\n## Available requests\n\n| Request | Description |\n| - | - | \n| GetTimetablesRequest | Get the list of journeys | \n| GetTravelClassesRequest | Get the list of travel classes | \n| GetVehiclesRequest | Get the list of vehicle availability \u0026 pricing | \n| GetMealsRequest | Get the list of meal plans | \n| GetHotelsRequest | Get the list of hotels | \n| GetLandRequest | Get the list of land services | \n| GetOnboardServicesRequest | Get the list of onboard services | \n\n\n## Testing\n\n```\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nFeel free to open a pull request or report an issue.\n## Credits\n\n- [Marcos Raudkett](https://github.com/marcosraudkett)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felythi0n%2Ftallink","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felythi0n%2Ftallink","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felythi0n%2Ftallink/lists"}