├── .DS_Store ├── README.md ├── config └── db.php ├── controllers ├── login.php ├── register.php └── user_activation.php ├── css └── style.css ├── dashboard.php ├── header.php ├── index.php ├── lib ├── composer.json ├── composer.lock └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ ├── doctrine │ └── lexer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ └── Doctrine │ │ └── Common │ │ └── Lexer │ │ └── AbstractLexer.php │ ├── egulias │ └── email-validator │ │ ├── EmailValidator │ │ ├── EmailLexer.php │ │ ├── EmailParser.php │ │ ├── EmailValidator.php │ │ ├── Exception │ │ │ ├── AtextAfterCFWS.php │ │ │ ├── CRLFAtTheEnd.php │ │ │ ├── CRLFX2.php │ │ │ ├── CRNoLF.php │ │ │ ├── CharNotAllowed.php │ │ │ ├── CommaInDomain.php │ │ │ ├── ConsecutiveAt.php │ │ │ ├── ConsecutiveDot.php │ │ │ ├── DomainHyphened.php │ │ │ ├── DotAtEnd.php │ │ │ ├── DotAtStart.php │ │ │ ├── ExpectingAT.php │ │ │ ├── ExpectingATEXT.php │ │ │ ├── ExpectingCTEXT.php │ │ │ ├── ExpectingDTEXT.php │ │ │ ├── ExpectingDomainLiteralClose.php │ │ │ ├── ExpectingQPair.php │ │ │ ├── InvalidEmail.php │ │ │ ├── NoDNSRecord.php │ │ │ ├── NoDomainPart.php │ │ │ ├── NoLocalPart.php │ │ │ ├── UnclosedComment.php │ │ │ ├── UnclosedQuotedString.php │ │ │ └── UnopenedComment.php │ │ ├── Parser │ │ │ ├── DomainPart.php │ │ │ ├── LocalPart.php │ │ │ └── Parser.php │ │ ├── Validation │ │ │ ├── DNSCheckValidation.php │ │ │ ├── EmailValidation.php │ │ │ ├── Error │ │ │ │ ├── RFCWarnings.php │ │ │ │ └── SpoofEmail.php │ │ │ ├── Exception │ │ │ │ └── EmptyValidationList.php │ │ │ ├── MultipleErrors.php │ │ │ ├── MultipleValidationWithAnd.php │ │ │ ├── NoRFCWarningsValidation.php │ │ │ ├── RFCValidation.php │ │ │ └── SpoofCheckValidation.php │ │ └── Warning │ │ │ ├── AddressLiteral.php │ │ │ ├── CFWSNearAt.php │ │ │ ├── CFWSWithFWS.php │ │ │ ├── Comment.php │ │ │ ├── DeprecatedComment.php │ │ │ ├── DomainLiteral.php │ │ │ ├── DomainTooLong.php │ │ │ ├── EmailTooLong.php │ │ │ ├── IPV6BadChar.php │ │ │ ├── IPV6ColonEnd.php │ │ │ ├── IPV6ColonStart.php │ │ │ ├── IPV6Deprecated.php │ │ │ ├── IPV6DoubleColon.php │ │ │ ├── IPV6GroupCount.php │ │ │ ├── IPV6MaxGroups.php │ │ │ ├── LabelTooLong.php │ │ │ ├── LocalTooLong.php │ │ │ ├── NoDNSMXRecord.php │ │ │ ├── ObsoleteDTEXT.php │ │ │ ├── QuotedPart.php │ │ │ ├── QuotedString.php │ │ │ ├── TLD.php │ │ │ └── Warning.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── psalm.baseline.xml │ │ └── psalm.xml │ ├── swiftmailer │ └── swiftmailer │ │ ├── .gitattributes │ │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── doc │ │ ├── headers.rst │ │ ├── index.rst │ │ ├── introduction.rst │ │ ├── japanese.rst │ │ ├── messages.rst │ │ ├── plugins.rst │ │ └── sending.rst │ │ ├── lib │ │ ├── classes │ │ │ ├── Swift.php │ │ │ └── Swift │ │ │ │ ├── AddressEncoder.php │ │ │ │ ├── AddressEncoder │ │ │ │ ├── IdnAddressEncoder.php │ │ │ │ └── Utf8AddressEncoder.php │ │ │ │ ├── AddressEncoderException.php │ │ │ │ ├── Attachment.php │ │ │ │ ├── ByteStream │ │ │ │ ├── AbstractFilterableInputStream.php │ │ │ │ ├── ArrayByteStream.php │ │ │ │ ├── FileByteStream.php │ │ │ │ └── TemporaryFileByteStream.php │ │ │ │ ├── CharacterReader.php │ │ │ │ ├── CharacterReader │ │ │ │ ├── GenericFixedWidthReader.php │ │ │ │ ├── UsAsciiReader.php │ │ │ │ └── Utf8Reader.php │ │ │ │ ├── CharacterReaderFactory.php │ │ │ │ ├── CharacterReaderFactory │ │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ │ ├── CharacterStream.php │ │ │ │ ├── CharacterStream │ │ │ │ ├── ArrayCharacterStream.php │ │ │ │ └── NgCharacterStream.php │ │ │ │ ├── ConfigurableSpool.php │ │ │ │ ├── DependencyContainer.php │ │ │ │ ├── DependencyException.php │ │ │ │ ├── EmbeddedFile.php │ │ │ │ ├── Encoder.php │ │ │ │ ├── Encoder │ │ │ │ ├── Base64Encoder.php │ │ │ │ ├── QpEncoder.php │ │ │ │ └── Rfc2231Encoder.php │ │ │ │ ├── Events │ │ │ │ ├── CommandEvent.php │ │ │ │ ├── CommandListener.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventDispatcher.php │ │ │ │ ├── EventListener.php │ │ │ │ ├── EventObject.php │ │ │ │ ├── ResponseEvent.php │ │ │ │ ├── ResponseListener.php │ │ │ │ ├── SendEvent.php │ │ │ │ ├── SendListener.php │ │ │ │ ├── SimpleEventDispatcher.php │ │ │ │ ├── TransportChangeEvent.php │ │ │ │ ├── TransportChangeListener.php │ │ │ │ ├── TransportExceptionEvent.php │ │ │ │ └── TransportExceptionListener.php │ │ │ │ ├── FailoverTransport.php │ │ │ │ ├── FileSpool.php │ │ │ │ ├── FileStream.php │ │ │ │ ├── Filterable.php │ │ │ │ ├── IdGenerator.php │ │ │ │ ├── Image.php │ │ │ │ ├── InputByteStream.php │ │ │ │ ├── IoException.php │ │ │ │ ├── KeyCache.php │ │ │ │ ├── KeyCache │ │ │ │ ├── ArrayKeyCache.php │ │ │ │ ├── DiskKeyCache.php │ │ │ │ ├── KeyCacheInputStream.php │ │ │ │ ├── NullKeyCache.php │ │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ ├── Mailer.php │ │ │ │ ├── Mailer │ │ │ │ ├── ArrayRecipientIterator.php │ │ │ │ └── RecipientIterator.php │ │ │ │ ├── MemorySpool.php │ │ │ │ ├── Message.php │ │ │ │ ├── Mime │ │ │ │ ├── Attachment.php │ │ │ │ ├── CharsetObserver.php │ │ │ │ ├── ContentEncoder.php │ │ │ │ ├── ContentEncoder │ │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ │ ├── NullContentEncoder.php │ │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ │ ├── QpContentEncoder.php │ │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ │ └── RawContentEncoder.php │ │ │ │ ├── EmbeddedFile.php │ │ │ │ ├── EncodingObserver.php │ │ │ │ ├── Header.php │ │ │ │ ├── HeaderEncoder.php │ │ │ │ ├── HeaderEncoder │ │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ │ └── QpHeaderEncoder.php │ │ │ │ ├── Headers │ │ │ │ │ ├── AbstractHeader.php │ │ │ │ │ ├── DateHeader.php │ │ │ │ │ ├── IdentificationHeader.php │ │ │ │ │ ├── MailboxHeader.php │ │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ │ ├── PathHeader.php │ │ │ │ │ └── UnstructuredHeader.php │ │ │ │ ├── IdGenerator.php │ │ │ │ ├── MimePart.php │ │ │ │ ├── SimpleHeaderFactory.php │ │ │ │ ├── SimpleHeaderSet.php │ │ │ │ ├── SimpleMessage.php │ │ │ │ └── SimpleMimeEntity.php │ │ │ │ ├── MimePart.php │ │ │ │ ├── NullTransport.php │ │ │ │ ├── OutputByteStream.php │ │ │ │ ├── Plugins │ │ │ │ ├── AntiFloodPlugin.php │ │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ │ ├── Decorator │ │ │ │ │ └── Replacements.php │ │ │ │ ├── DecoratorPlugin.php │ │ │ │ ├── ImpersonatePlugin.php │ │ │ │ ├── Logger.php │ │ │ │ ├── LoggerPlugin.php │ │ │ │ ├── Loggers │ │ │ │ │ ├── ArrayLogger.php │ │ │ │ │ └── EchoLogger.php │ │ │ │ ├── MessageLogger.php │ │ │ │ ├── Pop │ │ │ │ │ ├── Pop3Connection.php │ │ │ │ │ └── Pop3Exception.php │ │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ │ ├── RedirectingPlugin.php │ │ │ │ ├── Reporter.php │ │ │ │ ├── ReporterPlugin.php │ │ │ │ ├── Reporters │ │ │ │ │ ├── HitReporter.php │ │ │ │ │ └── HtmlReporter.php │ │ │ │ ├── Sleeper.php │ │ │ │ ├── ThrottlerPlugin.php │ │ │ │ └── Timer.php │ │ │ │ ├── Preferences.php │ │ │ │ ├── ReplacementFilterFactory.php │ │ │ │ ├── RfcComplianceException.php │ │ │ │ ├── SendmailTransport.php │ │ │ │ ├── Signer.php │ │ │ │ ├── Signers │ │ │ │ ├── BodySigner.php │ │ │ │ ├── DKIMSigner.php │ │ │ │ ├── DomainKeySigner.php │ │ │ │ ├── HeaderSigner.php │ │ │ │ ├── OpenDKIMSigner.php │ │ │ │ └── SMimeSigner.php │ │ │ │ ├── SmtpTransport.php │ │ │ │ ├── Spool.php │ │ │ │ ├── SpoolTransport.php │ │ │ │ ├── StreamFilter.php │ │ │ │ ├── StreamFilters │ │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ │ ├── StringReplacementFilter.php │ │ │ │ └── StringReplacementFilterFactory.php │ │ │ │ ├── SwiftException.php │ │ │ │ ├── Transport.php │ │ │ │ ├── Transport │ │ │ │ ├── AbstractSmtpTransport.php │ │ │ │ ├── Esmtp │ │ │ │ │ ├── Auth │ │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ │ ├── AuthHandler.php │ │ │ │ │ ├── Authenticator.php │ │ │ │ │ ├── EightBitMimeHandler.php │ │ │ │ │ └── SmtpUtf8Handler.php │ │ │ │ ├── EsmtpHandler.php │ │ │ │ ├── EsmtpTransport.php │ │ │ │ ├── FailoverTransport.php │ │ │ │ ├── IoBuffer.php │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ ├── NullTransport.php │ │ │ │ ├── SendmailTransport.php │ │ │ │ ├── SmtpAgent.php │ │ │ │ ├── SpoolTransport.php │ │ │ │ └── StreamBuffer.php │ │ │ │ └── TransportException.php │ │ ├── dependency_maps │ │ │ ├── cache_deps.php │ │ │ ├── message_deps.php │ │ │ ├── mime_deps.php │ │ │ └── transport_deps.php │ │ ├── mime_types.php │ │ ├── preferences.php │ │ ├── swift_required.php │ │ └── swiftmailer_generate_mimes_config.php │ │ ├── phpunit.xml.dist │ │ └── tests │ │ ├── IdenticalBinaryConstraint.php │ │ ├── StreamCollector.php │ │ ├── SwiftMailerSmokeTestCase.php │ │ ├── SwiftMailerTestCase.php │ │ ├── _samples │ │ ├── charsets │ │ │ ├── iso-2022-jp │ │ │ │ └── one.txt │ │ │ ├── iso-8859-1 │ │ │ │ └── one.txt │ │ │ └── utf-8 │ │ │ │ ├── one.txt │ │ │ │ ├── three.txt │ │ │ │ └── two.txt │ │ ├── dkim │ │ │ ├── dkim.test.priv │ │ │ └── dkim.test.pub │ │ ├── files │ │ │ ├── data.txt │ │ │ ├── swiftmailer.png │ │ │ └── textfile.zip │ │ └── smime │ │ │ ├── CA.srl │ │ │ ├── ca.crt │ │ │ ├── ca.key │ │ │ ├── create-cert.sh │ │ │ ├── encrypt.crt │ │ │ ├── encrypt.key │ │ │ ├── encrypt2.crt │ │ │ ├── encrypt2.key │ │ │ ├── intermediate.crt │ │ │ ├── intermediate.key │ │ │ ├── sign.crt │ │ │ ├── sign.key │ │ │ ├── sign2.crt │ │ │ └── sign2.key │ │ ├── acceptance.conf.php.default │ │ ├── acceptance │ │ └── Swift │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ ├── ByteStream │ │ │ └── FileByteStreamAcceptanceTest.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php │ │ │ ├── DependencyContainerAcceptanceTest.php │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ ├── Encoder │ │ │ ├── Base64EncoderAcceptanceTest.php │ │ │ ├── QpEncoderAcceptanceTest.php │ │ │ └── Rfc2231EncoderAcceptanceTest.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCacheAcceptanceTest.php │ │ │ └── DiskKeyCacheAcceptanceTest.php │ │ │ ├── MessageAcceptanceTest.php │ │ │ ├── Mime │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoderAcceptanceTest.php │ │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php │ │ │ │ ├── PlainContentEncoderAcceptanceTest.php │ │ │ │ └── QpContentEncoderAcceptanceTest.php │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ ├── HeaderEncoder │ │ │ │ └── Base64HeaderEncoderAcceptanceTest.php │ │ │ ├── MimePartAcceptanceTest.php │ │ │ └── SimpleMessageAcceptanceTest.php │ │ │ ├── MimePartAcceptanceTest.php │ │ │ └── Transport │ │ │ └── StreamBuffer │ │ │ ├── AbstractStreamBufferAcceptanceTest.php │ │ │ ├── BasicSocketAcceptanceTest.php │ │ │ ├── ProcessAcceptanceTest.php │ │ │ ├── SocketTimeoutTest.php │ │ │ ├── SslSocketAcceptanceTest.php │ │ │ └── TlsSocketAcceptanceTest.php │ │ ├── bootstrap.php │ │ ├── bug │ │ └── Swift │ │ │ ├── Bug111Test.php │ │ │ ├── Bug118Test.php │ │ │ ├── Bug206Test.php │ │ │ ├── Bug274Test.php │ │ │ ├── Bug34Test.php │ │ │ ├── Bug35Test.php │ │ │ ├── Bug38Test.php │ │ │ ├── Bug518Test.php │ │ │ ├── Bug51Test.php │ │ │ ├── Bug534Test.php │ │ │ ├── Bug650Test.php │ │ │ ├── Bug71Test.php │ │ │ ├── Bug76Test.php │ │ │ └── BugFileByteStreamConsecutiveReadCallsTest.php │ │ ├── fixtures │ │ └── MimeEntityFixture.php │ │ ├── smoke.conf.php.default │ │ ├── smoke │ │ └── Swift │ │ │ └── Smoke │ │ │ ├── AttachmentSmokeTest.php │ │ │ ├── BasicSmokeTest.php │ │ │ ├── HtmlWithAttachmentSmokeTest.php │ │ │ └── InternationalSmokeTest.php │ │ └── unit │ │ └── Swift │ │ ├── ByteStream │ │ └── ArrayByteStreamTest.php │ │ ├── CharacterReader │ │ ├── GenericFixedWidthReaderTest.php │ │ ├── UsAsciiReaderTest.php │ │ └── Utf8ReaderTest.php │ │ ├── CharacterStream │ │ └── ArrayCharacterStreamTest.php │ │ ├── DependencyContainerTest.php │ │ ├── Encoder │ │ ├── Base64EncoderTest.php │ │ ├── QpEncoderTest.php │ │ └── Rfc2231EncoderTest.php │ │ ├── Events │ │ ├── CommandEventTest.php │ │ ├── EventObjectTest.php │ │ ├── ResponseEventTest.php │ │ ├── SendEventTest.php │ │ ├── SimpleEventDispatcherTest.php │ │ ├── TransportChangeEventTest.php │ │ └── TransportExceptionEventTest.php │ │ ├── KeyCache │ │ ├── ArrayKeyCacheTest.php │ │ └── SimpleKeyCacheInputStreamTest.php │ │ ├── Mailer │ │ └── ArrayRecipientIteratorTest.php │ │ ├── MailerTest.php │ │ ├── MessageTest.php │ │ ├── Mime │ │ ├── AbstractMimeEntityTest.php │ │ ├── AttachmentTest.php │ │ ├── ContentEncoder │ │ │ ├── Base64ContentEncoderTest.php │ │ │ ├── PlainContentEncoderTest.php │ │ │ └── QpContentEncoderTest.php │ │ ├── EmbeddedFileTest.php │ │ ├── HeaderEncoder │ │ │ ├── Base64HeaderEncoderTest.php │ │ │ └── QpHeaderEncoderTest.php │ │ ├── Headers │ │ │ ├── DateHeaderTest.php │ │ │ ├── IdentificationHeaderTest.php │ │ │ ├── MailboxHeaderTest.php │ │ │ ├── ParameterizedHeaderTest.php │ │ │ ├── PathHeaderTest.php │ │ │ └── UnstructuredHeaderTest.php │ │ ├── IdGeneratorTest.php │ │ ├── MimePartTest.php │ │ ├── SimpleHeaderFactoryTest.php │ │ ├── SimpleHeaderSetTest.php │ │ ├── SimpleMessageTest.php │ │ └── SimpleMimeEntityTest.php │ │ ├── Plugins │ │ ├── AntiFloodPluginTest.php │ │ ├── BandwidthMonitorPluginTest.php │ │ ├── DecoratorPluginTest.php │ │ ├── LoggerPluginTest.php │ │ ├── Loggers │ │ │ ├── ArrayLoggerTest.php │ │ │ └── EchoLoggerTest.php │ │ ├── PopBeforeSmtpPluginTest.php │ │ ├── RedirectingPluginTest.php │ │ ├── ReporterPluginTest.php │ │ ├── Reporters │ │ │ ├── HitReporterTest.php │ │ │ └── HtmlReporterTest.php │ │ └── ThrottlerPluginTest.php │ │ ├── Signers │ │ ├── DKIMSignerTest.php │ │ ├── OpenDKIMSignerTest.php │ │ └── SMimeSignerTest.php │ │ ├── StreamFilters │ │ ├── ByteArrayReplacementFilterTest.php │ │ ├── StringReplacementFilterFactoryTest.php │ │ └── StringReplacementFilterTest.php │ │ └── Transport │ │ ├── AbstractSmtpEventSupportTest.php │ │ ├── AbstractSmtpTest.php │ │ ├── Esmtp │ │ ├── Auth │ │ │ ├── CramMd5AuthenticatorTest.php │ │ │ ├── LoginAuthenticatorTest.php │ │ │ ├── NTLMAuthenticatorTest.php │ │ │ └── PlainAuthenticatorTest.php │ │ └── AuthHandlerTest.php │ │ ├── EsmtpTransport │ │ └── ExtensionSupportTest.php │ │ ├── EsmtpTransportTest.php │ │ ├── FailoverTransportTest.php │ │ ├── LoadBalancedTransportTest.php │ │ ├── SendmailTransportTest.php │ │ └── StreamBufferTest.php │ └── symfony │ ├── polyfill-iconv │ ├── Iconv.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ └── charset │ │ │ ├── from.big5.php │ │ │ ├── from.cp037.php │ │ │ ├── from.cp1006.php │ │ │ ├── from.cp1026.php │ │ │ ├── from.cp424.php │ │ │ ├── from.cp437.php │ │ │ ├── from.cp500.php │ │ │ ├── from.cp737.php │ │ │ ├── from.cp775.php │ │ │ ├── from.cp850.php │ │ │ ├── from.cp852.php │ │ │ ├── from.cp855.php │ │ │ ├── from.cp856.php │ │ │ ├── from.cp857.php │ │ │ ├── from.cp860.php │ │ │ ├── from.cp861.php │ │ │ ├── from.cp862.php │ │ │ ├── from.cp863.php │ │ │ ├── from.cp864.php │ │ │ ├── from.cp865.php │ │ │ ├── from.cp866.php │ │ │ ├── from.cp869.php │ │ │ ├── from.cp874.php │ │ │ ├── from.cp875.php │ │ │ ├── from.cp932.php │ │ │ ├── from.cp936.php │ │ │ ├── from.cp949.php │ │ │ ├── from.cp950.php │ │ │ ├── from.iso-8859-1.php │ │ │ ├── from.iso-8859-10.php │ │ │ ├── from.iso-8859-11.php │ │ │ ├── from.iso-8859-13.php │ │ │ ├── from.iso-8859-14.php │ │ │ ├── from.iso-8859-15.php │ │ │ ├── from.iso-8859-16.php │ │ │ ├── from.iso-8859-2.php │ │ │ ├── from.iso-8859-3.php │ │ │ ├── from.iso-8859-4.php │ │ │ ├── from.iso-8859-5.php │ │ │ ├── from.iso-8859-6.php │ │ │ ├── from.iso-8859-7.php │ │ │ ├── from.iso-8859-8.php │ │ │ ├── from.iso-8859-9.php │ │ │ ├── from.koi8-r.php │ │ │ ├── from.koi8-u.php │ │ │ ├── from.us-ascii.php │ │ │ ├── from.windows-1250.php │ │ │ ├── from.windows-1251.php │ │ │ ├── from.windows-1252.php │ │ │ ├── from.windows-1253.php │ │ │ ├── from.windows-1254.php │ │ │ ├── from.windows-1255.php │ │ │ ├── from.windows-1256.php │ │ │ ├── from.windows-1257.php │ │ │ ├── from.windows-1258.php │ │ │ └── translit.php │ ├── bootstrap.php │ └── composer.json │ ├── polyfill-intl-idn │ ├── Idn.php │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ └── composer.json │ ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ └── composer.json │ └── polyfill-php72 │ ├── LICENSE │ ├── Php72.php │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── logout.php ├── signup.php └── user_verificaiton.php /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/README.md -------------------------------------------------------------------------------- /config/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/config/db.php -------------------------------------------------------------------------------- /controllers/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/controllers/login.php -------------------------------------------------------------------------------- /controllers/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/controllers/register.php -------------------------------------------------------------------------------- /controllers/user_activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/controllers/user_activation.php -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/css/style.css -------------------------------------------------------------------------------- /dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/dashboard.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/header.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/index.php -------------------------------------------------------------------------------- /lib/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/composer.json -------------------------------------------------------------------------------- /lib/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/composer.lock -------------------------------------------------------------------------------- /lib/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/autoload.php -------------------------------------------------------------------------------- /lib/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /lib/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/composer/LICENSE -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /lib/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /lib/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/composer/installed.json -------------------------------------------------------------------------------- /lib/vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /lib/vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /lib/vendor/doctrine/lexer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/doctrine/lexer/composer.json -------------------------------------------------------------------------------- /lib/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/EmailLexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/EmailLexer.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/EmailParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/EmailParser.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/EmailValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/EmailValidator.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/AtextAfterCFWS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/AtextAfterCFWS.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/CRLFAtTheEnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/CRLFAtTheEnd.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/CRLFX2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/CRLFX2.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/CRNoLF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/CRNoLF.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/CharNotAllowed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/CharNotAllowed.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/CommaInDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/CommaInDomain.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/ConsecutiveAt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/ConsecutiveAt.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/ConsecutiveDot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/ConsecutiveDot.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/DomainHyphened.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/DomainHyphened.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/DotAtEnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/DotAtEnd.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/DotAtStart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/DotAtStart.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingAT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingAT.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingATEXT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingATEXT.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingCTEXT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingCTEXT.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingDTEXT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingDTEXT.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingDomainLiteralClose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingDomainLiteralClose.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingQPair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/ExpectingQPair.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/InvalidEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/InvalidEmail.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/NoDNSRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/NoDNSRecord.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/NoDomainPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/NoDomainPart.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/NoLocalPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/NoLocalPart.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/UnclosedComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/UnclosedComment.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/UnclosedQuotedString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/UnclosedQuotedString.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Exception/UnopenedComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Exception/UnopenedComment.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Parser/DomainPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Parser/DomainPart.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Parser/LocalPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Parser/LocalPart.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Parser/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Parser/Parser.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Validation/DNSCheckValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Validation/DNSCheckValidation.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Validation/EmailValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Validation/EmailValidation.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Validation/Error/RFCWarnings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Validation/Error/RFCWarnings.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Validation/Error/SpoofEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Validation/Error/SpoofEmail.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Validation/Exception/EmptyValidationList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Validation/Exception/EmptyValidationList.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Validation/MultipleErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Validation/MultipleErrors.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Validation/MultipleValidationWithAnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Validation/MultipleValidationWithAnd.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Validation/NoRFCWarningsValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Validation/NoRFCWarningsValidation.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Validation/RFCValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Validation/RFCValidation.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Validation/SpoofCheckValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Validation/SpoofCheckValidation.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/AddressLiteral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/AddressLiteral.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/CFWSNearAt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/CFWSNearAt.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/CFWSWithFWS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/CFWSWithFWS.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/Comment.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/DeprecatedComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/DeprecatedComment.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/DomainLiteral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/DomainLiteral.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/DomainTooLong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/DomainTooLong.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/EmailTooLong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/EmailTooLong.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6BadChar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6BadChar.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6ColonEnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6ColonEnd.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6ColonStart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6ColonStart.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6Deprecated.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6DoubleColon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6DoubleColon.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6GroupCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6GroupCount.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6MaxGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/IPV6MaxGroups.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/LabelTooLong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/LabelTooLong.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/LocalTooLong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/LocalTooLong.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/NoDNSMXRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/NoDNSMXRecord.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/ObsoleteDTEXT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/ObsoleteDTEXT.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/QuotedPart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/QuotedPart.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/QuotedString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/QuotedString.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/TLD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/TLD.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/EmailValidator/Warning/Warning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/EmailValidator/Warning/Warning.php -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/LICENSE -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/README.md -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/composer.json -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/phpunit.xml.dist -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/psalm.baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/psalm.baseline.xml -------------------------------------------------------------------------------- /lib/vendor/egulias/email-validator/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/egulias/email-validator/psalm.xml -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/.gitattributes -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/.gitignore -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/.php_cs.dist -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/.travis.yml -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/CHANGES -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/LICENSE -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/README.md -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/composer.json -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/doc/headers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/doc/headers.rst -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/doc/index.rst -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/doc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/doc/introduction.rst -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/doc/japanese.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/doc/japanese.rst -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/doc/messages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/doc/messages.rst -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/doc/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/doc/plugins.rst -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/doc/sending.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/doc/sending.rst -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoder/IdnAddressEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoder/IdnAddressEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoder/Utf8AddressEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoder/Utf8AddressEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/AddressEncoderException.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Attachment.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/AbstractFilterableInputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/AbstractFilterableInputStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/ArrayByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/ArrayByteStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/FileByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/FileByteStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/TemporaryFileByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/TemporaryFileByteStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/GenericFixedWidthReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/GenericFixedWidthReader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/UsAsciiReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/UsAsciiReader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/Utf8Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/Utf8Reader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReaderFactory.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReaderFactory/SimpleCharacterReaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReaderFactory/SimpleCharacterReaderFactory.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream/ArrayCharacterStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream/ArrayCharacterStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream/NgCharacterStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream/NgCharacterStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ConfigurableSpool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ConfigurableSpool.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/DependencyContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/DependencyContainer.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/DependencyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/DependencyException.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/EmbeddedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/EmbeddedFile.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/Base64Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/Base64Encoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/QpEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/QpEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/Rfc2231Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/Rfc2231Encoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/CommandEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/CommandEvent.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/CommandListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/CommandListener.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/Event.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventDispatcher.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventListener.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventObject.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/ResponseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/ResponseEvent.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/ResponseListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/ResponseListener.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SendEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SendEvent.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SendListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SendListener.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SimpleEventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SimpleEventDispatcher.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportChangeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportChangeEvent.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportChangeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportChangeListener.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportExceptionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportExceptionEvent.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportExceptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportExceptionListener.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FailoverTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FailoverTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileSpool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileSpool.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Filterable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Filterable.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/IdGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/IdGenerator.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Image.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/InputByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/InputByteStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/IoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/IoException.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/ArrayKeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/ArrayKeyCache.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/DiskKeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/DiskKeyCache.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/KeyCacheInputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/KeyCacheInputStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/NullKeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/NullKeyCache.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/SimpleKeyCacheInputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/SimpleKeyCacheInputStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/LoadBalancedTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/LoadBalancedTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer/ArrayRecipientIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer/ArrayRecipientIterator.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer/RecipientIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer/RecipientIterator.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MemorySpool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MemorySpool.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Message.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Attachment.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/CharsetObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/CharsetObserver.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/Base64ContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/Base64ContentEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/NativeQpContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/NativeQpContentEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/NullContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/NullContentEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/PlainContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/PlainContentEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/RawContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/RawContentEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/EmbeddedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/EmbeddedFile.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/EncodingObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/EncodingObserver.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Header.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/Base64HeaderEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/Base64HeaderEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/QpHeaderEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/QpHeaderEncoder.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/AbstractHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/AbstractHeader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/DateHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/DateHeader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/IdentificationHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/IdentificationHeader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/MailboxHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/MailboxHeader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/OpenDKIMHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/OpenDKIMHeader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/ParameterizedHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/ParameterizedHeader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/PathHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/PathHeader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/UnstructuredHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/UnstructuredHeader.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/IdGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/IdGenerator.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/MimePart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/MimePart.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderFactory.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderSet.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleMessage.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleMimeEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleMimeEntity.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MimePart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MimePart.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/NullTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/NullTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/OutputByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/OutputByteStream.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/AntiFloodPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/AntiFloodPlugin.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/BandwidthMonitorPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/BandwidthMonitorPlugin.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Decorator/Replacements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Decorator/Replacements.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/DecoratorPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/DecoratorPlugin.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ImpersonatePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ImpersonatePlugin.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Logger.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/LoggerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/LoggerPlugin.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Loggers/ArrayLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Loggers/ArrayLogger.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Loggers/EchoLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Loggers/EchoLogger.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/MessageLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/MessageLogger.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Connection.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Exception.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/PopBeforeSmtpPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/PopBeforeSmtpPlugin.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/RedirectingPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/RedirectingPlugin.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporter.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ReporterPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ReporterPlugin.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporters/HitReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporters/HitReporter.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporters/HtmlReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporters/HtmlReporter.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Sleeper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Sleeper.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ThrottlerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ThrottlerPlugin.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Timer.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Preferences.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ReplacementFilterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ReplacementFilterFactory.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/RfcComplianceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/RfcComplianceException.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SendmailTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SendmailTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signer.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/BodySigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/BodySigner.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/DKIMSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/DKIMSigner.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/DomainKeySigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/DomainKeySigner.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/HeaderSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/HeaderSigner.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/OpenDKIMSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/OpenDKIMSigner.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/SMimeSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/SMimeSigner.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SmtpTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SmtpTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Spool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Spool.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SpoolTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SpoolTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilter.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/ByteArrayReplacementFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/ByteArrayReplacementFilter.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilter.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilterFactory.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SwiftException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SwiftException.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/CramMd5Authenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/CramMd5Authenticator.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/LoginAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/LoginAuthenticator.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/NTLMAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/NTLMAuthenticator.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/PlainAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/PlainAuthenticator.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/XOAuth2Authenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/XOAuth2Authenticator.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/AuthHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/AuthHandler.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Authenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Authenticator.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/EightBitMimeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/EightBitMimeHandler.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/SmtpUtf8Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/SmtpUtf8Handler.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpHandler.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/FailoverTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/FailoverTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/IoBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/IoBuffer.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/LoadBalancedTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/LoadBalancedTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/NullTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/NullTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SendmailTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SendmailTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SmtpAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SmtpAgent.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SpoolTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SpoolTransport.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/StreamBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/StreamBuffer.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/TransportException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/TransportException.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/cache_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/cache_deps.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/message_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/message_deps.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/mime_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/mime_deps.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/transport_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/transport_deps.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/mime_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/mime_types.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/preferences.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/swift_required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/swift_required.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/phpunit.xml.dist -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/IdenticalBinaryConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/IdenticalBinaryConstraint.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/StreamCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/StreamCollector.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/SwiftMailerSmokeTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/SwiftMailerSmokeTestCase.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/SwiftMailerTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/SwiftMailerTestCase.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/iso-2022-jp/one.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/iso-2022-jp/one.txt -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/iso-8859-1/one.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/iso-8859-1/one.txt -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/one.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/one.txt -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/three.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/three.txt -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/two.txt -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/dkim/dkim.test.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/dkim/dkim.test.priv -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/dkim/dkim.test.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/dkim/dkim.test.pub -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/ca.crt -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/ca.key -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/create-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/create-cert.sh -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt.crt -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt.key -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt2.crt -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt2.key -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/intermediate.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/intermediate.crt -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/intermediate.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/intermediate.key -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign.crt -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign.key -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign2.crt -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign2.key -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance.conf.php.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance.conf.php.default -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/AttachmentAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/AttachmentAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/ByteStream/FileByteStreamAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/ByteStream/FileByteStreamAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/CharacterReaderFactory/SimpleCharacterReaderFactoryAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/CharacterReaderFactory/SimpleCharacterReaderFactoryAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/DependencyContainerAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/DependencyContainerAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Base64EncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Base64EncoderAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/QpEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/QpEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Rfc2231EncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Rfc2231EncoderAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/KeyCache/ArrayKeyCacheAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/KeyCache/ArrayKeyCacheAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/KeyCache/DiskKeyCacheAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/KeyCache/DiskKeyCacheAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MessageAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MessageAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/AttachmentAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/AttachmentAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/Base64ContentEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/Base64ContentEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/NativeQpContentEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/NativeQpContentEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/PlainContentEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/PlainContentEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/QpContentEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/QpContentEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/EmbeddedFileAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/EmbeddedFileAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/HeaderEncoder/Base64HeaderEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/HeaderEncoder/Base64HeaderEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/MimePartAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/MimePartAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/SimpleMessageAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/SimpleMessageAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MimePartAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MimePartAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/AbstractStreamBufferAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/AbstractStreamBufferAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/BasicSocketAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/BasicSocketAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/ProcessAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/ProcessAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SocketTimeoutTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SocketTimeoutTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SslSocketAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SslSocketAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/TlsSocketAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/TlsSocketAcceptanceTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bootstrap.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug111Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug111Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug118Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug118Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug206Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug206Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug274Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug274Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug34Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug34Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug35Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug35Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug38Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug38Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug518Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug518Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug51Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug51Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug534Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug534Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug650Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug650Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug71Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug71Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug76Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug76Test.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/BugFileByteStreamConsecutiveReadCallsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/BugFileByteStreamConsecutiveReadCallsTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/fixtures/MimeEntityFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/fixtures/MimeEntityFixture.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/smoke.conf.php.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/smoke.conf.php.default -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/AttachmentSmokeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/AttachmentSmokeTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/BasicSmokeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/BasicSmokeTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/HtmlWithAttachmentSmokeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/HtmlWithAttachmentSmokeTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/InternationalSmokeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/InternationalSmokeTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/ByteStream/ArrayByteStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/ByteStream/ArrayByteStreamTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/GenericFixedWidthReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/GenericFixedWidthReaderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/UsAsciiReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/UsAsciiReaderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/Utf8ReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/Utf8ReaderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterStream/ArrayCharacterStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterStream/ArrayCharacterStreamTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/DependencyContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/DependencyContainerTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/Base64EncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/Base64EncoderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/QpEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/QpEncoderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/Rfc2231EncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/Rfc2231EncoderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/CommandEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/CommandEventTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/EventObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/EventObjectTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/ResponseEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/ResponseEventTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/SendEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/SendEventTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/SimpleEventDispatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/SimpleEventDispatcherTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/TransportChangeEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/TransportChangeEventTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/TransportExceptionEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/TransportExceptionEventTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/KeyCache/ArrayKeyCacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/KeyCache/ArrayKeyCacheTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/KeyCache/SimpleKeyCacheInputStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/KeyCache/SimpleKeyCacheInputStreamTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mailer/ArrayRecipientIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mailer/ArrayRecipientIteratorTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MailerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MailerTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MessageTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AbstractMimeEntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AbstractMimeEntityTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AttachmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AttachmentTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/Base64ContentEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/Base64ContentEncoderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/PlainContentEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/PlainContentEncoderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/QpContentEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/QpContentEncoderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/EmbeddedFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/EmbeddedFileTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/Base64HeaderEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/Base64HeaderEncoderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/QpHeaderEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/QpHeaderEncoderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/DateHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/DateHeaderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/IdentificationHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/IdentificationHeaderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/MailboxHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/MailboxHeaderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/ParameterizedHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/ParameterizedHeaderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/PathHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/PathHeaderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/UnstructuredHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/UnstructuredHeaderTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/IdGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/IdGeneratorTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/MimePartTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/MimePartTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderFactoryTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderSetTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleMessageTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleMimeEntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleMimeEntityTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/AntiFloodPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/AntiFloodPluginTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/BandwidthMonitorPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/BandwidthMonitorPluginTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/DecoratorPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/DecoratorPluginTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/LoggerPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/LoggerPluginTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Loggers/ArrayLoggerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Loggers/ArrayLoggerTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Loggers/EchoLoggerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Loggers/EchoLoggerTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/PopBeforeSmtpPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/PopBeforeSmtpPluginTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/RedirectingPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/RedirectingPluginTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/ReporterPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/ReporterPluginTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Reporters/HitReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Reporters/HitReporterTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Reporters/HtmlReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Reporters/HtmlReporterTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/ThrottlerPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/ThrottlerPluginTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/DKIMSignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/DKIMSignerTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/OpenDKIMSignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/OpenDKIMSignerTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/SMimeSignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/SMimeSignerTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/ByteArrayReplacementFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/ByteArrayReplacementFilterTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterFactoryTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpEventSupportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpEventSupportTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/CramMd5AuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/CramMd5AuthenticatorTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/LoginAuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/LoginAuthenticatorTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/NTLMAuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/NTLMAuthenticatorTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/PlainAuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/PlainAuthenticatorTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/AuthHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/AuthHandlerTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransport/ExtensionSupportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransport/ExtensionSupportTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransportTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/FailoverTransportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/FailoverTransportTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/LoadBalancedTransportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/LoadBalancedTransportTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/SendmailTransportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/SendmailTransportTest.php -------------------------------------------------------------------------------- /lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/StreamBufferTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/StreamBufferTest.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Iconv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Iconv.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.big5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.big5.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp037.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp037.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp1006.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp1006.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp1026.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp1026.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp424.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp424.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp437.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp437.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp500.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp737.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp737.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp775.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp775.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp850.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp850.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp852.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp852.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp855.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp855.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp856.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp856.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp857.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp857.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp860.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp860.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp861.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp861.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp862.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp862.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp863.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp863.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp864.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp864.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp865.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp865.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp866.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp866.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp869.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp869.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp874.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp874.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp875.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp875.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp932.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp932.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp936.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp936.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp949.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp949.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp950.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.cp950.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-1.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-10.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-11.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-13.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-14.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-15.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-15.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-16.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-16.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-2.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-3.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-4.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-5.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-6.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-7.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-8.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-9.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-r.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-r.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-u.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-u.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.us-ascii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.us-ascii.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1250.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1250.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1251.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1251.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1252.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1252.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1253.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1253.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1254.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1254.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1255.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1255.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1256.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1256.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1257.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1257.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1258.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1258.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/Resources/charset/translit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/Resources/charset/translit.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/bootstrap.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-iconv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-iconv/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-intl-idn/Idn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-intl-idn/Idn.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-intl-idn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-intl-idn/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-intl-idn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-intl-idn/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-intl-idn/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-intl-idn/bootstrap.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-intl-idn/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-intl-idn/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-mbstring/Mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-mbstring/Mbstring.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-mbstring/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-mbstring/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-mbstring/bootstrap.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-mbstring/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-mbstring/composer.json -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php72/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-php72/LICENSE -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php72/Php72.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-php72/Php72.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php72/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-php72/README.md -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php72/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-php72/bootstrap.php -------------------------------------------------------------------------------- /lib/vendor/symfony/polyfill-php72/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/lib/vendor/symfony/polyfill-php72/composer.json -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/logout.php -------------------------------------------------------------------------------- /signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/signup.php -------------------------------------------------------------------------------- /user_verificaiton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-user-authentication/HEAD/user_verificaiton.php --------------------------------------------------------------------------------