├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── AbstractLineParser.php ├── AccessLogParser.php ├── ErrorLogParser.php ├── Exception │ ├── NoMatchesException.php │ └── ParserException.php ├── KeyBag.php ├── LineParserInterface.php ├── LogIterator.php └── TimeFormatTrait.php └── tests ├── AbstractLineParserTest.php ├── AccessLogParserTest.php ├── ErrorLogParserTest.php ├── Fixtures ├── access.log └── access_compressed.gz ├── KeyBagTest.php ├── LogIteratorTest.php └── TimeFormatTraitTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AbstractLineParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/src/AbstractLineParser.php -------------------------------------------------------------------------------- /src/AccessLogParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/src/AccessLogParser.php -------------------------------------------------------------------------------- /src/ErrorLogParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/src/ErrorLogParser.php -------------------------------------------------------------------------------- /src/Exception/NoMatchesException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/src/Exception/NoMatchesException.php -------------------------------------------------------------------------------- /src/Exception/ParserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/src/Exception/ParserException.php -------------------------------------------------------------------------------- /src/KeyBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/src/KeyBag.php -------------------------------------------------------------------------------- /src/LineParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/src/LineParserInterface.php -------------------------------------------------------------------------------- /src/LogIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/src/LogIterator.php -------------------------------------------------------------------------------- /src/TimeFormatTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/src/TimeFormatTrait.php -------------------------------------------------------------------------------- /tests/AbstractLineParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/tests/AbstractLineParserTest.php -------------------------------------------------------------------------------- /tests/AccessLogParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/tests/AccessLogParserTest.php -------------------------------------------------------------------------------- /tests/ErrorLogParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/tests/ErrorLogParserTest.php -------------------------------------------------------------------------------- /tests/Fixtures/access.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/tests/Fixtures/access.log -------------------------------------------------------------------------------- /tests/Fixtures/access_compressed.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/tests/Fixtures/access_compressed.gz -------------------------------------------------------------------------------- /tests/KeyBagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/tests/KeyBagTest.php -------------------------------------------------------------------------------- /tests/LogIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/tests/LogIteratorTest.php -------------------------------------------------------------------------------- /tests/TimeFormatTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvar/apache2-log-parser/HEAD/tests/TimeFormatTraitTest.php --------------------------------------------------------------------------------