Download the PHP package glueful/framework without Composer

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

Glueful Framework

High‑performance PHP API framework components for building secure, scalable backends. This repository contains the framework runtime (router, DI, HTTP, caching, security, queues, etc.). For a ready‑to‑use application skeleton, see the API skeleton link below.

Requirements

Installation

Install as a library into your application:

If you want a pre‑scaffolded app, use the API skeleton instead (recommended to get started quickly).

Quick Start (framework usage)

Bootstrap and handle a request:

Getting Started

Documentation

Highlights

Email Two-Factor Authentication (2FA)

Baseline email-PIN 2FA ships in core and is off by default — a fresh install behaves exactly like a pre-2FA framework. To enable it (no source-code editing required):

  1. Run the 010_AddTwoFactorEnabledToUsers migration (ships in api-skeleton).
  2. Install glueful/email-notification (provides the email channel + two-factor-pin template).
  3. Set TWO_FACTOR_ENABLED=true in .env.
  4. Enroll users via POST /2fa/enable or php glueful 2fa:enable <user-uuid>.

Once enabled, POST /auth/login returns a challenge_token (and emails a 6-digit PIN) for enrolled users instead of tokens; the client completes login at POST /2fa/verify. Richer factors (TOTP, WebAuthn, recovery codes) ship separately as glueful/mfa.

Generating an SDK client

Glueful produces a high-quality openapi.json; client generation is delegated to best-of-breed tools per language. The generate:client command builds the right shell invocation for you:

By default the command prints the shell command so you can pin a specific generator version in CI. Add --execute to run the generator directly. See docs/WEBHOOKS.md for how to surface outbound webhooks in the spec for SDK consumers.

Deployment Notes

API Skeleton (recommended to start)

For a ready‑to‑run project scaffold, use the API skeleton and follow its README. It wires this framework, public entrypoints, config, and examples:

Quick start:

Contributing

Contributions are welcome. Please open issues or PRs. For larger proposals, consider starting with a discussion referencing the implementation plans in docs/implementation_plans/.

License

MIT — see LICENSE.


All versions of framework with dependencies

PHP Build Version
Package Version
Requires php Version ^8.3
composer/semver Version ^3.4
dragonmantank/cron-expression Version ^3.4
league/flysystem Version ^3.30
league/flysystem-local Version ^3.30
monolog/monolog Version ^3.8
nyholm/psr7 Version ^1.8
nyholm/psr7-server Version ^1.1
phpdocumentor/reflection-docblock Version ^6.0
psr/http-client Version ^1.0
psr/http-factory Version ^1.1
psr/http-server-middleware Version ^1.0
psr/simple-cache Version ^3.0
symfony/console Version ^7.4
symfony/event-dispatcher Version ^7.4
symfony/finder Version ^7.4
symfony/http-client Version ^7.4
symfony/http-foundation Version ^7.4
symfony/lock Version ^7.4
symfony/mailer Version ^7.4
symfony/mime Version ^7.4
symfony/process Version ^7.4
symfony/psr-http-message-bridge Version ^7.4
symfony/string Version ^7.4
vlucas/phpdotenv Version ^5.6
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 glueful/framework contains the following files

Loading the files please wait ...