Skip to content

Latest commit

 

History

History
executable file
·
70 lines (55 loc) · 2.03 KB

CHANGELOG.md

File metadata and controls

executable file
·
70 lines (55 loc) · 2.03 KB

5.0.1 (2022-09-14)

  • Fix issue with method get for files.

5.0.0 (2022-07-03)

  • All Helpers functions are placed into the Glowy/Filesystem namespace.
  • Use union types.

4.0.0 (2021-07-02)

  • Moving to PHP 8.1

3.2.0 (2022-06-06)

  • Added new method isEmpty for files.
  • Added new method isEmpty for directories.

3.1.0 (2022-06-03)

  • Added new method directories.
  • Added new method files.

3.0.0 (2021-12-23)

  • Released under Glowy PHP Organization
  • Add PHP 8.1 support
  • Updated dependencies.

2.2.0 (2021-09-28)

  • add replace method for File.
  • add sharedGet method for File.
  • add ability to get method for File.

2.1.0 (2021-08-06)

  • add ensureExists method for Directory.

2.0.0 (2021-02-19)

  • Move to PHP 7.4
  • Fix tests
  • Code refactoring

1.1.0 (2020-12-05)

  • add ability to extend Filesystem class with Macros.

    use Glowy\Filesystem\Filesystem;
    use Glowy\Macroable\Macroable;
    
    Filesystem::macro('countFiles', function($path) {
        return count(iterator_to_array($this->find()->in($path)->files(), false));
    });
    
    $filesytem = new Filesystem();
    
    echo $filesytem->countFiles('/directory');
  • improve tests for directory create() method.

1.0.1 (2020-10-17)

  • fix Directory copy() method.

1.0.0 (2020-10-15)

  • Initial release