├── composer.json ├── phpstan-baseline.neon ├── pint.json └── src ├── Document.php ├── FileNotFoundException.php ├── InvalidContentException.php ├── Reader.php ├── Xml ├── Concerns │ └── SupportMultiLevel.php ├── Definitions │ └── MultiLevel.php ├── Document.php └── Reader.php └── helpers.php /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/phpstan-baseline.neon -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/pint.json -------------------------------------------------------------------------------- /src/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/src/Document.php -------------------------------------------------------------------------------- /src/FileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/src/FileNotFoundException.php -------------------------------------------------------------------------------- /src/InvalidContentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/src/InvalidContentException.php -------------------------------------------------------------------------------- /src/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/src/Reader.php -------------------------------------------------------------------------------- /src/Xml/Concerns/SupportMultiLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/src/Xml/Concerns/SupportMultiLevel.php -------------------------------------------------------------------------------- /src/Xml/Definitions/MultiLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/src/Xml/Definitions/MultiLevel.php -------------------------------------------------------------------------------- /src/Xml/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/src/Xml/Document.php -------------------------------------------------------------------------------- /src/Xml/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/src/Xml/Reader.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/parser/HEAD/src/helpers.php --------------------------------------------------------------------------------