{"id":15030509,"url":"https://github.com/projector22/lourie-basic-framework","last_synced_at":"2026-01-19T14:33:01.216Z","repository":{"id":57839114,"uuid":"528346981","full_name":"projector22/lourie-basic-framework","owner":"projector22","description":"A simple framework for spinning up web apps quickly.","archived":false,"fork":false,"pushed_at":"2023-05-26T20:27:31.000Z","size":1210,"stargazers_count":1,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-10T00:48:38.424Z","etag":null,"topics":["framework-php","php","php81"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/projector22.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-24T09:09:41.000Z","updated_at":"2023-05-20T00:23:22.000Z","dependencies_parsed_at":"2024-09-28T20:41:08.417Z","dependency_job_id":"3a43f1e7-21db-44e4-aaf1-3ed2927846dc","html_url":"https://github.com/projector22/lourie-basic-framework","commit_stats":{"total_commits":397,"total_committers":3,"mean_commits":"132.33333333333334","dds":"0.012594458438287104","last_synced_commit":"444daa8c7cb875b09aff279c9f7024533c348ad4"},"previous_names":[],"tags_count":46,"template":false,"template_full_name":null,"purl":"pkg:github/projector22/lourie-basic-framework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projector22%2Flourie-basic-framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projector22%2Flourie-basic-framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projector22%2Flourie-basic-framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projector22%2Flourie-basic-framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/projector22","download_url":"https://codeload.github.com/projector22/lourie-basic-framework/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projector22%2Flourie-basic-framework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28571792,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T12:50:50.164Z","status":"ssl_error","status_checked_at":"2026-01-19T12:50:42.704Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["framework-php","php","php81"],"created_at":"2024-09-24T20:13:33.349Z","updated_at":"2026-01-19T14:33:01.190Z","avatar_url":"https://github.com/projector22.png","language":"PHP","readme":"# Lourie Basic Framework\n\n![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/projector22/lourie-basic-framework)\n\nThis project will function as a basic framework and template for future webapps. Versions in the code generally refer to the release version on [Lourie Registration System](https://gitlab.com/projector22/lourie-registration-system), for which they were developed. Framework versions are marked `LBF`. For example:\n\n```php\n/**\n * @since   LRS 3.25.0  \u003c- LRS version\n * @since   LBF 0.1.0   \u003c- LBF version\n */\n```\n\n## Note\n\nThis app is in an BETA state. Use on production at your own risk.\n\n## How to Use\n\nInstall and configure [composer](https://getcomposer.org/) for your app if you haven't already, then run the following command:\n\n```sh\ncomposer require projector22/lourie-basic-framework\n```\n\nThen you can simply begin calling the tools you need. For example:\n\n```php\n\u003c?php\n\nuse LBF\\HTML\\HTML;\n\nHTML::div( ['class' =\u003e 'example'] );\n// ... Other code\nHTML::close_div();\n```\n\n## Features\n\n- Auth Tools.\n- Dababase Tools.\n- Dev Tools.\n- A simple Markdown interface. Abstraction from [Parsedown](https://github.com/erusev/parsedown)\n- Error handling pages.\n- An autoloader class for performing autoloading tasks.\n- Generic but useful functions including:\n  - various sting handling tools.\n  - token parsing tools.\n  - etc. There really are quite a lot. Please see `src/Functions/functions.php` for details.\n- HTML Generation:\n  - Simple HTML elements such as `\u003cdiv\u003e`, `\u003cspan\u003e` or `\u003ch1\u003e` etc.\n  - Buttons\n  - HTML shortcuts, for example, to generating line breaks.\n  - Form elements.\n  - Javascript shortcuts.\n  - Generating Tables.\n  - Generating terminal like feedback.\n- Environment loader.\n- CLI Tools.\n- Cron Tools - _Very broken, do not use_.\n- CSV reading and writing.\n- Downloader handling.\n- Excel files reading and writing.\n- File system handler tool.\n- JSON handler tool.\n- LDP handler tool.\n- Email interface tool. Abstraction from [PHPMailer](https://github.com/PHPMailer/PHPMailer).\n- PDF generation tool. Abstraction from [TCPDF](https://github.com/tecnickcom/tcpdf).\n- A simple HTML spreadsheet creation tool.\n- An Upload handler.\n- A post update tool called `Trek`.\n\n## Attribution\n\n### Lead Designer\n\n- Gareth Palmer ([Github](https://github.com/projector22), [Gitlab](https://gitlab.com/projector22))\n\n### Open Source\n\nBesides my own, this framework use the following open source tools with grateful thanks.\n\n- [parsedown](https://github.com/erusev/parsedown)\n- [tcpdf](https://github.com/tecnickcom/tcpdf)\n- [php-feather](https://github.com/Pixelrobin/php-feather)\n- [phpmailer](https://github.com/tecnickcom/tcpdf)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojector22%2Flourie-basic-framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprojector22%2Flourie-basic-framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojector22%2Flourie-basic-framework/lists"}