Download the PHP package tyesty/routing-annotation-reader without Composer

On this page you can find all versions of the php package tyesty/routing-annotation-reader. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package routing-annotation-reader

Routing annotation reader

This small class indexes all controller classes in a given set of directories and creates a list of routes out of the action methods.

To ensure that your controller action is indexed, simply add a bunch of docblock to your Controller classes and run the annotation reader.

Usage

Creating a Reader object

Parameter Type Default Description
$directories array [] List of directories that contain the controller classes. These directories are traversed recursively.
$route_log ?string null The log file in which the routing documentation shall be written. If set to null, then no documentation is generated. If $log_function is set, then this parameter will be ignored.
$log_function ?callable null A function/invokeable class that will be run after the routes have been determined. This can be used for literally everything, but the most common use case is autogenerated routing documentation. The only parameter of the callable is the current Reader object.

Example

will then output

Options

Set Controller class postfix

In order to overwrite the default controller class name postfix, simply call

Set Action method postfix

In order to overwrite the default controller action method name postfix, simply call

Log routes to a file

For logging the determined routes to a HTML file, just add a second parameter to the constructor in which you set the complete path to the logfile (including the filename). The annotation reader will then automatically write the logfile. Be aware that this will slow down the reading process, so please use this option only in development environments.

Set cache folder (enables caching)

If you want to cache the determined routes, you can set the cache folder to the place where you want the cache file to be saved. This automatically enables the caching mechanism. Be aware that you have to manually take care of cache invalidation. Therefore this is not really recommended, it's better practise to have the Injection class take care of caching. Nonetheless, if you want to enable caching, simply do

Create a custom log processor

If you want to use a custom log processor than the built in (see "log routes to a file"), you can pass it to the constructor as a callable. This callable has to accept one parameter, the current Reader object. Inside this method/invokeable class you then have full access to the complete Reader object.

Route injection

Inject routes to Slim application

In order to inject routes into your slim application, you can use the SlimRouter class with its static inject method. This method accepts four parameters:

Parameter Type Default Description
$reader tyesty\RoutingAnnotationReader\ReaderInterface The reader object
$app_name string "app" The variable name of the current Slim App object
$cache_folder ?string null The path to the cache folder. If null, then no cache is used
$cache_ttl int 60 The TTL for the cached routes. Defaults to 60
Example

All versions of routing-annotation-reader with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tyesty/routing-annotation-reader contains the following files

Loading the files please wait ....