├── .phpunit-watcher.yml ├── .styleci.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config ├── di.php └── params.php ├── infection.json.dist ├── psalm-8.3.xml ├── psalm.xml ├── rector.php └── src ├── FileRotator.php ├── FileRotatorInterface.php └── FileTarget.php /.phpunit-watcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/.phpunit-watcher.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/composer.json -------------------------------------------------------------------------------- /config/di.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/config/di.php -------------------------------------------------------------------------------- /config/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/config/params.php -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/infection.json.dist -------------------------------------------------------------------------------- /psalm-8.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/psalm-8.3.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/psalm.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/rector.php -------------------------------------------------------------------------------- /src/FileRotator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/src/FileRotator.php -------------------------------------------------------------------------------- /src/FileRotatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/src/FileRotatorInterface.php -------------------------------------------------------------------------------- /src/FileTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/log-target-file/HEAD/src/FileTarget.php --------------------------------------------------------------------------------