Download the PHP package project-a/silex-routing without Composer

On this page you can find all versions of the php package project-a/silex-routing. 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 silex-routing

Silex-Routing

Serviceprovider for advanced and dynamic routing in Silex

Latest Stable Version Total Downloads License Build Status Coverage Status SensioLabsInsight

Description

Silex-Routing allows you to define custom and multiple routers for Silex. This is especially useful when working with dynamic routes, which are not known while writing the code (e.g. URLs stored in database).

This implementation works for both, matching and generating of URLs.

The advanced routing is achieved by connecting Silex with symfony-cmf/Routing.

Installation

The recommended way to install Silex-Routing is through composer. Just create a composer.json file and run the php composer.phar install command to install it:

{
    "require": {
        "project-a/silex-routing": "dev-master"
    }
}

Alternatively, you can download the silexrouting.zip file and extract it.

Upgrade from 1.0 to 2.0

Version 2 is not backward compatible with version 1. Make sure to carefully read the changelog.

Usage

Using Silex-Routing is very simple. All you need to do is register the provided and afterwards add all your custom routers ().

There is a router in this repository named , that handles the default routing behavior of Silex. Registering this router ensures, that all routes added through the main Silex application still work. (This router is not registered by default.)

Since version 2.0 of project-a/silex-routing the url generation is included in the and no special is needed anymore.

Tests

To run the test suite, you need composer.

$ php composer.phar install --dev
$ phpunit

License

Silex-Routing is licensed under the MIT license.


All versions of silex-routing with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
silex/silex Version ^2.0
symfony/routing Version ^2.8|^3.0
symfony-cmf/routing Version ^1.0|^2.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 project-a/silex-routing contains the following files

Loading the files please wait ....