Download the PHP package jahurul1/ji-framework without Composer

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

JiFramework

JiFramework is a lightweight, plug-and-play PHP framework built for developers who want to move fast without sacrificing structure.

Whether you're prototyping a side project or shipping a production application, JiFramework gives you a fully wired environment — database, authentication, caching, logging, validation, encryption, and more — all ready in two lines of code. No CLI tools to learn, no template engine to configure, no boilerplate to write. Just install, instantiate, and build.

Built on plain PHP with zero mandatory configuration, JiFramework stays out of your way while giving you the power to handle anything from simple REST APIs to full multi-language web applications.

Two lines to start:

That's it — database, auth, cache, logging, validation, and more are all ready.


Why JiFramework?


Requirements


Installation


Quick Start


Configuration

Copy the example config to your project root and fill in your values:

JiFramework auto-detects jiconfig.php — no manual path setup needed. You only need to define the keys you want to change; everything else falls back to sensible defaults.


Router Mode

Enable routing in jiconfig.php (router_enabled => true) and define routes in index.php:


Components

Component Access Description
QueryBuilder $app->db Fluent SQL builder — SELECT, INSERT, UPDATE, DELETE, JOINs, aggregates, transactions
Model extend Model Active Record-style base class for database tables
Auth $app->auth User & admin authentication, remember-me tokens
Session $app->sessionManager Session management, flash messages, CSRF tokens
Validator $app->validator Fluent input validation with 20+ built-in rules
Router $app->router Optional URL router — file or closure handlers, route groups, params
Cache $app->cache File or SQLite cache driver with TTL, increment/decrement
Logger $app->logger PSR-3 structured logger with log rotation and level filtering
Encryption $app->encryption AES-256-GCM encryption, password hashing, secure random tokens
RateLimiter $app->rateLimiter Request rate limiting with IP ban support
AccessControl $app->accessControl IP and country blocking
HttpClient $app->http HTTP client for external API requests
FileManager $app->fileManager File read/write, upload handling, directory utilities
Str $app->str String utilities — slugify, mask, case conversion, truncate, and more
Paginator $app->paginator Pagination with QueryBuilder integration
DateTimeHelper $app->dateTime Date/time arithmetic, formatting, timezone conversion
ExecutionTimer $app->executionTimer Measure code execution time
Request $app->request Client IP detection, request headers, bearer token, AJAX/HTTPS/CLI detection
Url $app->url URL parsing, building, query param manipulation
Localization $app->language Multi-language support via JSON files
ErrorHandler automatic Structured error handling, custom error pages, named HTTP exceptions
Exceptions $app->abort() HttpException, NotFoundException, ForbiddenException, ValidationException, and more

Code Examples

Database — QueryBuilder

Model

Validator

Session & CSRF

Logger

Encryption


Testing

The test suite contains 327 tests and 499 assertions covering all framework components.


Documentation

Full documentation is available at jiframework.com.


Contributing

See CONTRIBUTING.md for guidelines.


License

MIT License — © 2025 Jahurul Islam


All versions of ji-framework with dependencies

PHP Build Version
Package Version
Requires php 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 jahurul1/ji-framework contains the following files

Loading the files please wait ...