https://github.com/myerscode/utilities-files
A simple file helper utility
https://github.com/myerscode/utilities-files
Last synced: 2 days ago
JSON representation
A simple file helper utility
- Host: GitHub
- URL: https://github.com/myerscode/utilities-files
- Owner: myerscode
- License: mit
- Created: 2021-01-25T11:19:39.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-02-02T21:00:49.000Z (about 1 year ago)
- Last Synced: 2025-09-11T03:10:15.136Z (5 months ago)
- Language: PHP
- Size: 52.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Files Utility
> A PHP utility class that helps with common file tasks
[](https://packagist.org/packages/myerscode/utilities-files)
[](https://packagist.org/packages/myerscode/utilities-files)
[](https://packagist.org/packages/myerscode/utilities-files)

## Install
You can install this package via composer:
``` bash
composer require myerscode/utilities-files
```
## Usage
Create an instance of the fluent interface by creating a new instance either via `new Utility($val)` or `Utility::make($val)`
``` php
$fileHelper = new Utility('./src/file.php');
$fileHelper = Utility::make('./src/file.php');
```
## Methods
See all available methods in the [documentation](docs/methods.md).
## Issues
Bug reports and feature requests can be submitted on the [Github Issue Tracker](https://github.com/myerscode/utilities-files/issues).
## Contributing
We are very happy to receive pull requests to add functionality or fixes. Please read the Myerscode [contributing](https://github.com/myerscode/docs/blob/main/CONTRIBUTING.md) guide for information.
## License
The MIT License (MIT). Please see [License File](LICENSE) for more information.