{"id":17846455,"url":"https://github.com/technicalguru/php-webapp","last_synced_at":"2025-09-12T02:41:46.473Z","repository":{"id":53606773,"uuid":"319641000","full_name":"technicalguru/php-webapp","owner":"technicalguru","description":"A ready-to-use framework to write web applications in PHP","archived":false,"fork":false,"pushed_at":"2025-05-30T06:17:10.000Z","size":3417,"stargazers_count":4,"open_issues_count":0,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-12T20:11:52.192Z","etag":null,"topics":["bootstrap4","php-framework","php7","web-application","webapp","website"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/technicalguru.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2020-12-08T13:05:11.000Z","updated_at":"2025-05-30T06:17:13.000Z","dependencies_parsed_at":"2024-01-16T17:55:01.513Z","dependency_job_id":"28cac629-d93e-48ea-8fdf-88ae7f40e288","html_url":"https://github.com/technicalguru/php-webapp","commit_stats":{"total_commits":379,"total_committers":1,"mean_commits":379.0,"dds":0.0,"last_synced_commit":"04f18323488c6282cc89fea3ddba61553ff33f16"},"previous_names":[],"tags_count":103,"template":false,"template_full_name":null,"purl":"pkg:github/technicalguru/php-webapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technicalguru%2Fphp-webapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technicalguru%2Fphp-webapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technicalguru%2Fphp-webapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technicalguru%2Fphp-webapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/technicalguru","download_url":"https://codeload.github.com/technicalguru/php-webapp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technicalguru%2Fphp-webapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274744062,"owners_count":25341136,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-12T02:00:09.324Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bootstrap4","php-framework","php7","web-application","webapp","website"],"created_at":"2024-10-27T21:39:59.283Z","updated_at":"2025-09-12T02:41:46.424Z","avatar_url":"https://github.com/technicalguru.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# technicalguru/webapp\nThis is a PHP framework for the easy-to-start development of a website. It addresses a few basic needs that every developer\nfaces when he wants to start a new website. This framework addresses:\n\n* Authentication and Authorization\n* Localization\n* Flexible design, theme and layout of websites and individual pages\n* Database Access (mostly MariaDB or MySQL)\n* Data Model abstract layer to avoid any SQL writing\n* Service layer support for business tasks\n* REST service support by special page types\n* Flexible URL routing (mapping the URL path to a specific Page class)\n* Logging\n* Email Sending\n* Application Configuration\n* Session Handling and Persistence\n\nMost of them are not mandatory to use. The configuration allows to switch off many of them.\n\nAs I currently use this framework for my private projects only, there is not much documentation available yet. Feel free to ask\nquestions or checkout also the [php-webapp-template](https://github.com/technicalguru/php-webapp-template) repository which\nprovides starter templates.\n\nThe framework is mostly based on other PHP modules that are documented quite good. So you can consult them in order\nto understand some of the features.\n\nRemember: *technicalguru/webapp* is a framework to ease and speed up your development of a new website. It cannot solve all your problems but is a good starting point.\n\n# License\nThis project is licensed under [GNU LGPL 3.0](LICENSE.md). \n\n# Installation\n\n## By Composer\n\n```sh\ncomposer require technicalguru/webapp\n```\n\n## By Package Download\nYou can download the source code packages from [GitHub Release Page](https://github.com/technicalguru/php-webapp/releases)\n\n# Start a WebApp\nThe best way is to use a template from [php-webapp-template](https://github.com/technicalguru/php-webapp-template) repository\nbut you can also start from scratch. You will need the configuration from [application-example.php](application-example.php)\nand the main [index-example.php](index-example.php) file in the root of your web app. Notice that your web server needs to\nroute all requests to the `index.php` file. You could achieve this with this snippet:\n\n```\n    \u003cIfModule mod_rewrite.c\u003e\n        Options -MultiViews\n\n        RewriteEngine On\n        RewriteCond %{REQUEST_FILENAME} !-f\n        RewriteCond %{REQUEST_FILENAME} !-d\n        RewriteRule ^ index.php [QSA,L]\n    \u003c/IfModule\u003e\n```\n\nin your `.htaccess` file\n\n# Additional Remarks\nVersion 1.2 re-structured the rendering of form elements. The most visible change is that it requires you to create forms now with:\n\n```\n$form1 = new HorizontalForm($parant, 'my-form');\n$form2 = new VerticalForm($parant, 'my-form');\n$form3 = new InlineForm($parant, 'my-form');\n$form4 = new GridForm($parant, 'my-form');\n```\n\nFurthermore, you shall verify the rendering of your forms because Javascript or layouts might be affected by the changes.\n\n# Contribution\nReport a bug, request an enhancement or pull request at the [GitHub Issue Tracker](https://github.com/technicalguru/php-webapp/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechnicalguru%2Fphp-webapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechnicalguru%2Fphp-webapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechnicalguru%2Fphp-webapp/lists"}