Download the PHP package modufolio/appkit without Composer

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

Appkit

CI PHPStan License: MIT codecov

A small, hand-wired PHP application kernel built on Symfony components, Doctrine ORM, Firebase JWT, and a strict-typed PSR-7 fork. Designed for security-conscious SaaS applications that want Symfony-grade components without Symfony's full kernel, bundle system, and compile step — until the application is big enough to want the last two, at which point it opts in.

In AppKit, your App class is the container. Symfony compiles a container class you never read; Laravel hides its container behind facades. Here the container is a class you write: services are typed methods on your App, lazily constructed and cached in properties you can see. There is nothing to compile, because you already wrote what a compiler would generate — and grep is the container debugger.

That is the right size for a small application, and it stays the kernel's model at every size. When the service graph outgrows hand-wiring — autowired trees, tags, compiler passes, modules that ship their own definitions — the application puts Symfony's DI container behind the kernel with one line. The kernel keeps first say on every id it declares; only an unknown id reaches Symfony. See The Symfony container behind the kernel.

Why it exists

What AppKit deliberately doesn't include

Each of these is a stated choice with a documented alternative, not a gap:

What it solves

Quick start

The skeleton lives in its own repository: modufolio/appkit-skeleton. composer start is the skeleton's Composer script — PHP's built-in server on port 8000 with router.php — not a framework command.

A minimal controller

AbstractController is a concrete base class despite its name — it is not declared abstract. The kernel fills its protected properties (entityManager, tokenStorage, urlGenerator, userProvider, validator, flashBag) right after construction. Extending it is optional: any class the router resolves works, and only subclasses get that treatment.

Documentation

Full guides under docs/:

Start with the introduction for the architecture overview and the design philosophy the rest of the documentation assumes.

Requirements

See composer.json for the canonical dependency list.

License

MIT. See LICENSE.


All versions of appkit with dependencies

PHP Build Version
Package Version
Requires php Version ^8.4
ext-curl Version *
ext-dom Version *
ext-fileinfo Version *
ext-intl Version *
ext-libxml Version *
ext-pdo Version *
ext-simplexml Version *
ext-sqlite3 Version *
ext-zip Version *
doctrine/dbal Version ^4
doctrine/migrations Version ^3.6
doctrine/orm Version ^3
firebase/php-jwt Version ^7.0
psr/clock Version ^1.0
psr/http-factory Version ^1.0
psr/http-message Version ^2.0
psr/http-server-handler Version ^1.0
psr/http-server-middleware Version ^1.0
psr/log Version 3.0
symfony/cache Version ^7.4
symfony/config Version ^7.4
symfony/console Version ^7.4
symfony/filesystem Version ^7.4
symfony/http-foundation Version ^7.4
symfony/password-hasher Version ^7.4
symfony/property-access Version ^7.4
symfony/property-info Version ^7.4
symfony/routing Version ^7.4
symfony/serializer Version ^7.4
symfony/uid Version ^7.4
symfony/validator Version ^7.4
symfony/yaml Version ^7.4
nikic/php-parser Version ^5.6
willdurand/negotiation Version ^3.1
spomky-labs/otphp Version ^11.3
endroid/qr-code Version 6.0.9
symfony/var-exporter Version ^7.4
symfony/clock Version ^7.4
laminas/laminas-escaper Version ^2.18
symfony/process Version ^7.4
psr/http-client Version ^1.0
symfony/stopwatch Version ^7.4
modufolio/http Version ^0.2
symfony/event-dispatcher Version ^7.4
psr/event-dispatcher Version ^1.0
symfony/rate-limiter Version ^7.4
symfony/lock Version ^7.4
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 modufolio/appkit contains the following files

Loading the files please wait ...