gtfs/realtime-php

This package is abandoned and no longer maintained. No replacement package was suggested.

GTFS-Realtime library for PHP

v1.0.0 2019-10-20 19:17 UTC

This package is auto-updated.

Last update: 2023-01-11 04:33:12 UTC


README

Simple wrapper for GTFS-Realtime in PHP based on Google's Protocol Buffers.

Usage

The library is kept simple to use for creating and parsing GTFS-Realtime feeds in PHP applications. See the simple examples for creating and parsing a feed message.

Composer Installation

In your application project root run

composer require gtfs/realtime-php

to install the package and all dependencies. This command will load all packages and update your autoloader to use the package.

Include [MainDirectory]/vendor/autoload.php in the head section of your application code to use all required classes in simple way.

Manual Installation

If you don't want to use composer to install all dependencies, you have to make sure that all dependencies from protocolbuffers/protobuf-php are available and can be found by your autoloader.

All required classes from the library itself are located in the src directory. Make sure that all these classes can be found by your autoloader.

License

The library package is licensed under "The Unlicense" - For the simple reason that there's nothing in this code at all, which you could not create for yourself using Google's protoc-Compiler and the corresponding definition file for GTFS-Realtime.