alxgarshin / fraym
The Fraym PHP framework
v0.9.962
2026-04-24 01:27 UTC
Requires
- php: >=8.4.0
- ext-ctype: *
- ext-curl: *
- ext-gd: *
- ext-iconv: *
- ext-imagick: *
- ext-openssl: *
- ext-pdo: *
- phpmailer/phpmailer: *
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.64
- phpdocumentor/reflection-docblock: ^5.3
- phpstan/phpdoc-parser: ^1.22.1
- phpstan/phpstan: ^2.1
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2026-06-05 15:14:10 UTC
README
PHP framework that brings everything you need to develop a not-so-small web-project including best practices for frontend solutions.
Requirements
- PHP 8.4
- PostgreSQL 13 (or MySQL 5.7)
Installation
Using composer:
composer require alxgarshin/fraym
After that just use:
./vendor/bin/console install
Setup DB connection in .env.dev.
And do a basic migration:
docker compose exec app ./vendor/bin/console database:migrate --env=dev
Your project is ready to go!