This package is abandoned and no longer maintained. No replacement package was suggested.

Simple helper methods for Fatfree Framework powered apps

1.2 2020-12-21 18:35 UTC

This package is auto-updated.

Last update: 2022-11-04 15:24:29 UTC


README

Helper classes for Fatfree Framework powered apps.

https://github.com/r3sist/h3

resist 2020 | https://resist.hu | https://github.com/r3sist/h3

This repository is for personal use.

Installation

Via composer: "resist/h3": "dev-master"

Run "tests"

https://tester.nette.org/en/guide

Windows:
.\vendor\bin\tester tests

License

GNU GPLv3

Atom

Simple atom feed parser.

API Documentation

Cache

Simple key-value DB storage for Fatfree Framework powered apps.

API Documentation

Scheme of cache table:

CREATE TABLE IF NOT EXISTS `cache` (
  `name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `modified` int(11) DEFAULT 0,
  PRIMARY KEY (`name`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
COMMIT;

H3

Static helpers for Fatfree Framework.

API Documentation

Json

Json helpers.

API Documentation

Md

Markdown helpers.

API Documentation

Tester

DEPRECATED Fatfree Framework Test helper.

API Documentation

Validator

API Documentation