Download the PHP package konradmichalik/typo3-routing without Composer

On this page you can find all versions of the php package konradmichalik/typo3-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 typo3-routing

![Extension icon](Resources/Public/Icons/Extension.png) # TYPO3 extension `typo3_routing` [![Latest Stable Version](https://typo3-badges.dev/badge/typo3_routing/version/shields.svg)](https://extensions.typo3.org/extension/typo3_routing) ![TYPO3](https://img.shields.io/badge/TYPO3-13.4%20%7C%2014.0-orange.svg) [![Supported PHP Versions](https://img.shields.io/packagist/dependency-v/konradmichalik/typo3-routing/php?logo=php)](https://packagist.org/packages/konradmichalik/typo3-routing) [![CGL](https://img.shields.io/github/actions/workflow/status/konradmichalik/typo3-routing/cgl.yml?label=cgl&logo=github)](https://github.com/konradmichalik/typo3-routing/actions/workflows/cgl.yml) [![Coverage](https://img.shields.io/coverallsCoverage/github/konradmichalik/typo3-routing?logo=coveralls)](https://coveralls.io/github/konradmichalik/typo3-routing) [![Tests](https://img.shields.io/github/actions/workflow/status/konradmichalik/typo3-routing/tests.yml?label=tests&logo=github)](https://github.com/konradmichalik/typo3-routing/actions/workflows/tests.yml) [![License](https://poser.pugx.org/konradmichalik/typo3-routing/license)](LICENSE.md)

This extension lets you register frontend endpoints via PHP attributes on controller methods — the attribute-based counterpart to the backend-only Configuration/Backend/AjaxRoutes.php. It is response-format agnostic: return JSON, HTML, XML, or a download.

[!NOTE] The goal is a familiar, Symfony-Routing-like developer experience: declare a frontend endpoint with a single #[Route] attribute instead of wiring a custom middleware and duplicating the path across PHP and JavaScript.

✨ Features

🔥 Installation

Requirements

Composer

Packagist Packagist Downloads

TER

TER version TER downloads

Download the zip file from TYPO3 extension repository (TER).

🚀 Quick start

Implement RouteControllerInterface, register the controller as a service, and annotate a public method with #[Route]:

That's it — GET /api/course-search/count now returns your JSON.

Everything else is opt-in on top of that. A route can take typed arguments, validate input, cache its response, and throttle clients — all declared with attributes, the controller stays plain:

Protecting a route is just as declarative — require a logged-in frontend user (or a bearer token / BE user, OR-combined):

See Usage for the full #[Route] reference and typed arguments.

📚 Documentation

Topic What's inside
Usage The #[Route] attribute, requirements, and typed controller arguments
URL Generation routing:uri / routing:uris Fluid ViewHelpers and the PHP generator
Configuration Path prefix gate, environment-bound routes, middleware placement
Caching Opt-in response caching with #[Cache] and tag-based invalidation
Rate Limiting Opt-in per-IP throttling with #[RateLimit]
Authentication & CSRF Protecting routes with #[Authenticate], request tokens, and deployment notes
How It Works Compile-time discovery, runtime dispatch, and the routing:debug command
How It Compares When to reach for this vs. AjaxRoutes, custom middleware, eID, or Extbase plugins

🧑‍💻 Contributing

Please have a look at CONTRIBUTING.md.

⭐ License

This project is licensed under GNU General Public License 2.0 (or later).


All versions of typo3-routing with dependencies

PHP Build Version
Package Version
Requires php Version ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0
psr/container Version ^1.1 || ^2.0
psr/http-message Version ^1.0 || ^2.0
psr/http-server-handler Version ^1.0.2
psr/http-server-middleware Version ^1.0.2
symfony/console Version ^7.0 || ^8.0
symfony/dependency-injection Version ^7.1 || ^8.0
symfony/rate-limiter Version ^7.0 || ^8.0
symfony/routing Version ^7.0 || ^8.0
typo3/cms-core Version ^13.4 || ^14.0
typo3/cms-extbase Version ^13.4 || ^14.0
typo3/cms-frontend Version ^13.4 || ^14.0
typo3fluid/fluid Version ^4.2 || ^5.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 konradmichalik/typo3-routing contains the following files

Loading the files please wait ...