Download the PHP package bjornbasar/karhu without Composer

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

karhu

Minimal PHP microframework — attribute-routed, zero runtime dependencies, PHP 8.3+.

CI

Why karhu?

A small framework you can read end-to-end. ~1200 LOC core, no closures-as-routes, no YAML, no required dependencies — controllers declare routes via PHP attributes. Extras (DB, queue, view) ship as separate packages.

Install

Or add karhu to an existing project:

Hello world

Register the controller in config/controllers.php and karhu's attribute scanner wires the route automatically.

What's in the box

Capability Where
Attribute routing (#[Route]) src/Http/Router.php + src/Attributes/Route.php
Middleware pipeline (PSR-15 shape) src/Http/MiddlewarePipeline.php
Auto-wiring DI container (PSR-11 shape) src/Container/Container.php
RBAC + PasswordHasher (argon2id) src/Auth/
Session, CSRF, CORS, RequireRole middleware src/Middleware/
Validation attributes (#[Required], #[StringLength], #[In]) src/Http/Validation/
RFC 7807 error responses src/Error/ExceptionHandler.php
CLI dispatcher (#[Command]) src/Cli/ + bin/karhu
Logger interface (PSR-3 shape) src/Log/
Production route cache bin/karhu route:cache

Companion packages

Package Purpose
karhu-skeleton Starter app template
karhu-db Thin PDO wrapper + active-record base + PdoUserRepository
karhu-queue Queue/worker abstraction, ships with DB driver
karhu-view Template engine bridge (Twig + Plates adapters)
istrbuddy Reference issue-tracker app dogfooding the full stack

Development

PHP 8.3 + 8.4 are tested via the GitHub Actions matrix.

Documentation

License

MIT


All versions of karhu with dependencies

PHP Build Version
Package Version
Requires php Version >=8.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 bjornbasar/karhu contains the following files

Loading the files please wait ...