├── LICENSE ├── README.md ├── bin └── formatphp ├── composer.json └── src ├── Config.php ├── ConfigInterface.php ├── Console ├── Application.php └── Command │ ├── AbstractCommand.php │ ├── ExtractCommand.php │ └── PseudoLocaleCommand.php ├── Descriptor.php ├── DescriptorCollection.php ├── DescriptorInterface.php ├── Exception ├── FormatPHPExceptionInterface.php ├── ImproperContextException.php ├── InvalidArgumentException.php ├── InvalidMessageShapeException.php ├── LocaleNotFoundException.php ├── MessageNotFoundException.php ├── UnableToFormatDateTimeException.php ├── UnableToFormatDisplayNameException.php ├── UnableToFormatMessageException.php ├── UnableToFormatNumberException.php ├── UnableToFormatStringException.php ├── UnableToGenerateMessageIdException.php ├── UnableToParseDescriptorException.php ├── UnableToParsePragmaException.php ├── UnableToProcessFileException.php └── UnableToWriteFileException.php ├── ExtendedDescriptorInterface.php ├── Extractor ├── IdInterpolator.php ├── IdInterpolatorOptions.php ├── MessageExtractor.php ├── MessageExtractorOptions.php └── Parser │ ├── Descriptor │ ├── DescriptorCollectorVisitor.php │ ├── PhpParser.php │ └── PragmaCollectorVisitor.php │ ├── DescriptorParserInterface.php │ ├── ParserError.php │ └── ParserErrorCollection.php ├── Format ├── Format.php ├── Reader │ ├── ChromeReader.php │ ├── CrowdinReader.php │ ├── FormatPHPReader.php │ ├── SimpleReader.php │ └── SmartlingReader.php ├── ReaderInterface.php ├── Writer │ ├── ChromeWriter.php │ ├── CrowdinWriter.php │ ├── FormatPHPWriter.php │ ├── SimpleWriter.php │ └── SmartlingWriter.php ├── WriterInterface.php └── WriterOptions.php ├── FormatPHP.php ├── FormatterInterface.php ├── Icu └── MessageFormat │ ├── Manipulator.php │ ├── Parser.php │ ├── Parser │ ├── CodePoint.php │ ├── DateTimeSkeletonParser.php │ ├── Error.php │ ├── Exception │ │ ├── IllegalParserUsageException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidMessageException.php │ │ ├── InvalidNotationException.php │ │ ├── InvalidOffsetException.php │ │ ├── InvalidSkeletonOption.php │ │ ├── InvalidUtf8CodeBoundaryException.php │ │ ├── InvalidUtf8CodePointException.php │ │ ├── ParserExceptionInterface.php │ │ ├── UnableToParseMessageException.php │ │ └── UnsupportedOptionException.php │ ├── NumberSkeletonParser.php │ ├── Options.php │ ├── Result.php │ ├── Type │ │ ├── AbstractElement.php │ │ ├── AbstractSimpleFormatElement.php │ │ ├── AbstractSkeleton.php │ │ ├── ArgumentElement.php │ │ ├── DateElement.php │ │ ├── DateTimeFormatOptions.php │ │ ├── DateTimeSkeleton.php │ │ ├── DeepCloner.php │ │ ├── ElementCollection.php │ │ ├── ElementInterface.php │ │ ├── ElementType.php │ │ ├── LiteralElement.php │ │ ├── Location.php │ │ ├── LocationDetails.php │ │ ├── NumberElement.php │ │ ├── NumberFormatOptions.php │ │ ├── NumberSkeleton.php │ │ ├── NumberSkeletonToken.php │ │ ├── NumberSkeletonTokenCollection.php │ │ ├── OptionSerializer.php │ │ ├── PluralElement.php │ │ ├── PluralOrSelectOption.php │ │ ├── PoundElement.php │ │ ├── SelectElement.php │ │ ├── SkeletonInterface.php │ │ ├── SkeletonType.php │ │ ├── TagElement.php │ │ └── TimeElement.php │ └── Util │ │ ├── CodePointHelper.php │ │ ├── CodePointMatcherInterface.php │ │ ├── IsAlpha.php │ │ ├── IsPatternSyntax.php │ │ ├── IsPotentialElementNameChar.php │ │ └── IsWhiteSpace.php │ ├── Printer.php │ └── Validator.php ├── Intl ├── DateTimeFormat.php ├── DateTimeFormatInterface.php ├── DateTimeFormatOptions.php ├── DisplayNames.php ├── DisplayNamesInterface.php ├── DisplayNamesOptions.php ├── Locale.php ├── LocaleInterface.php ├── LocaleOptions.php ├── MessageFormat.php ├── MessageFormatInterface.php ├── NumberFormat.php ├── NumberFormatInterface.php └── NumberFormatOptions.php ├── Message.php ├── MessageCollection.php ├── MessageInterface.php ├── MessageLoader.php ├── PseudoLocale ├── Converter.php ├── ConverterOptions.php ├── Locale │ ├── AbstractLocale.php │ ├── EnXa.php │ ├── EnXb.php │ ├── XxAc.php │ ├── XxHa.php │ ├── XxLs.php │ └── XxZa.php ├── PseudoLocale.php └── PseudoLocaleInterface.php └── Util ├── DescriptorIdBuilder.php ├── FileSystemHelper.php ├── FormatHelper.php ├── Globber.php ├── MessageCleaner.php └── MessageRetriever.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/README.md -------------------------------------------------------------------------------- /bin/formatphp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/bin/formatphp -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/composer.json -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/ConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/ConfigInterface.php -------------------------------------------------------------------------------- /src/Console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Console/Application.php -------------------------------------------------------------------------------- /src/Console/Command/AbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Console/Command/AbstractCommand.php -------------------------------------------------------------------------------- /src/Console/Command/ExtractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Console/Command/ExtractCommand.php -------------------------------------------------------------------------------- /src/Console/Command/PseudoLocaleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Console/Command/PseudoLocaleCommand.php -------------------------------------------------------------------------------- /src/Descriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Descriptor.php -------------------------------------------------------------------------------- /src/DescriptorCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/DescriptorCollection.php -------------------------------------------------------------------------------- /src/DescriptorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/DescriptorInterface.php -------------------------------------------------------------------------------- /src/Exception/FormatPHPExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/FormatPHPExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/ImproperContextException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/ImproperContextException.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/InvalidMessageShapeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/InvalidMessageShapeException.php -------------------------------------------------------------------------------- /src/Exception/LocaleNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/LocaleNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/MessageNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/MessageNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/UnableToFormatDateTimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/UnableToFormatDateTimeException.php -------------------------------------------------------------------------------- /src/Exception/UnableToFormatDisplayNameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/UnableToFormatDisplayNameException.php -------------------------------------------------------------------------------- /src/Exception/UnableToFormatMessageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/UnableToFormatMessageException.php -------------------------------------------------------------------------------- /src/Exception/UnableToFormatNumberException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/UnableToFormatNumberException.php -------------------------------------------------------------------------------- /src/Exception/UnableToFormatStringException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/UnableToFormatStringException.php -------------------------------------------------------------------------------- /src/Exception/UnableToGenerateMessageIdException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/UnableToGenerateMessageIdException.php -------------------------------------------------------------------------------- /src/Exception/UnableToParseDescriptorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/UnableToParseDescriptorException.php -------------------------------------------------------------------------------- /src/Exception/UnableToParsePragmaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/UnableToParsePragmaException.php -------------------------------------------------------------------------------- /src/Exception/UnableToProcessFileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/UnableToProcessFileException.php -------------------------------------------------------------------------------- /src/Exception/UnableToWriteFileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Exception/UnableToWriteFileException.php -------------------------------------------------------------------------------- /src/ExtendedDescriptorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/ExtendedDescriptorInterface.php -------------------------------------------------------------------------------- /src/Extractor/IdInterpolator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Extractor/IdInterpolator.php -------------------------------------------------------------------------------- /src/Extractor/IdInterpolatorOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Extractor/IdInterpolatorOptions.php -------------------------------------------------------------------------------- /src/Extractor/MessageExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Extractor/MessageExtractor.php -------------------------------------------------------------------------------- /src/Extractor/MessageExtractorOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Extractor/MessageExtractorOptions.php -------------------------------------------------------------------------------- /src/Extractor/Parser/Descriptor/DescriptorCollectorVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Extractor/Parser/Descriptor/DescriptorCollectorVisitor.php -------------------------------------------------------------------------------- /src/Extractor/Parser/Descriptor/PhpParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Extractor/Parser/Descriptor/PhpParser.php -------------------------------------------------------------------------------- /src/Extractor/Parser/Descriptor/PragmaCollectorVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Extractor/Parser/Descriptor/PragmaCollectorVisitor.php -------------------------------------------------------------------------------- /src/Extractor/Parser/DescriptorParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Extractor/Parser/DescriptorParserInterface.php -------------------------------------------------------------------------------- /src/Extractor/Parser/ParserError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Extractor/Parser/ParserError.php -------------------------------------------------------------------------------- /src/Extractor/Parser/ParserErrorCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Extractor/Parser/ParserErrorCollection.php -------------------------------------------------------------------------------- /src/Format/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/Format.php -------------------------------------------------------------------------------- /src/Format/Reader/ChromeReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/Reader/ChromeReader.php -------------------------------------------------------------------------------- /src/Format/Reader/CrowdinReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/Reader/CrowdinReader.php -------------------------------------------------------------------------------- /src/Format/Reader/FormatPHPReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/Reader/FormatPHPReader.php -------------------------------------------------------------------------------- /src/Format/Reader/SimpleReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/Reader/SimpleReader.php -------------------------------------------------------------------------------- /src/Format/Reader/SmartlingReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/Reader/SmartlingReader.php -------------------------------------------------------------------------------- /src/Format/ReaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/ReaderInterface.php -------------------------------------------------------------------------------- /src/Format/Writer/ChromeWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/Writer/ChromeWriter.php -------------------------------------------------------------------------------- /src/Format/Writer/CrowdinWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/Writer/CrowdinWriter.php -------------------------------------------------------------------------------- /src/Format/Writer/FormatPHPWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/Writer/FormatPHPWriter.php -------------------------------------------------------------------------------- /src/Format/Writer/SimpleWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/Writer/SimpleWriter.php -------------------------------------------------------------------------------- /src/Format/Writer/SmartlingWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/Writer/SmartlingWriter.php -------------------------------------------------------------------------------- /src/Format/WriterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/WriterInterface.php -------------------------------------------------------------------------------- /src/Format/WriterOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Format/WriterOptions.php -------------------------------------------------------------------------------- /src/FormatPHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/FormatPHP.php -------------------------------------------------------------------------------- /src/FormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/FormatterInterface.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Manipulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Manipulator.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/CodePoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/CodePoint.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/DateTimeSkeletonParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/DateTimeSkeletonParser.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Error.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Exception/IllegalParserUsageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Exception/IllegalParserUsageException.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Exception/InvalidMessageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Exception/InvalidMessageException.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Exception/InvalidNotationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Exception/InvalidNotationException.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Exception/InvalidOffsetException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Exception/InvalidOffsetException.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Exception/InvalidSkeletonOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Exception/InvalidSkeletonOption.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Exception/InvalidUtf8CodeBoundaryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Exception/InvalidUtf8CodeBoundaryException.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Exception/InvalidUtf8CodePointException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Exception/InvalidUtf8CodePointException.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Exception/ParserExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Exception/ParserExceptionInterface.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Exception/UnableToParseMessageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Exception/UnableToParseMessageException.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Exception/UnsupportedOptionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Exception/UnsupportedOptionException.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/NumberSkeletonParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/NumberSkeletonParser.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Options.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Result.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/AbstractElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/AbstractElement.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/AbstractSimpleFormatElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/AbstractSimpleFormatElement.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/AbstractSkeleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/AbstractSkeleton.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/ArgumentElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/ArgumentElement.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/DateElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/DateElement.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/DateTimeFormatOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/DateTimeFormatOptions.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/DateTimeSkeleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/DateTimeSkeleton.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/DeepCloner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/DeepCloner.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/ElementCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/ElementCollection.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/ElementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/ElementInterface.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/ElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/ElementType.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/LiteralElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/LiteralElement.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/Location.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/LocationDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/LocationDetails.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/NumberElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/NumberElement.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/NumberFormatOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/NumberFormatOptions.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/NumberSkeleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/NumberSkeleton.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/NumberSkeletonToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/NumberSkeletonToken.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/NumberSkeletonTokenCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/NumberSkeletonTokenCollection.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/OptionSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/OptionSerializer.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/PluralElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/PluralElement.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/PluralOrSelectOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/PluralOrSelectOption.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/PoundElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/PoundElement.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/SelectElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/SelectElement.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/SkeletonInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/SkeletonInterface.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/SkeletonType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/SkeletonType.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/TagElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/TagElement.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Type/TimeElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Type/TimeElement.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Util/CodePointHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Util/CodePointHelper.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Util/CodePointMatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Util/CodePointMatcherInterface.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Util/IsAlpha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Util/IsAlpha.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Util/IsPatternSyntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Util/IsPatternSyntax.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Util/IsPotentialElementNameChar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Util/IsPotentialElementNameChar.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Parser/Util/IsWhiteSpace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Parser/Util/IsWhiteSpace.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Printer.php -------------------------------------------------------------------------------- /src/Icu/MessageFormat/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Icu/MessageFormat/Validator.php -------------------------------------------------------------------------------- /src/Intl/DateTimeFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/DateTimeFormat.php -------------------------------------------------------------------------------- /src/Intl/DateTimeFormatInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/DateTimeFormatInterface.php -------------------------------------------------------------------------------- /src/Intl/DateTimeFormatOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/DateTimeFormatOptions.php -------------------------------------------------------------------------------- /src/Intl/DisplayNames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/DisplayNames.php -------------------------------------------------------------------------------- /src/Intl/DisplayNamesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/DisplayNamesInterface.php -------------------------------------------------------------------------------- /src/Intl/DisplayNamesOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/DisplayNamesOptions.php -------------------------------------------------------------------------------- /src/Intl/Locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/Locale.php -------------------------------------------------------------------------------- /src/Intl/LocaleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/LocaleInterface.php -------------------------------------------------------------------------------- /src/Intl/LocaleOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/LocaleOptions.php -------------------------------------------------------------------------------- /src/Intl/MessageFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/MessageFormat.php -------------------------------------------------------------------------------- /src/Intl/MessageFormatInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/MessageFormatInterface.php -------------------------------------------------------------------------------- /src/Intl/NumberFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/NumberFormat.php -------------------------------------------------------------------------------- /src/Intl/NumberFormatInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/NumberFormatInterface.php -------------------------------------------------------------------------------- /src/Intl/NumberFormatOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Intl/NumberFormatOptions.php -------------------------------------------------------------------------------- /src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Message.php -------------------------------------------------------------------------------- /src/MessageCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/MessageCollection.php -------------------------------------------------------------------------------- /src/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/MessageInterface.php -------------------------------------------------------------------------------- /src/MessageLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/MessageLoader.php -------------------------------------------------------------------------------- /src/PseudoLocale/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/PseudoLocale/Converter.php -------------------------------------------------------------------------------- /src/PseudoLocale/ConverterOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/PseudoLocale/ConverterOptions.php -------------------------------------------------------------------------------- /src/PseudoLocale/Locale/AbstractLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/PseudoLocale/Locale/AbstractLocale.php -------------------------------------------------------------------------------- /src/PseudoLocale/Locale/EnXa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/PseudoLocale/Locale/EnXa.php -------------------------------------------------------------------------------- /src/PseudoLocale/Locale/EnXb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/PseudoLocale/Locale/EnXb.php -------------------------------------------------------------------------------- /src/PseudoLocale/Locale/XxAc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/PseudoLocale/Locale/XxAc.php -------------------------------------------------------------------------------- /src/PseudoLocale/Locale/XxHa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/PseudoLocale/Locale/XxHa.php -------------------------------------------------------------------------------- /src/PseudoLocale/Locale/XxLs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/PseudoLocale/Locale/XxLs.php -------------------------------------------------------------------------------- /src/PseudoLocale/Locale/XxZa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/PseudoLocale/Locale/XxZa.php -------------------------------------------------------------------------------- /src/PseudoLocale/PseudoLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/PseudoLocale/PseudoLocale.php -------------------------------------------------------------------------------- /src/PseudoLocale/PseudoLocaleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/PseudoLocale/PseudoLocaleInterface.php -------------------------------------------------------------------------------- /src/Util/DescriptorIdBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Util/DescriptorIdBuilder.php -------------------------------------------------------------------------------- /src/Util/FileSystemHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Util/FileSystemHelper.php -------------------------------------------------------------------------------- /src/Util/FormatHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Util/FormatHelper.php -------------------------------------------------------------------------------- /src/Util/Globber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Util/Globber.php -------------------------------------------------------------------------------- /src/Util/MessageCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Util/MessageCleaner.php -------------------------------------------------------------------------------- /src/Util/MessageRetriever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skillshare/formatphp/HEAD/src/Util/MessageRetriever.php --------------------------------------------------------------------------------