epaphrodites / epaphrodites
Epaphrodites framework combines simplicity, compatibility with Python, support for multiple databases, and a commitment to open-source principles.
Installs: 283
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- brick/math: ^0.11.0
- chillerlan/php-qrcode: ^4.3
- symfony/console: ^6.2
Requires (Dev)
- php: >=8.2
- guzzlehttp/guzzle: ^7.5
- mpdf/mpdf: ^8.2
- phpmailer/phpmailer: ^6.8
- phpoffice/phpspreadsheet: ^1.28
- phpunit/phpunit: ^10.4
- twig/twig: ^3.5
This package is auto-updated.
Last update: 2025-03-11 02:53:02 UTC
README
👋 About Epaphrodites
Epaphrodites combines simplicity, compatibility with Python
, support for multiple databases
, and a commitment to open-source
principles. It's a promising solution for web programming enthusiasts seeking a flexible, transparent, and evolving development environment. Join this passionate community and explore the opportunities that Epaphrodites can offer for your web projects.
System needs
What you should know before starting the installation. To create a new application, please first ensure that your computer meets the following requirements.
- PHP >= 8.2
- OpenSSL PHP Extension
- ZIP PHP Extension
- gd Extension
- intl PHP Extension
- PDO PHP Extension
- JSON PHP Extension
- XML PHP Extension
- Mbstring PHP Extension
- pdo_sqlite Extension for sqlite3
- Redis Extension (if you use Redis)
- pdo_oci Extension (if you use oracle)
- pdo_mysql Extension (if you use Mysql)
- mongodb Extension (if you use MongoDB)
- pdo_pgsql Extension (if you use PostgreSQL)
- pdo_sqlsrv Extension (if you use sqlServer)
- Python3 installation (If you prefer to include elements of code written in Python)
🚀 Installation
composer create-project epaphrodites/epaphrodites your-project-name
⚠️ Caution : If, after executing the previous command, the installation does not proceed as expected or if you encounter any issues, try running the following command :
cd your-project-name
php epaphrodites install component
⚠️ Recommendation : If you have already installed MongoDB
on your machine and wish to incorporate its usage into your project, please execute the following command:
composer require mongodb/mongodb
Continue the installation :
Execute the following command to update all dependencies :
composer update
To execute "dump-autoload," run the command :
composer dump-autoload
⚙️ First configuration
- Open this file (SetDirectory.php)
bin\config\SetDirectory.php
- Set database accpeted : ('mysql/oracle/pgsql/sqlserver/sqlite/mongodb/redis')
define('_FIRST_DRIVER_', 'sqlite');
- Open this file (Config.ini)
bin\config\config.ini
- Choose your first configuration
// First DB username 1DB_USER = // First DB password 1DB_PASSWORD = // First DB port 1DB_PORT = // First DB name 1DB_DATABASE = "epaphroditesdb.sqlite" // First DB SOCKET support 1DB_SOCKET = false // First DB socket 1DB_SOCKET_PATH = "" // First DB host 1DB_HOST = "127.0.0.1" // First DB DRIVER - accepted : mysql/oracle/pgsql/sqlserver/sqlite/mongodb/redis 1DB_DIVER = "sqlite"
💾 Create database
Run this command to create your database
php heredia create:db epaphroditesdb
💾 update database driver
php heredia update:driver
Install python component
- Note: This command is intended for users who have previously installed Python on their machine. It simplifies the installation of specific Python libraries essential for the optimal functioning of the Epaphrodites framework. Furthermore, you have the freedom, at your level, to integrate other libraries according to the requirements of your projects :
php heredia pip:component
🔥 Run your App
- Note: For SQL databases, you must create your database before running your application. In the case of MongoDB, the system will generate your database based on your configuration.
Run server
cd your_project
php heredia run:server --port=8000
Authentification access
Login : admin Password : admin
😎 Enjoy yourself
📗 Documentation
Authors
Contributing
Contributions are always welcome!!