Shareable sorter - basic interfaces

v1.0.2 2022-05-31 04:19 UTC

This package is auto-updated.

Last update: 2024-03-20 04:31:18 UTC


README

Build Status Scrutinizer Code Quality Latest Stable Version Minimum PHP Version Downloads License Code Coverage

Contains simple interfaces for creating sorting compatible across the libraries. It has been cut from running project and simplified for usage available for another libraries.

This is the mixed package - contains sever-side implementation in Python and PHP.

PHP Installation

{
    "require": {
        "alex-kalanis/sorter": "1.0"
    }
}

(Refer to Composer Documentation if you are not familiar with composer)

PHP Usage

1.) Use your autoloader (if not already done via Composer autoloader)

2.) Connect the "kalanis\kw_sorter" into your app. When it came necessary you can extends every library to comply your use-case; mainly your processing.

Python Installation

into your "setup.py":

    install_requires=[
        'kw_sorter',
    ]

Python Usage

1.) Connect the "kw_sorter\sorter" into your app. When it came necessary you can extends every library to comply your use-case; mainly your processing.