├── LICENSE ├── README.md ├── assets └── css │ └── admin.css ├── composer.json ├── composer.lock ├── includes ├── class-lean-wp.php └── lib │ ├── class-lean-wp-comments2posts.php │ ├── class-lean-wp-dashboard-widget.php │ ├── class-lean-wp-disable-embeds.php │ ├── class-lean-wp-disable-emojis.php │ ├── class-lean-wp-disable-rest-api.php │ ├── class-lean-wp-remove-comments-feed-link.php │ └── widget.php ├── index.php ├── lean-wp.php ├── readme.txt ├── vendor ├── afragen │ └── wp-dependency-installer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── wp-dependency-installer.php ├── autoload.php ├── collizo4sky │ └── persist-admin-notices-dismissal │ │ ├── README.md │ │ ├── dismiss-notice.js │ │ └── persist-admin-notices-dismissal.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 │ └── installers │ ├── .editorconfig │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── _config.yml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ ├── Composer │ │ └── Installers │ │ │ ├── AglInstaller.php │ │ │ ├── AimeosInstaller.php │ │ │ ├── AnnotateCmsInstaller.php │ │ │ ├── AsgardInstaller.php │ │ │ ├── AttogramInstaller.php │ │ │ ├── BaseInstaller.php │ │ │ ├── BitrixInstaller.php │ │ │ ├── BonefishInstaller.php │ │ │ ├── CakePHPInstaller.php │ │ │ ├── ChefInstaller.php │ │ │ ├── ClanCatsFrameworkInstaller.php │ │ │ ├── CockpitInstaller.php │ │ │ ├── CodeIgniterInstaller.php │ │ │ ├── Concrete5Installer.php │ │ │ ├── CraftInstaller.php │ │ │ ├── CroogoInstaller.php │ │ │ ├── DecibelInstaller.php │ │ │ ├── DokuWikiInstaller.php │ │ │ ├── DolibarrInstaller.php │ │ │ ├── DrupalInstaller.php │ │ │ ├── ElggInstaller.php │ │ │ ├── EliasisInstaller.php │ │ │ ├── ExpressionEngineInstaller.php │ │ │ ├── EzPlatformInstaller.php │ │ │ ├── FuelInstaller.php │ │ │ ├── FuelphpInstaller.php │ │ │ ├── GravInstaller.php │ │ │ ├── HuradInstaller.php │ │ │ ├── ImageCMSInstaller.php │ │ │ ├── Installer.php │ │ │ ├── ItopInstaller.php │ │ │ ├── JoomlaInstaller.php │ │ │ ├── KanboardInstaller.php │ │ │ ├── KirbyInstaller.php │ │ │ ├── KodiCMSInstaller.php │ │ │ ├── KohanaInstaller.php │ │ │ ├── LanManagementSystemInstaller.php │ │ │ ├── LaravelInstaller.php │ │ │ ├── LavaLiteInstaller.php │ │ │ ├── LithiumInstaller.php │ │ │ ├── MODULEWorkInstaller.php │ │ │ ├── MODXEvoInstaller.php │ │ │ ├── MagentoInstaller.php │ │ │ ├── MakoInstaller.php │ │ │ ├── MauticInstaller.php │ │ │ ├── MayaInstaller.php │ │ │ ├── MediaWikiInstaller.php │ │ │ ├── MicroweberInstaller.php │ │ │ ├── MoodleInstaller.php │ │ │ ├── OctoberInstaller.php │ │ │ ├── OntoWikiInstaller.php │ │ │ ├── OsclassInstaller.php │ │ │ ├── OxidInstaller.php │ │ │ ├── PPIInstaller.php │ │ │ ├── PhiftyInstaller.php │ │ │ ├── PhpBBInstaller.php │ │ │ ├── PimcoreInstaller.php │ │ │ ├── PiwikInstaller.php │ │ │ ├── PlentymarketsInstaller.php │ │ │ ├── Plugin.php │ │ │ ├── PortoInstaller.php │ │ │ ├── PrestashopInstaller.php │ │ │ ├── PuppetInstaller.php │ │ │ ├── RadPHPInstaller.php │ │ │ ├── ReIndexInstaller.php │ │ │ ├── RedaxoInstaller.php │ │ │ ├── RoundcubeInstaller.php │ │ │ ├── SMFInstaller.php │ │ │ ├── ShopwareInstaller.php │ │ │ ├── SilverStripeInstaller.php │ │ │ ├── SyDESInstaller.php │ │ │ ├── Symfony1Installer.php │ │ │ ├── TYPO3CmsInstaller.php │ │ │ ├── TYPO3FlowInstaller.php │ │ │ ├── TheliaInstaller.php │ │ │ ├── TuskInstaller.php │ │ │ ├── UserFrostingInstaller.php │ │ │ ├── VanillaInstaller.php │ │ │ ├── VgmcpInstaller.php │ │ │ ├── WHMCSInstaller.php │ │ │ ├── WolfCMSInstaller.php │ │ │ ├── WordPressInstaller.php │ │ │ ├── YawikInstaller.php │ │ │ ├── ZendInstaller.php │ │ │ └── ZikulaInstaller.php │ └── bootstrap.php │ └── tests │ ├── Composer │ └── Installers │ │ └── Test │ │ ├── AsgardInstallerTest.php │ │ ├── BitrixInstallerTest.php │ │ ├── CakePHPInstallerTest.php │ │ ├── CraftInstallerTest.php │ │ ├── DokuWikiInstallerTest.php │ │ ├── GravInstallerTest.php │ │ ├── InstallerTest.php │ │ ├── MayaInstallerTest.php │ │ ├── MediaWikiInstallerTest.php │ │ ├── OctoberInstallerTest.php │ │ ├── OntoWikiInstallerTest.php │ │ ├── PimcoreInstallerTest.php │ │ ├── PiwikInstallerTest.php │ │ ├── SyDESInstallerTest.php │ │ ├── TestCase.php │ │ ├── VgmcpInstallerTest.php │ │ └── YawikInstallerTest.php │ └── bootstrap.php └── wp-dependencies.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/assets/css/admin.css -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/composer.lock -------------------------------------------------------------------------------- /includes/class-lean-wp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/includes/class-lean-wp.php -------------------------------------------------------------------------------- /includes/lib/class-lean-wp-comments2posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/includes/lib/class-lean-wp-comments2posts.php -------------------------------------------------------------------------------- /includes/lib/class-lean-wp-dashboard-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/includes/lib/class-lean-wp-dashboard-widget.php -------------------------------------------------------------------------------- /includes/lib/class-lean-wp-disable-embeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/includes/lib/class-lean-wp-disable-embeds.php -------------------------------------------------------------------------------- /includes/lib/class-lean-wp-disable-emojis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/includes/lib/class-lean-wp-disable-emojis.php -------------------------------------------------------------------------------- /includes/lib/class-lean-wp-disable-rest-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/includes/lib/class-lean-wp-disable-rest-api.php -------------------------------------------------------------------------------- /includes/lib/class-lean-wp-remove-comments-feed-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/includes/lib/class-lean-wp-remove-comments-feed-link.php -------------------------------------------------------------------------------- /includes/lib/widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senlin/lean-wp/HEAD/includes/lib/widget.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |