Download the PHP package tcdev/macaw without Composer

On this page you can find all versions of the php package tcdev/macaw. 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 macaw

Macaw

Macaw is a simple, open source PHP router. It's super small (~150 LOC), fast, and has some great annotated source code. This class allows you to just throw it into your project and start using it immediately.

Install

If you have Composer, just include Macaw as a project dependency in your composer.json. If you don't just install it by downloading the .ZIP file and extracting it to your project directory.

Examples

First, use the Macaw namespace:

Macaw is not an object, so you can just make direct operations to the class. Here's the Hello World:

You can specify a prefix which will be added to all of your routes. This is useful to prevent duplication if you know you're running behind a particular URL that isn't always defined by the directory you're executing from. For example, if you know your file is accessed at /subfolder/somewhere-else/, you can:

Macaw also supports lambda URIs, such as:

You can also make requests for HTTP methods in Macaw, so you could also do:

You may want to stop execution once a matching route is found. Without the call to haltOnMatch() below, if you requested /, you would see both 'Hello world!' and 'I am further execution...' displayed. To prevent that, simply add the line:

If you need to overwrite the HTTP method that's being used for this request, you can set it:

Lastly, if there is no route defined for a certain location, you can make Macaw run a custom callback, like:

If you don't specify an error callback, Macaw will just echo 404.


In order to let the server know the URI does not point to a real file, you may need to use one of the example configuration files.


All versions of macaw with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.3
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 tcdev/macaw contains the following files

Loading the files please wait ....