Download the PHP package rakibtg/sleekdb without Composer

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

Please give it a Star if you like the project 🎉 ❤️

# SleekDB - A NoSQL Database made using PHP ## Full documentation: https://sleekdb.github.io/ SleekDB is a simple flat file NoSQL like database implemented in PHP without any third-party dependencies that store data in plain JSON files. It is not designed to handle heavy-load IO operations, it is designed to have a simple solution where all we need a database for managing a few gigabytes of data. You can think of it as a database for low to medium operation loads. ## Features - ⚡ **Lightweight, faster** Stores data in plain-text utilizing JSON format, no binary conversion needed to store or fetch the data. Default query cache layer. - 🔆 **Schema free data storage** SleekDB does not require any schema, so you can insert any types of data you want. - 🔍 **Query on nested properties** It supports schema free data, so you can filter and use conditions on nested properties of the JSON documents! SleekDB will look for data at: - ✨ **Dependency free, only needs PHP to run** Supports PHP 7+. Requires no third-party plugins or software. - 🚀 **Default caching layer** SleekDB will serve data from cache by default and regenerate cache automatically! Query results will be cached and later reused from a single file instead of traversing all the available files. - 🌈 **Rich Conditions and Filters** Use multiple conditional comparisons, text search, sorting on multiple properties and nested properties. Some useful methods are:
  • where
  • orWhere
  • select
  • except
  • in
  • not in
  • join
  • like
  • sort
  • skip
  • orderBy
  • update
  • limit
  • search
  • distinct
  • exists
  • first
  • delete
  • like
  • not lik
  • between
  • not between
  • group by
  • having
- 👍 **Process data on demand** SleekDB does not require any background process or network protocol in order to process data when you use it in a PHP project. All data for a query will be fetched at runtime within the same PHP process. - 😍 **Runs everywhere** Runs perfectly on shared-servers or VPS too. - 🍰 **Easy to learn and implement** SleekDB provides a very simple elegant API to handle all of your data. - 🍰 **Easily import/export or backup data** SleekDB use files to store information. That makes tasks like backup, import and export very easy. - 💪 **Actively maintained**

SleekDB is created by @rakibtg who is using it in various types of applications which are in production right now. Our other contributor and active maintainer is Timucin who is making SleekDB much better in terms of code quality and new features.

- 📔 **Well documented** The official documentation of SleekDB does not just provide a good api documentation. It is filled with examples!

Visit our website https://sleekdb.github.io/ for documentation and getting started guide.


All versions of sleekdb with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
ext-json Version *
ext-mbstring Version *
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 rakibtg/sleekdb contains the following files

Loading the files please wait ....