cjrasmussen/static-file-versioning

Lightweight class that assists with versioning static asset files

1.0.0 2025-03-19 17:38 UTC

This package is auto-updated.

Last update: 2025-03-19 17:43:58 UTC


README

Lightweight class that assists with versioning static asset files. Designed to be integrated with a CI/CD pipeline.

Usage

Setting version

Ideally this is the part that would be integrated into a CI/CD pipeline.

use cjrasmussen\StaticFileVersioning\FileVersion;

$fileVersion = new FileVersion('/path/to/config/file.json');

$fileVersion->set('styles.css', '-v1234');
$fileVersion->save();

Getting version

Likely used in building a view for a web interface.

use cjrasmussen\StaticFileVersioning\FileVersion;

$fileVersion = new FileVersion('/path/to/config/file.json');

echo 'styles' . $fileVersion->get('styles.css') . '.css';
// output: styles-v1234.css

Installation

Simply add a dependency on cjrasmussen/static-file-versioning to your composer.json file if you use Composer to manage the dependencies of your project:

composer require cjrasmussen/static-file-versioning

Although it's recommended to use Composer, you can actually include the file(s) any way you want.

License

StaticFileVersioning is MIT licensed.