agregalel / refresh-php
auto reload your web app automatically on save
dev-main
2022-03-26 18:43 UTC
Requires
- php: >=5.5.0
This package is auto-updated.
Last update: 2026-03-27 03:58:57 UTC
README
Auto reload your web app automatically on save
Getting Started
$ composer require agregalel/refresh-php:dev-main
index.php file
use agregalel\refresh_php\RefreshPhp; /** * Init Refresh */ RefreshPhp::init();
You can also add a phprefresh.json configuration file to ignore files and directories
{
"ignore": [
"vendor",
"dir_ignore",
"file_ignore.php"
]
}