Minimalist PHP framework
  • CSS 49.5%
  • PHP 33.4%
  • JavaScript 14.9%
  • Smarty 2.2%
Find a file
2026-04-13 19:38:50 +02:00
docs doc: update configuration doc 2026-03-13 13:25:38 +01:00
email_templates Email: fix handling default values for templates directory & cache directory 2026-03-17 13:05:02 +01:00
example Introduce new pre-commit hook : PHP plugin for prettier 2026-04-13 19:38:50 +02:00
locales Introduce new pre-commit hook : PHP plugin for prettier 2026-04-13 19:38:50 +02:00
skel Introduce new pre-commit hook : PHP plugin for prettier 2026-04-13 19:38:50 +02:00
src Introduce new pre-commit hook : PHP plugin for prettier 2026-04-13 19:38:50 +02:00
static Introduce new pre-commit hook : PHP plugin for prettier 2026-04-13 19:38:50 +02:00
templates Default template: show login button only if auth is enabled 2026-03-14 16:20:21 +01:00
.codespell-exclusions Improve .codespell-exclusions and add it in new project skel 2026-03-17 13:36:20 +01:00
.editorconfig Introduce new pre-commit hook : PHP plugin for prettier 2026-04-13 19:38:50 +02:00
.gitignore CI/pre-commit: ignore some cached stuff 2026-03-17 10:51:39 +01:00
.phplint.yml Add overtrue/phplint dev dependency and configure it 2022-04-24 18:30:13 +02:00
.pre-commit-config.yaml Introduce new pre-commit hook : PHP plugin for prettier 2026-04-13 19:38:50 +02:00
.prettierignore Introduce new pre-commit hooks and code cleaning 2024-01-23 19:23:10 +01:00
.prettierrc.json Introduce new pre-commit hook : PHP plugin for prettier 2026-04-13 19:38:50 +02:00
.yamllint.yaml Improve new project skel 2026-03-17 13:36:20 +01:00
composer.json Sentry: add sentry.ignore_patterns configuration parameter 2026-03-13 13:25:38 +01:00
eesyphp Introduce new pre-commit hook : PHP plugin for prettier 2026-04-13 19:38:50 +02:00
phpstan.neon Adjust example to use DBObject and CSV export 2024-02-18 18:27:59 +01:00
README.md Introduce new pre-commit hooks and code cleaning 2024-01-23 19:23:10 +01:00
setup.cfg Introduce new pre-commit hooks and code cleaning 2024-01-23 19:23:10 +01:00

EesyPHP

EesyPHP is an easy and minimalist PHP framework for web application. It's currently provided with a minimalist demo application that permit to manage items stored in a database.

Features

This project aim to provide all main necessary elements to build a web application without starting with nothing. It based on great open source libraries for that and manage their integration together and their initialization to leave you to use them without handling this boring part.

Main features are :

  • a configuration manager actually based on the yaml file format
  • an URL routing system with a syntax based on regex
  • a templating solution based on Smarty
  • an easily expandable authentication system with native HTML form, HTTP and CAS SSO support (based on phpCAS), database and LDAP users backends and a light user object abstraction solution with expandable attributes
  • a logging system with PHP errors & exceptions handling
  • a light database integration based on FluentPDO
  • a Sentry integration
  • a PHP session manager (with expiration and max life handling)
  • a mailer solution to forge and send emails
  • an hook system to easily trigger and register hooks on events
  • a static files serving system with an overloadable multiple directories support
  • an internationalization system based on Gettext with Smarty templates (based on Smarty Gettext) and Javascript (based on Babel JS) integrations
  • a command line manager to easily implement CLI tools
  • collection of helpers to check, clean, cast, format (etc) values

All this features can be or not enabled and their initialization are manage by an application abstraction class.

Installation / configuration

Please see dedicated files in docs directory.

Copyright (c) 2020 Benjamin Renard brenard@zionetrix.net

License

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.