lsv / rejseplan-php-api
PHP wrapper for Rejseplanen.dk API
Requires
- php: ^8.0
- ext-json: *
- nyholm/psr7: ^1.4
- psr/http-client: ^1.0
- symfony/options-resolver: ^6.0
- symfony/property-access: ^6.0
- symfony/property-info: ^6.0
- symfony/serializer: ^6.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.5
- infection/infection: ^0.26.1
- php-http/mock-client: ^1.5
- phpstan/phpstan: ^1.4
- phpunit/phpunit: ^9.5
- rregeer/phpunit-coverage-check: ^0.3.1
- sebastian/phpcpd: ^6.0
- symfony/http-client: ^6.0
- symfony/phpunit-bridge: ^6.0
- symfony/var-dumper: ^6.0
README
PHP wrapper for Rejseplanen.dk API
Install
composer require lsv/rejseplan-php-api # Add a PSR-18 client, fx composer require symfony/http-client # If you add another PSR18 client, then look below on how to use other PSR 18 clients
Usage
$client = new \Symfony\Component\HttpClient\HttpClient(); // Any PSR-18 http client can be used \Lsv\Rejseplan\AbstractRequest::setClient($client); $location = '123'; // Location should be either a string, integer or a StopLocation $board = new \Lsv\Rejseplan\ArrivalBoard($location); $response = $board->request(); // $response is now a ArrivalBoardResponse
See ArrivalBoard for more
More usages
License
The MIT License (MIT)
Copyright (c) 2019 Martin Aarhof martin.aarhof@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.