├── .gitignore ├── .travis.yml ├── Assets └── img │ ├── agefrombirthdate.png │ ├── alcazar.png │ ├── anura.png │ ├── blacklist.png │ ├── correctaddress.png │ ├── fourleaf.png │ ├── genderfromname.png │ ├── phonetoparts.png │ ├── random.png │ ├── trustedform.png │ ├── urlstripper.png │ └── xverify.png ├── Command ├── EnhanceCommand.php ├── InstallCityStatePostalCodeDataCommand.php ├── InstallGenderNamesDataCommand.php ├── TrustedformCommand.php └── UpdateCorrectAddressDataCommand.php ├── Config └── config.php ├── Entity ├── PluginEnhancerAnura.php ├── PluginEnhancerAnuraRepository.php ├── PluginEnhancerBlacklist.php ├── PluginEnhancerBlacklistRepository.php ├── PluginEnhancerCityStatePostalCode.php ├── PluginEnhancerCityStatePostalCodeRepository.php ├── PluginEnhancerGenderName.php ├── PluginEnhancerGenderNameRepository.php ├── PluginEnhancerTrustedform.php └── PluginEnhancerTrustedformRepository.php ├── Event ├── ContactLedgerContextEvent.php └── MauticEnhancerEvent.php ├── EventListener ├── LeadSubscriber.php ├── LeadTimelineSubscriber.php └── PluginSubscriber.php ├── Helper ├── EnhancerHelper.php └── IntegrationSettings.php ├── Integration ├── AbstractEnhancerIntegration.php ├── AbstractNeustarIntegration.php ├── AgeFromBirthdateIntegration.php ├── AlcazarIntegration.php ├── AnuraIntegration.php ├── BlacklistIntegration.php ├── CityStateFromPostalCodeIntegration.php ├── CorrectAddressIntegration.php ├── FourleafIntegration.php ├── GenderFromNameIntegration.php ├── NeustarMpicIntegration.php ├── NonFreeEnhancerTrait.php ├── PhoneToPartsIntegration.php ├── RandomIntegration.php ├── TrustedFormIntegration.php ├── UrlStripperIntegration.php └── XverifyIntegration.php ├── LICENSE ├── MauticEnhancerBundle.php ├── MauticEnhancerEvents.php ├── Model ├── AnuraModel.php ├── BlacklistModel.php ├── CityStatePostalCodeModel.php ├── GenderNameModel.php └── TrustedformModel.php ├── README.md ├── Tests └── Integration │ ├── AbstractEnhancerIntegrationTest.php │ ├── AbstractNeustarIntegrationTest.php │ ├── AgeFromBirthdateIntegrationTest.php │ ├── AlcazarIntegrationTest.php │ ├── BlacklistIntegrationTest.php │ ├── CityStateFromPostalCodeIntegrationTest.php │ ├── CorrectAddressIntegrationTest.php │ ├── FourleafIntegrationTest.php │ ├── GenderFromNameIntegrationTest.php │ ├── PhoneToPartsIntegrationTest.php │ ├── RandomIntegrationTest.php │ ├── UrlStripperIntegrationTest.php │ └── XverifyIntegrationTest.php ├── Translations └── en_US │ └── messages.ini ├── Views └── Timeline │ └── enhancer.html.php └── composer.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/.travis.yml -------------------------------------------------------------------------------- /Assets/img/agefrombirthdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/agefrombirthdate.png -------------------------------------------------------------------------------- /Assets/img/alcazar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/alcazar.png -------------------------------------------------------------------------------- /Assets/img/anura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/anura.png -------------------------------------------------------------------------------- /Assets/img/blacklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/blacklist.png -------------------------------------------------------------------------------- /Assets/img/correctaddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/correctaddress.png -------------------------------------------------------------------------------- /Assets/img/fourleaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/fourleaf.png -------------------------------------------------------------------------------- /Assets/img/genderfromname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/genderfromname.png -------------------------------------------------------------------------------- /Assets/img/phonetoparts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/phonetoparts.png -------------------------------------------------------------------------------- /Assets/img/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/random.png -------------------------------------------------------------------------------- /Assets/img/trustedform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/trustedform.png -------------------------------------------------------------------------------- /Assets/img/urlstripper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/urlstripper.png -------------------------------------------------------------------------------- /Assets/img/xverify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Assets/img/xverify.png -------------------------------------------------------------------------------- /Command/EnhanceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Command/EnhanceCommand.php -------------------------------------------------------------------------------- /Command/InstallCityStatePostalCodeDataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Command/InstallCityStatePostalCodeDataCommand.php -------------------------------------------------------------------------------- /Command/InstallGenderNamesDataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Command/InstallGenderNamesDataCommand.php -------------------------------------------------------------------------------- /Command/TrustedformCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Command/TrustedformCommand.php -------------------------------------------------------------------------------- /Command/UpdateCorrectAddressDataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Command/UpdateCorrectAddressDataCommand.php -------------------------------------------------------------------------------- /Config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Config/config.php -------------------------------------------------------------------------------- /Entity/PluginEnhancerAnura.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Entity/PluginEnhancerAnura.php -------------------------------------------------------------------------------- /Entity/PluginEnhancerAnuraRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Entity/PluginEnhancerAnuraRepository.php -------------------------------------------------------------------------------- /Entity/PluginEnhancerBlacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Entity/PluginEnhancerBlacklist.php -------------------------------------------------------------------------------- /Entity/PluginEnhancerBlacklistRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Entity/PluginEnhancerBlacklistRepository.php -------------------------------------------------------------------------------- /Entity/PluginEnhancerCityStatePostalCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Entity/PluginEnhancerCityStatePostalCode.php -------------------------------------------------------------------------------- /Entity/PluginEnhancerCityStatePostalCodeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Entity/PluginEnhancerCityStatePostalCodeRepository.php -------------------------------------------------------------------------------- /Entity/PluginEnhancerGenderName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Entity/PluginEnhancerGenderName.php -------------------------------------------------------------------------------- /Entity/PluginEnhancerGenderNameRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Entity/PluginEnhancerGenderNameRepository.php -------------------------------------------------------------------------------- /Entity/PluginEnhancerTrustedform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Entity/PluginEnhancerTrustedform.php -------------------------------------------------------------------------------- /Entity/PluginEnhancerTrustedformRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Entity/PluginEnhancerTrustedformRepository.php -------------------------------------------------------------------------------- /Event/ContactLedgerContextEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Event/ContactLedgerContextEvent.php -------------------------------------------------------------------------------- /Event/MauticEnhancerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Event/MauticEnhancerEvent.php -------------------------------------------------------------------------------- /EventListener/LeadSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/EventListener/LeadSubscriber.php -------------------------------------------------------------------------------- /EventListener/LeadTimelineSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/EventListener/LeadTimelineSubscriber.php -------------------------------------------------------------------------------- /EventListener/PluginSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/EventListener/PluginSubscriber.php -------------------------------------------------------------------------------- /Helper/EnhancerHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Helper/EnhancerHelper.php -------------------------------------------------------------------------------- /Helper/IntegrationSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Helper/IntegrationSettings.php -------------------------------------------------------------------------------- /Integration/AbstractEnhancerIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/AbstractEnhancerIntegration.php -------------------------------------------------------------------------------- /Integration/AbstractNeustarIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/AbstractNeustarIntegration.php -------------------------------------------------------------------------------- /Integration/AgeFromBirthdateIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/AgeFromBirthdateIntegration.php -------------------------------------------------------------------------------- /Integration/AlcazarIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/AlcazarIntegration.php -------------------------------------------------------------------------------- /Integration/AnuraIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/AnuraIntegration.php -------------------------------------------------------------------------------- /Integration/BlacklistIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/BlacklistIntegration.php -------------------------------------------------------------------------------- /Integration/CityStateFromPostalCodeIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/CityStateFromPostalCodeIntegration.php -------------------------------------------------------------------------------- /Integration/CorrectAddressIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/CorrectAddressIntegration.php -------------------------------------------------------------------------------- /Integration/FourleafIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/FourleafIntegration.php -------------------------------------------------------------------------------- /Integration/GenderFromNameIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/GenderFromNameIntegration.php -------------------------------------------------------------------------------- /Integration/NeustarMpicIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/NeustarMpicIntegration.php -------------------------------------------------------------------------------- /Integration/NonFreeEnhancerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/NonFreeEnhancerTrait.php -------------------------------------------------------------------------------- /Integration/PhoneToPartsIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/PhoneToPartsIntegration.php -------------------------------------------------------------------------------- /Integration/RandomIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/RandomIntegration.php -------------------------------------------------------------------------------- /Integration/TrustedFormIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/TrustedFormIntegration.php -------------------------------------------------------------------------------- /Integration/UrlStripperIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/UrlStripperIntegration.php -------------------------------------------------------------------------------- /Integration/XverifyIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Integration/XverifyIntegration.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/LICENSE -------------------------------------------------------------------------------- /MauticEnhancerBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/MauticEnhancerBundle.php -------------------------------------------------------------------------------- /MauticEnhancerEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/MauticEnhancerEvents.php -------------------------------------------------------------------------------- /Model/AnuraModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Model/AnuraModel.php -------------------------------------------------------------------------------- /Model/BlacklistModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Model/BlacklistModel.php -------------------------------------------------------------------------------- /Model/CityStatePostalCodeModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Model/CityStatePostalCodeModel.php -------------------------------------------------------------------------------- /Model/GenderNameModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Model/GenderNameModel.php -------------------------------------------------------------------------------- /Model/TrustedformModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Model/TrustedformModel.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Integration/AbstractEnhancerIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/AbstractEnhancerIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/AbstractNeustarIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/AbstractNeustarIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/AgeFromBirthdateIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/AgeFromBirthdateIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/AlcazarIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/AlcazarIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/BlacklistIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/BlacklistIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/CityStateFromPostalCodeIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/CityStateFromPostalCodeIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/CorrectAddressIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/CorrectAddressIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/FourleafIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/FourleafIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/GenderFromNameIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/GenderFromNameIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/PhoneToPartsIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/PhoneToPartsIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/RandomIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/RandomIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/UrlStripperIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/UrlStripperIntegrationTest.php -------------------------------------------------------------------------------- /Tests/Integration/XverifyIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Tests/Integration/XverifyIntegrationTest.php -------------------------------------------------------------------------------- /Translations/en_US/messages.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Translations/en_US/messages.ini -------------------------------------------------------------------------------- /Views/Timeline/enhancer.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/Views/Timeline/enhancer.html.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDMSGroup/mautic-enhancer/HEAD/composer.json --------------------------------------------------------------------------------