agregalel/refresh-php

auto reload your web app automatically on save

dev-main 2022-03-26 18:43 UTC

This package is auto-updated.

Last update: 2024-04-26 23:17:48 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"
    ]
}