{"id":43202188,"url":"https://github.com/stfkolev/chaospelt","last_synced_at":"2026-02-01T06:10:49.980Z","repository":{"id":43014408,"uuid":"472332711","full_name":"stfkolev/chaospelt","owner":"stfkolev","description":"Modular, robust wordpress plugin development foundation - freeing you to create without sweating the small things!","archived":false,"fork":false,"pushed_at":"2022-07-06T14:56:03.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-16T01:45:55.710Z","etag":null,"topics":["foundation","framework","php","wordpress","wordpress-plugin","wordpress-plugin-development"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stfkolev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-03-21T12:44:08.000Z","updated_at":"2022-03-21T13:21:15.000Z","dependencies_parsed_at":"2022-09-14T11:41:17.925Z","dependency_job_id":null,"html_url":"https://github.com/stfkolev/chaospelt","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stfkolev/chaospelt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stfkolev%2Fchaospelt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stfkolev%2Fchaospelt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stfkolev%2Fchaospelt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stfkolev%2Fchaospelt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stfkolev","download_url":"https://codeload.github.com/stfkolev/chaospelt/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stfkolev%2Fchaospelt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28970194,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T05:48:53.985Z","status":"ssl_error","status_checked_at":"2026-02-01T05:47:55.855Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["foundation","framework","php","wordpress","wordpress-plugin","wordpress-plugin-development"],"created_at":"2026-02-01T06:10:48.566Z","updated_at":"2026-02-01T06:10:49.974Z","avatar_url":"https://github.com/stfkolev.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Chaospelt 0.1\n\n[![Latest Stable Version](https://img.shields.io/packagist/v/stfkolev/chaospelt.svg?style=flat-square)](https://packagist.org/packages/stfkolev/chaospelt) \n[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/stfkolev/chaospelt/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/stfkolev/chaospelt/?branch=master)\n[![Build Status](https://scrutinizer-ci.com/g/stfkolev/chaospelt/badges/build.png?b=master)](https://scrutinizer-ci.com/g/stfkolev/chaospelt/build-status/master)\n[![License](https://img.shields.io/badge/license-BSD_3_Clause-brightgreen.svg?style=flat-square)](LICENSE) \n[![Code Coverage](https://scrutinizer-ci.com/g/stfkolev/chaospelt/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/stfkolev/chaospelt/?branch=master)\n[![StyleCI](https://github.styleci.io/repos/472332711/shield?branch=master)](https://github.styleci.io/repos/472332711?branch=master)\n\n## Purpose\n\nThis a \"foundation\" package. Its purpose is to help people develop Wordpress plugins quicker and easier in a more modern way. It provides some features that provide cleaner code structuring and overall quality.\n\nThis package can prevent some headaches, but cannot replace bad code habits, you'll still need a real . \n\n## Features\n\n* Easier to use hooks declarations\n* Code separation into modules\n* PSR-4 Autoloading\n\n\n## Installation\n\n### Compatible with\n\n- PHP 7.4 and above\n- Wordpress 5.4 and above\n\n### Installing\n\nCreate an empty composer project and require the Chaospelt package using [Composer](https://getcomposer.org/doc/01-basic-usage.md):\n\n```\ncomposer require stfkolev/chaospelt\n```\n\nThen, create a file with the main plugin class and extend the Chaospelt\\Kernel\\Plugin class:\n\n```php\n\u003c?php\n\nnamespace Lab;\n\nuse Chaospelt\\Kernel\\Plugin;\n\nclass LabPlugin extends Plugin {\n    public function __construct() {\n        parent::__construct(PLUGIN_FILE);\n    }\n}\n```\n**Note:** Be sure to follow the [Wordpress Development Guide](https://developer.wordpress.org/plugins/intro/) and pass the plugin file's path into the parent constructor. It is important, as it uses the path for the auto-registration of the hooks.\n**Note 2:** You can create your folder structure however you want. This is just a sample code onto how to use the foundation.\n\n\n## TODO\n\n- Database abstraction\n- Validator\n- Requests Handler\n- Routing\n- Tests, tests, tests.\n\n## License\n\nChaospelt is licensed under the BSD 3-Clause License - see the `LICENSE` file for details\n\n## Contributing\n\nPull requests and issues are more than welcome.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstfkolev%2Fchaospelt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstfkolev%2Fchaospelt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstfkolev%2Fchaospelt/lists"}