├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── docs ├── CHANGELOG.md ├── SEMVER.md └── TODO.md └── src ├── CheckSum.php ├── Exceptions ├── InvalidExpressionToParseException.php ├── InvalidIntegerToConvertException.php └── RfcException.php ├── Rfc.php ├── RfcFaker.php ├── RfcIntConverter.php └── RfcParser.php /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/composer.json -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/SEMVER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/docs/SEMVER.md -------------------------------------------------------------------------------- /docs/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/docs/TODO.md -------------------------------------------------------------------------------- /src/CheckSum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/src/CheckSum.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidExpressionToParseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/src/Exceptions/InvalidExpressionToParseException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidIntegerToConvertException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/src/Exceptions/InvalidIntegerToConvertException.php -------------------------------------------------------------------------------- /src/Exceptions/RfcException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/src/Exceptions/RfcException.php -------------------------------------------------------------------------------- /src/Rfc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/src/Rfc.php -------------------------------------------------------------------------------- /src/RfcFaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/src/RfcFaker.php -------------------------------------------------------------------------------- /src/RfcIntConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/src/RfcIntConverter.php -------------------------------------------------------------------------------- /src/RfcParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpcfdi/rfc/HEAD/src/RfcParser.php --------------------------------------------------------------------------------