├── .env.example ├── .env.travis ├── .gitignore ├── .php_cs ├── .travis.yml ├── app ├── Console │ ├── Commands │ │ └── WordPress │ │ │ ├── AbstractMakeCommand.php │ │ │ ├── EnvironmentTrait.php │ │ │ ├── InstallCommand.php │ │ │ ├── KeysMakeCommand.php │ │ │ ├── MultisiteInstallCommand.php │ │ │ ├── MultisiteUninstallCommand.php │ │ │ ├── PluginListCommand.php │ │ │ ├── PluginMakeCommand.php │ │ │ ├── StatusCommand.php │ │ │ ├── Storage.php │ │ │ ├── ThemeListCommand.php │ │ │ ├── ThemeMakeCommand.php │ │ │ ├── UninstallCommand.php │ │ │ ├── plugin-stubs │ │ │ ├── minimum │ │ │ │ └── main.php │ │ │ └── simple │ │ │ │ ├── classes │ │ │ │ └── .gitkeep │ │ │ │ ├── languages │ │ │ │ └── en │ │ │ │ │ └── messages.php │ │ │ │ └── main.php │ │ │ └── theme-stubs │ │ │ ├── bootstrap │ │ │ ├── blade │ │ │ │ ├── index.blade.php │ │ │ │ └── layout.blade.php │ │ │ ├── classes │ │ │ │ └── .gitkeep │ │ │ ├── functions.php │ │ │ ├── index.php │ │ │ ├── languages │ │ │ │ └── en │ │ │ │ │ └── messages.php │ │ │ └── style.css │ │ │ ├── minimum │ │ │ ├── functions.php │ │ │ ├── index.php │ │ │ └── style.css │ │ │ └── simple │ │ │ ├── blade │ │ │ ├── index.blade.php │ │ │ └── layout.blade.php │ │ │ ├── classes │ │ │ └── .gitkeep │ │ │ ├── functions.php │ │ │ ├── index.php │ │ │ ├── languages │ │ │ └── en │ │ │ │ └── messages.php │ │ │ └── style.css │ └── Kernel.php ├── Database │ ├── Migrations │ │ ├── App_1_0.php │ │ └── Framework_1_0.php │ └── Seeds │ │ ├── Production.php │ │ └── Test.php ├── Events │ └── Event.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ └── WordPress │ │ │ ├── BlogAdminController.php │ │ │ ├── CollaborationController.php │ │ │ ├── Controller.php │ │ │ ├── FileProvideController.php │ │ │ ├── GateController.php │ │ │ ├── SetupController.php │ │ │ ├── SiteAdminController.php │ │ │ ├── TemplateController.php │ │ │ └── UserController.php │ ├── Middleware │ │ └── WordPress │ │ │ ├── BlogAdminBootstrapMiddleware.php │ │ │ ├── SiteAdminBootstrapMiddleware.php │ │ │ └── TemplateBootstrapMiddleware.php │ ├── routes.php │ └── wp-routes.php ├── Jobs │ └── Job.php ├── Listeners │ └── Listener.php ├── Providers │ ├── AppServiceProvider.php │ ├── DatabaseServiceProvider.php │ ├── EventServiceProvider.php │ ├── PHP7ServiceProvider.php │ └── WordPressServiceProvider.php ├── Services │ ├── BladeExpander.php │ ├── ContentClassLoader.php │ ├── WordPress.php │ ├── WordPressService.php │ └── definition.php ├── helpers.php └── version.php ├── artisan ├── bootstrap └── app.php ├── composer.json ├── composer.lock ├── config └── wordpress.php ├── examples ├── apache │ └── wordpress+.conf ├── install.png └── nginx │ └── wordpress+.conf ├── phpunit.xml ├── public ├── .htaccess └── index.php ├── readme-ja.md ├── readme.md ├── resources ├── lang │ ├── en │ │ ├── messages.php │ │ └── validation.php │ └── ja │ │ ├── messages.php │ │ └── validation.php └── views │ ├── bug-report.blade.php │ └── disabled-feature.blade.php ├── server.php ├── storage ├── app │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Console │ ├── InstallCommandTest.php │ ├── PluginMakeCommandTest.php │ └── ThemeMakeCommandTest.php ├── ConsoleCommandTestCase.php ├── Routing │ └── AdminRoutingTest.php └── TestCase.php └── wordpress ├── index.php ├── license.txt ├── readme.html ├── wp-activate.php ├── wp-admin ├── about.php ├── admin-ajax.php ├── admin-footer.php ├── admin-functions.php ├── admin-header.php ├── admin-post.php ├── admin.php ├── async-upload.php ├── comment.php ├── credits.php ├── css │ ├── about-rtl.css │ ├── about.css │ ├── admin-menu-rtl.css │ ├── admin-menu.css │ ├── color-picker-rtl.css │ ├── color-picker-rtl.min.css │ ├── color-picker.css │ ├── color-picker.min.css │ ├── colors │ │ ├── _admin.scss │ │ ├── _mixins.scss │ │ ├── _variables.scss │ │ ├── blue │ │ │ ├── colors-rtl.css │ │ │ ├── colors-rtl.min.css │ │ │ ├── colors.css │ │ │ ├── colors.min.css │ │ │ └── colors.scss │ │ ├── coffee │ │ │ ├── colors-rtl.css │ │ │ ├── colors-rtl.min.css │ │ │ ├── colors.css │ │ │ ├── colors.min.css │ │ │ └── colors.scss │ │ ├── ectoplasm │ │ │ ├── colors-rtl.css │ │ │ ├── colors-rtl.min.css │ │ │ ├── colors.css │ │ │ ├── colors.min.css │ │ │ └── colors.scss │ │ ├── light │ │ │ ├── colors-rtl.css │ │ │ ├── colors-rtl.min.css │ │ │ ├── colors.css │ │ │ ├── colors.min.css │ │ │ └── colors.scss │ │ ├── midnight │ │ │ ├── colors-rtl.css │ │ │ ├── colors-rtl.min.css │ │ │ ├── colors.css │ │ │ ├── colors.min.css │ │ │ └── colors.scss │ │ ├── ocean │ │ │ ├── colors-rtl.css │ │ │ ├── colors-rtl.min.css │ │ │ ├── colors.css │ │ │ ├── colors.min.css │ │ │ └── colors.scss │ │ └── sunrise │ │ │ ├── colors-rtl.css │ │ │ ├── colors-rtl.min.css │ │ │ ├── colors.css │ │ │ ├── colors.min.css │ │ │ └── colors.scss │ ├── common-rtl.css │ ├── common.css │ ├── customize-controls-rtl.css │ ├── customize-controls-rtl.min.css │ ├── customize-controls.css │ ├── customize-controls.min.css │ ├── customize-nav-menus-rtl.css │ ├── customize-nav-menus-rtl.min.css │ ├── customize-nav-menus.css │ ├── customize-nav-menus.min.css │ ├── customize-widgets-rtl.css │ ├── customize-widgets-rtl.min.css │ ├── customize-widgets.css │ ├── customize-widgets.min.css │ ├── dashboard-rtl.css │ ├── dashboard.css │ ├── deprecated-media-rtl.css │ ├── deprecated-media-rtl.min.css │ ├── deprecated-media.css │ ├── deprecated-media.min.css │ ├── edit-rtl.css │ ├── edit.css │ ├── farbtastic-rtl.css │ ├── farbtastic.css │ ├── forms-rtl.css │ ├── forms.css │ ├── ie-rtl.css │ ├── ie-rtl.min.css │ ├── ie.css │ ├── ie.min.css │ ├── install-rtl.css │ ├── install-rtl.min.css │ ├── install.css │ ├── install.min.css │ ├── l10n-rtl.css │ ├── l10n.css │ ├── list-tables-rtl.css │ ├── list-tables.css │ ├── login-rtl.css │ ├── login-rtl.min.css │ ├── login.css │ ├── login.min.css │ ├── media-rtl.css │ ├── media.css │ ├── nav-menus-rtl.css │ ├── nav-menus.css │ ├── press-this-editor-rtl.css │ ├── press-this-editor.css │ ├── press-this-rtl.css │ ├── press-this-rtl.min.css │ ├── press-this.css │ ├── press-this.min.css │ ├── revisions-rtl.css │ ├── revisions.css │ ├── site-icon-rtl.css │ ├── site-icon.css │ ├── themes-rtl.css │ ├── themes.css │ ├── widgets-rtl.css │ ├── widgets.css │ ├── wp-admin-rtl.css │ ├── wp-admin-rtl.min.css │ ├── wp-admin.css │ └── wp-admin.min.css ├── custom-background.php ├── custom-header.php ├── customize.php ├── edit-comments.php ├── edit-form-advanced.php ├── edit-form-comment.php ├── edit-link-form.php ├── edit-tag-form.php ├── edit-tags.php ├── edit.php ├── export.php ├── freedoms.php ├── images │ ├── align-center-2x.png │ ├── align-center.png │ ├── align-left-2x.png │ ├── align-left.png │ ├── align-none-2x.png │ ├── align-none.png │ ├── align-right-2x.png │ ├── align-right.png │ ├── arrows-2x.png │ ├── arrows.png │ ├── browser.png │ ├── bubble_bg-2x.gif │ ├── bubble_bg.gif │ ├── comment-grey-bubble-2x.png │ ├── comment-grey-bubble.png │ ├── date-button-2x.gif │ ├── date-button.gif │ ├── generic.png │ ├── icons32-2x.png │ ├── icons32-vs-2x.png │ ├── icons32-vs.png │ ├── icons32.png │ ├── imgedit-icons-2x.png │ ├── imgedit-icons.png │ ├── list-2x.png │ ├── list.png │ ├── loading.gif │ ├── marker.png │ ├── mask.png │ ├── media-button-2x.png │ ├── media-button-image.gif │ ├── media-button-music.gif │ ├── media-button-other.gif │ ├── media-button-video.gif │ ├── media-button.png │ ├── menu-2x.png │ ├── menu-vs-2x.png │ ├── menu-vs.png │ ├── menu.png │ ├── no.png │ ├── post-formats-vs.png │ ├── post-formats.png │ ├── post-formats32-vs.png │ ├── post-formats32.png │ ├── resize-2x.gif │ ├── resize-rtl-2x.gif │ ├── resize-rtl.gif │ ├── resize.gif │ ├── se.png │ ├── sort-2x.gif │ ├── sort.gif │ ├── spinner-2x.gif │ ├── spinner.gif │ ├── stars-2x.png │ ├── stars.png │ ├── w-logo-blue.png │ ├── w-logo-white.png │ ├── wheel.png │ ├── wordpress-logo-white.svg │ ├── wordpress-logo.png │ ├── wordpress-logo.svg │ ├── wpspin_light-2x.gif │ ├── wpspin_light.gif │ ├── xit-2x.gif │ ├── xit.gif │ └── yes.png ├── import.php ├── includes │ ├── admin-filters.php │ ├── admin.php │ ├── ajax-actions.php │ ├── bookmark.php │ ├── class-ftp-pure.php │ ├── class-ftp-sockets.php │ ├── class-ftp.php │ ├── class-pclzip.php │ ├── class-wp-comments-list-table.php │ ├── class-wp-filesystem-base.php │ ├── class-wp-filesystem-direct.php │ ├── class-wp-filesystem-ftpext.php │ ├── class-wp-filesystem-ftpsockets.php │ ├── class-wp-filesystem-ssh2.php │ ├── class-wp-importer.php │ ├── class-wp-links-list-table.php │ ├── class-wp-list-table.php │ ├── class-wp-media-list-table.php │ ├── class-wp-ms-sites-list-table.php │ ├── class-wp-ms-themes-list-table.php │ ├── class-wp-ms-users-list-table.php │ ├── class-wp-plugin-install-list-table.php │ ├── class-wp-plugins-list-table.php │ ├── class-wp-posts-list-table.php │ ├── class-wp-press-this.php │ ├── class-wp-site-icon.php │ ├── class-wp-terms-list-table.php │ ├── class-wp-theme-install-list-table.php │ ├── class-wp-themes-list-table.php │ ├── class-wp-upgrader-skins.php │ ├── class-wp-upgrader.php │ ├── class-wp-users-list-table.php │ ├── comment.php │ ├── continents-cities.php │ ├── dashboard.php │ ├── deprecated.php │ ├── export.php │ ├── file.php │ ├── image-edit.php │ ├── image.php │ ├── import.php │ ├── list-table.php │ ├── media.php │ ├── menu.php │ ├── meta-boxes.php │ ├── misc.php │ ├── ms-admin-filters.php │ ├── ms-deprecated.php │ ├── ms.php │ ├── nav-menu.php │ ├── plugin-install.php │ ├── plugin.php │ ├── post.php │ ├── revision.php │ ├── schema.php │ ├── screen.php │ ├── taxonomy.php │ ├── template.php │ ├── theme-install.php │ ├── theme.php │ ├── translation-install.php │ ├── update-core.php │ ├── update.php │ ├── upgrade.php │ ├── user.php │ └── widgets.php ├── index.php ├── install-helper.php ├── install.php ├── js │ ├── accordion.js │ ├── accordion.min.js │ ├── bookmarklet.js │ ├── bookmarklet.min.js │ ├── color-picker.js │ ├── color-picker.min.js │ ├── comment.js │ ├── comment.min.js │ ├── common.js │ ├── common.min.js │ ├── custom-background.js │ ├── custom-background.min.js │ ├── custom-header.js │ ├── customize-controls.js │ ├── customize-controls.min.js │ ├── customize-nav-menus.js │ ├── customize-nav-menus.min.js │ ├── customize-widgets.js │ ├── customize-widgets.min.js │ ├── dashboard.js │ ├── dashboard.min.js │ ├── edit-comments.js │ ├── edit-comments.min.js │ ├── editor-expand.js │ ├── editor-expand.min.js │ ├── editor.js │ ├── editor.min.js │ ├── farbtastic.js │ ├── gallery.js │ ├── gallery.min.js │ ├── image-edit.js │ ├── image-edit.min.js │ ├── inline-edit-post.js │ ├── inline-edit-post.min.js │ ├── inline-edit-tax.js │ ├── inline-edit-tax.min.js │ ├── iris.min.js │ ├── language-chooser.js │ ├── language-chooser.min.js │ ├── link.js │ ├── link.min.js │ ├── media-gallery.js │ ├── media-gallery.min.js │ ├── media-upload.js │ ├── media-upload.min.js │ ├── media.js │ ├── media.min.js │ ├── nav-menu.js │ ├── nav-menu.min.js │ ├── password-strength-meter.js │ ├── password-strength-meter.min.js │ ├── plugin-install.js │ ├── plugin-install.min.js │ ├── post.js │ ├── post.min.js │ ├── postbox.js │ ├── postbox.min.js │ ├── press-this.js │ ├── press-this.min.js │ ├── revisions.js │ ├── revisions.min.js │ ├── set-post-thumbnail.js │ ├── set-post-thumbnail.min.js │ ├── svg-painter.js │ ├── svg-painter.min.js │ ├── tags-box.js │ ├── tags-box.min.js │ ├── tags.js │ ├── tags.min.js │ ├── theme.js │ ├── theme.min.js │ ├── updates.js │ ├── updates.min.js │ ├── user-profile.js │ ├── user-profile.min.js │ ├── user-suggest.js │ ├── user-suggest.min.js │ ├── widgets.js │ ├── widgets.min.js │ ├── word-count.js │ ├── word-count.min.js │ ├── wp-fullscreen-stub.js │ ├── wp-fullscreen-stub.min.js │ ├── xfn.js │ └── xfn.min.js ├── link-add.php ├── link-manager.php ├── link-parse-opml.php ├── link.php ├── load-scripts.php ├── load-styles.php ├── maint │ └── repair.php ├── media-new.php ├── media-upload.php ├── media.php ├── menu-header.php ├── menu.php ├── moderation.php ├── ms-admin.php ├── ms-delete-site.php ├── ms-edit.php ├── ms-options.php ├── ms-sites.php ├── ms-themes.php ├── ms-upgrade-network.php ├── ms-users.php ├── my-sites.php ├── nav-menus.php ├── network.php ├── network │ ├── about.php │ ├── admin.php │ ├── credits.php │ ├── edit.php │ ├── freedoms.php │ ├── index.php │ ├── menu.php │ ├── plugin-editor.php │ ├── plugin-install.php │ ├── plugins.php │ ├── profile.php │ ├── settings.php │ ├── setup.php │ ├── site-info.php │ ├── site-new.php │ ├── site-settings.php │ ├── site-themes.php │ ├── site-users.php │ ├── sites.php │ ├── theme-editor.php │ ├── theme-install.php │ ├── themes.php │ ├── update-core.php │ ├── update.php │ ├── upgrade.php │ ├── user-edit.php │ ├── user-new.php │ └── users.php ├── options-discussion.php ├── options-general.php ├── options-head.php ├── options-media.php ├── options-permalink.php ├── options-reading.php ├── options-writing.php ├── options.php ├── plugin-editor.php ├── plugin-install.php ├── plugins.php ├── post-new.php ├── post.php ├── press-this.php ├── profile.php ├── revision.php ├── setup-config.php ├── theme-editor.php ├── theme-install.php ├── themes.php ├── tools.php ├── update-core.php ├── update.php ├── upgrade-functions.php ├── upgrade.php ├── upload.php ├── user-edit.php ├── user-new.php ├── user │ ├── about.php │ ├── admin.php │ ├── credits.php │ ├── freedoms.php │ ├── index.php │ ├── menu.php │ ├── profile.php │ └── user-edit.php ├── users.php └── widgets.php ├── wp-blog-header.php ├── wp-comments-post.php ├── wp-config-sample.php ├── wp-config.php ├── wp-content ├── .gitignore ├── index.php ├── languages │ └── .gitignore ├── plugins │ ├── .gitignore │ ├── akismet │ │ └── index.php │ ├── hello.php │ ├── index.php │ └── wp-multibyte-patch │ │ ├── ext │ │ └── ja │ │ │ ├── admin.css │ │ │ └── class.php │ │ ├── js │ │ ├── word-count.js │ │ ├── word-count.min.js │ │ ├── wplink.js │ │ └── wplink.min.js │ │ ├── languages │ │ ├── wp-multibyte-patch-ja.mo │ │ ├── wp-multibyte-patch-ja.po │ │ └── wp-multibyte-patch.pot │ │ ├── readme.txt │ │ ├── wp-multibyte-patch.php │ │ ├── wpmp-config-sample-ja.php │ │ └── wpmp-load.php ├── themes │ ├── .gitignore │ ├── index.php │ ├── twentyfifteen │ │ ├── 404.php │ │ ├── archive.php │ │ ├── author-bio.php │ │ ├── comments.php │ │ ├── content-link.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-search.php │ │ ├── content.php │ │ ├── css │ │ │ ├── editor-style.css │ │ │ ├── ie.css │ │ │ └── ie7.css │ │ ├── footer.php │ │ ├── functions.php │ │ ├── genericons │ │ │ ├── COPYING.txt │ │ │ ├── Genericons.eot │ │ │ ├── Genericons.svg │ │ │ ├── Genericons.ttf │ │ │ ├── Genericons.woff │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── genericons.css │ │ ├── header.php │ │ ├── image.php │ │ ├── inc │ │ │ ├── back-compat.php │ │ │ ├── custom-header.php │ │ │ ├── customizer.php │ │ │ └── template-tags.php │ │ ├── index.php │ │ ├── js │ │ │ ├── color-scheme-control.js │ │ │ ├── customize-preview.js │ │ │ ├── functions.js │ │ │ ├── html5.js │ │ │ ├── keyboard-image-navigation.js │ │ │ └── skip-link-focus-fix.js │ │ ├── languages │ │ │ └── twentyfifteen.pot │ │ ├── page.php │ │ ├── readme.txt │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── sidebar.php │ │ ├── single.php │ │ └── style.css │ ├── twentyfourteen │ │ ├── 404.php │ │ ├── archive.php │ │ ├── author.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── content-aside.php │ │ ├── content-audio.php │ │ ├── content-featured-post.php │ │ ├── content-gallery.php │ │ ├── content-image.php │ │ ├── content-link.php │ │ ├── content-none.php │ │ ├── content-page.php │ │ ├── content-quote.php │ │ ├── content-video.php │ │ ├── content.php │ │ ├── css │ │ │ ├── editor-style.css │ │ │ └── ie.css │ │ ├── featured-content.php │ │ ├── footer.php │ │ ├── functions.php │ │ ├── genericons │ │ │ ├── COPYING.txt │ │ │ ├── Genericons-Regular.otf │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── font │ │ │ │ ├── genericons-regular-webfont.eot │ │ │ │ ├── genericons-regular-webfont.svg │ │ │ │ ├── genericons-regular-webfont.ttf │ │ │ │ └── genericons-regular-webfont.woff │ │ │ └── genericons.css │ │ ├── header.php │ │ ├── image.php │ │ ├── images │ │ │ ├── pattern-dark.svg │ │ │ └── pattern-light.svg │ │ ├── inc │ │ │ ├── back-compat.php │ │ │ ├── custom-header.php │ │ │ ├── customizer.php │ │ │ ├── featured-content.php │ │ │ ├── template-tags.php │ │ │ └── widgets.php │ │ ├── index.php │ │ ├── js │ │ │ ├── customizer.js │ │ │ ├── featured-content-admin.js │ │ │ ├── functions.js │ │ │ ├── html5.js │ │ │ ├── keyboard-image-navigation.js │ │ │ └── slider.js │ │ ├── languages │ │ │ └── twentyfourteen.pot │ │ ├── page-templates │ │ │ ├── contributors.php │ │ │ └── full-width.php │ │ ├── page.php │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── sidebar-content.php │ │ ├── sidebar-footer.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ ├── tag.php │ │ └── taxonomy-post_format.php │ └── twentythirteen │ │ ├── 404.php │ │ ├── archive.php │ │ ├── author-bio.php │ │ ├── author.php │ │ ├── category.php │ │ ├── comments.php │ │ ├── content-aside.php │ │ ├── content-audio.php │ │ ├── content-chat.php │ │ ├── content-gallery.php │ │ ├── content-image.php │ │ ├── content-link.php │ │ ├── content-none.php │ │ ├── content-quote.php │ │ ├── content-status.php │ │ ├── content-video.php │ │ ├── content.php │ │ ├── css │ │ ├── editor-style.css │ │ └── ie.css │ │ ├── footer.php │ │ ├── functions.php │ │ ├── genericons │ │ ├── COPYING.txt │ │ ├── Genericons-Regular.otf │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── font │ │ │ ├── genericons-regular-webfont.eot │ │ │ ├── genericons-regular-webfont.svg │ │ │ ├── genericons-regular-webfont.ttf │ │ │ └── genericons-regular-webfont.woff │ │ └── genericons.css │ │ ├── header.php │ │ ├── image.php │ │ ├── images │ │ ├── dotted-line-2x.png │ │ ├── dotted-line-light-2x.png │ │ ├── dotted-line-light.png │ │ ├── dotted-line.png │ │ ├── headers │ │ │ ├── circle-thumbnail.png │ │ │ ├── circle.png │ │ │ ├── diamond-thumbnail.png │ │ │ ├── diamond.png │ │ │ ├── star-thumbnail.png │ │ │ └── star.png │ │ ├── search-icon-2x.png │ │ └── search-icon.png │ │ ├── inc │ │ ├── back-compat.php │ │ └── custom-header.php │ │ ├── index.php │ │ ├── js │ │ ├── functions.js │ │ ├── html5.js │ │ └── theme-customizer.js │ │ ├── languages │ │ └── twentythirteen.pot │ │ ├── page.php │ │ ├── rtl.css │ │ ├── screenshot.png │ │ ├── search.php │ │ ├── sidebar-main.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── style.css │ │ ├── tag.php │ │ └── taxonomy-post_format.php ├── upgrade │ └── .gitignore └── uploads │ └── .gitignore ├── wp-cron.php ├── wp-includes ├── ID3 │ ├── getid3.lib.php │ ├── getid3.php │ ├── license.commercial.txt │ ├── license.txt │ ├── module.audio-video.asf.php │ ├── module.audio-video.flv.php │ ├── module.audio-video.matroska.php │ ├── module.audio-video.quicktime.php │ ├── module.audio-video.riff.php │ ├── module.audio.ac3.php │ ├── module.audio.dts.php │ ├── module.audio.flac.php │ ├── module.audio.mp3.php │ ├── module.audio.ogg.php │ ├── module.tag.apetag.php │ ├── module.tag.id3v1.php │ ├── module.tag.id3v2.php │ ├── module.tag.lyrics3.php │ └── readme.txt ├── SimplePie │ ├── Author.php │ ├── Cache.php │ ├── Cache │ │ ├── Base.php │ │ ├── DB.php │ │ ├── File.php │ │ ├── Memcache.php │ │ └── MySQL.php │ ├── Caption.php │ ├── Category.php │ ├── Content │ │ └── Type │ │ │ └── Sniffer.php │ ├── Copyright.php │ ├── Core.php │ ├── Credit.php │ ├── Decode │ │ └── HTML │ │ │ └── Entities.php │ ├── Enclosure.php │ ├── Exception.php │ ├── File.php │ ├── HTTP │ │ └── Parser.php │ ├── IRI.php │ ├── Item.php │ ├── Locator.php │ ├── Misc.php │ ├── Net │ │ └── IPv6.php │ ├── Parse │ │ └── Date.php │ ├── Parser.php │ ├── Rating.php │ ├── Registry.php │ ├── Restriction.php │ ├── Sanitize.php │ ├── Source.php │ ├── XML │ │ └── Declaration │ │ │ └── Parser.php │ └── gzdecode.php ├── Text │ ├── Diff.php │ └── Diff │ │ ├── Engine │ │ ├── native.php │ │ ├── shell.php │ │ ├── string.php │ │ └── xdiff.php │ │ ├── Renderer.php │ │ └── Renderer │ │ └── inline.php ├── admin-bar.php ├── atomlib.php ├── author-template.php ├── bookmark-template.php ├── bookmark.php ├── cache.php ├── canonical.php ├── capabilities.php ├── category-template.php ├── category.php ├── certificates │ └── ca-bundle.crt ├── class-IXR.php ├── class-feed.php ├── class-http.php ├── class-json.php ├── class-oembed.php ├── class-phpass.php ├── class-phpmailer.php ├── class-pop3.php ├── class-simplepie.php ├── class-smtp.php ├── class-snoopy.php ├── class-wp-admin-bar.php ├── class-wp-ajax-response.php ├── class-wp-customize-control.php ├── class-wp-customize-manager.php ├── class-wp-customize-nav-menus.php ├── class-wp-customize-panel.php ├── class-wp-customize-section.php ├── class-wp-customize-setting.php ├── class-wp-customize-widgets.php ├── class-wp-editor.php ├── class-wp-embed.php ├── class-wp-error.php ├── class-wp-http-ixr-client.php ├── class-wp-image-editor-gd.php ├── class-wp-image-editor-imagick.php ├── class-wp-image-editor.php ├── class-wp-theme.php ├── class-wp-walker.php ├── class-wp-xmlrpc-server.php ├── class-wp.php ├── class.wp-dependencies.php ├── class.wp-scripts.php ├── class.wp-styles.php ├── comment-template.php ├── comment.php ├── compat.php ├── cron.php ├── css │ ├── admin-bar-rtl.css │ ├── admin-bar-rtl.min.css │ ├── admin-bar.css │ ├── admin-bar.min.css │ ├── buttons-rtl.css │ ├── buttons-rtl.min.css │ ├── buttons.css │ ├── buttons.min.css │ ├── customize-preview.css │ ├── customize-preview.min.css │ ├── dashicons.css │ ├── dashicons.min.css │ ├── editor-rtl.css │ ├── editor-rtl.min.css │ ├── editor.css │ ├── editor.min.css │ ├── jquery-ui-dialog-rtl.css │ ├── jquery-ui-dialog-rtl.min.css │ ├── jquery-ui-dialog.css │ ├── jquery-ui-dialog.min.css │ ├── media-views-rtl.css │ ├── media-views-rtl.min.css │ ├── media-views.css │ ├── media-views.min.css │ ├── wp-auth-check-rtl.css │ ├── wp-auth-check-rtl.min.css │ ├── wp-auth-check.css │ ├── wp-auth-check.min.css │ ├── wp-pointer-rtl.css │ ├── wp-pointer-rtl.min.css │ ├── wp-pointer.css │ └── wp-pointer.min.css ├── date.php ├── default-constants.php ├── default-filters.php ├── default-widgets.php ├── deprecated.php ├── feed-atom-comments.php ├── feed-atom.php ├── feed-rdf.php ├── feed-rss.php ├── feed-rss2-comments.php ├── feed-rss2.php ├── feed.php ├── fonts │ ├── dashicons.eot │ ├── dashicons.svg │ ├── dashicons.ttf │ └── dashicons.woff ├── formatting.php ├── functions.php ├── functions.wp-scripts.php ├── functions.wp-styles.php ├── general-template.php ├── http.php ├── images │ ├── admin-bar-sprite-2x.png │ ├── admin-bar-sprite.png │ ├── arrow-pointer-blue-2x.png │ ├── arrow-pointer-blue.png │ ├── blank.gif │ ├── crystal │ │ ├── archive.png │ │ ├── audio.png │ │ ├── code.png │ │ ├── default.png │ │ ├── document.png │ │ ├── interactive.png │ │ ├── license.txt │ │ ├── spreadsheet.png │ │ ├── text.png │ │ └── video.png │ ├── down_arrow-2x.gif │ ├── down_arrow.gif │ ├── icon-pointer-flag-2x.png │ ├── icon-pointer-flag.png │ ├── media │ │ ├── archive.png │ │ ├── audio.png │ │ ├── code.png │ │ ├── default.png │ │ ├── document.png │ │ ├── interactive.png │ │ ├── spreadsheet.png │ │ ├── text.png │ │ └── video.png │ ├── rss-2x.png │ ├── rss.png │ ├── smilies │ │ ├── frownie.png │ │ ├── icon_arrow.gif │ │ ├── icon_biggrin.gif │ │ ├── icon_confused.gif │ │ ├── icon_cool.gif │ │ ├── icon_cry.gif │ │ ├── icon_eek.gif │ │ ├── icon_evil.gif │ │ ├── icon_exclaim.gif │ │ ├── icon_idea.gif │ │ ├── icon_lol.gif │ │ ├── icon_mad.gif │ │ ├── icon_mrgreen.gif │ │ ├── icon_neutral.gif │ │ ├── icon_question.gif │ │ ├── icon_razz.gif │ │ ├── icon_redface.gif │ │ ├── icon_rolleyes.gif │ │ ├── icon_sad.gif │ │ ├── icon_smile.gif │ │ ├── icon_surprised.gif │ │ ├── icon_twisted.gif │ │ ├── icon_wink.gif │ │ ├── mrgreen.png │ │ ├── rolleyes.png │ │ └── simple-smile.png │ ├── spinner-2x.gif │ ├── spinner.gif │ ├── toggle-arrow-2x.png │ ├── toggle-arrow.png │ ├── uploader-icons-2x.png │ ├── uploader-icons.png │ ├── wlw │ │ ├── wp-comments.png │ │ ├── wp-icon.png │ │ └── wp-watermark.png │ ├── wpicons-2x.png │ ├── wpicons.png │ ├── wpspin-2x.gif │ ├── wpspin.gif │ ├── xit-2x.gif │ └── xit.gif ├── js │ ├── admin-bar.js │ ├── admin-bar.min.js │ ├── autosave.js │ ├── autosave.min.js │ ├── backbone.min.js │ ├── colorpicker.js │ ├── colorpicker.min.js │ ├── comment-reply.js │ ├── comment-reply.min.js │ ├── crop │ │ ├── cropper.css │ │ ├── cropper.js │ │ ├── marqueeHoriz.gif │ │ └── marqueeVert.gif │ ├── customize-base.js │ ├── customize-base.min.js │ ├── customize-loader.js │ ├── customize-loader.min.js │ ├── customize-models.js │ ├── customize-models.min.js │ ├── customize-preview-nav-menus.js │ ├── customize-preview-nav-menus.min.js │ ├── customize-preview-widgets.js │ ├── customize-preview-widgets.min.js │ ├── customize-preview.js │ ├── customize-preview.min.js │ ├── customize-views.js │ ├── customize-views.min.js │ ├── heartbeat.js │ ├── heartbeat.min.js │ ├── hoverIntent.js │ ├── hoverIntent.min.js │ ├── imgareaselect │ │ ├── border-anim-h.gif │ │ ├── border-anim-v.gif │ │ ├── imgareaselect.css │ │ ├── jquery.imgareaselect.js │ │ └── jquery.imgareaselect.min.js │ ├── jcrop │ │ ├── Jcrop.gif │ │ ├── jquery.Jcrop.min.css │ │ └── jquery.Jcrop.min.js │ ├── jquery │ │ ├── jquery-migrate.js │ │ ├── jquery-migrate.min.js │ │ ├── jquery.color.min.js │ │ ├── jquery.form.js │ │ ├── jquery.form.min.js │ │ ├── jquery.hotkeys.js │ │ ├── jquery.hotkeys.min.js │ │ ├── jquery.js │ │ ├── jquery.masonry.min.js │ │ ├── jquery.query.js │ │ ├── jquery.schedule.js │ │ ├── jquery.serialize-object.js │ │ ├── jquery.table-hotkeys.js │ │ ├── jquery.table-hotkeys.min.js │ │ ├── jquery.ui.touch-punch.js │ │ ├── suggest.js │ │ ├── suggest.min.js │ │ └── ui │ │ │ ├── accordion.min.js │ │ │ ├── autocomplete.min.js │ │ │ ├── button.min.js │ │ │ ├── core.min.js │ │ │ ├── datepicker.min.js │ │ │ ├── dialog.min.js │ │ │ ├── draggable.min.js │ │ │ ├── droppable.min.js │ │ │ ├── effect-blind.min.js │ │ │ ├── effect-bounce.min.js │ │ │ ├── effect-clip.min.js │ │ │ ├── effect-drop.min.js │ │ │ ├── effect-explode.min.js │ │ │ ├── effect-fade.min.js │ │ │ ├── effect-fold.min.js │ │ │ ├── effect-highlight.min.js │ │ │ ├── effect-puff.min.js │ │ │ ├── effect-pulsate.min.js │ │ │ ├── effect-scale.min.js │ │ │ ├── effect-shake.min.js │ │ │ ├── effect-size.min.js │ │ │ ├── effect-slide.min.js │ │ │ ├── effect-transfer.min.js │ │ │ ├── effect.min.js │ │ │ ├── menu.min.js │ │ │ ├── mouse.min.js │ │ │ ├── position.min.js │ │ │ ├── progressbar.min.js │ │ │ ├── resizable.min.js │ │ │ ├── selectable.min.js │ │ │ ├── selectmenu.min.js │ │ │ ├── slider.min.js │ │ │ ├── sortable.min.js │ │ │ ├── spinner.min.js │ │ │ ├── tabs.min.js │ │ │ ├── tooltip.min.js │ │ │ └── widget.min.js │ ├── json2.js │ ├── json2.min.js │ ├── masonry.min.js │ ├── mce-view.js │ ├── mce-view.min.js │ ├── media-audiovideo.js │ ├── media-audiovideo.min.js │ ├── media-editor.js │ ├── media-editor.min.js │ ├── media-grid.js │ ├── media-grid.min.js │ ├── media-models.js │ ├── media-models.min.js │ ├── media-views.js │ ├── media-views.min.js │ ├── mediaelement │ │ ├── background.png │ │ ├── bigplay.png │ │ ├── bigplay.svg │ │ ├── controls.png │ │ ├── controls.svg │ │ ├── flashmediaelement.swf │ │ ├── froogaloop.min.js │ │ ├── loading.gif │ │ ├── mediaelement-and-player.min.js │ │ ├── mediaelementplayer.min.css │ │ ├── silverlightmediaelement.xap │ │ ├── skipback.png │ │ ├── wp-mediaelement.css │ │ ├── wp-mediaelement.js │ │ └── wp-playlist.js │ ├── plupload │ │ ├── handlers.js │ │ ├── handlers.min.js │ │ ├── license.txt │ │ ├── plupload.flash.swf │ │ ├── plupload.full.min.js │ │ ├── plupload.silverlight.xap │ │ ├── wp-plupload.js │ │ └── wp-plupload.min.js │ ├── quicktags.js │ ├── quicktags.min.js │ ├── shortcode.js │ ├── shortcode.min.js │ ├── swfobject.js │ ├── swfupload │ │ ├── handlers.js │ │ ├── handlers.min.js │ │ ├── license.txt │ │ ├── plugins │ │ │ ├── swfupload.cookies.js │ │ │ ├── swfupload.queue.js │ │ │ ├── swfupload.speed.js │ │ │ └── swfupload.swfobject.js │ │ ├── swfupload.js │ │ └── swfupload.swf │ ├── thickbox │ │ ├── loadingAnimation.gif │ │ ├── macFFBgHack.png │ │ ├── thickbox.css │ │ └── thickbox.js │ ├── tinymce │ │ ├── langs │ │ │ └── wp-langs-en.js │ │ ├── license.txt │ │ ├── plugins │ │ │ ├── charmap │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── colorpicker │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── compat3x │ │ │ │ ├── css │ │ │ │ │ └── dialog.css │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── hr │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ ├── moxieplayer.swf │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── paste │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── tabfocus │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── textcolor │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── wordpress │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── wpautoresize │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── wpdialogs │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── wpeditimage │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── wpemoji │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── wpgallery │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── wplink │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── wptextpattern │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ └── wpview │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ ├── skins │ │ │ ├── lightgray │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── tinymce-small.eot │ │ │ │ │ ├── tinymce-small.svg │ │ │ │ │ ├── tinymce-small.ttf │ │ │ │ │ ├── tinymce-small.woff │ │ │ │ │ ├── tinymce.eot │ │ │ │ │ ├── tinymce.svg │ │ │ │ │ ├── tinymce.ttf │ │ │ │ │ └── tinymce.woff │ │ │ │ ├── img │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── loader.gif │ │ │ │ │ ├── object.gif │ │ │ │ │ └── trans.gif │ │ │ │ ├── skin.ie7.min.css │ │ │ │ └── skin.min.css │ │ │ └── wordpress │ │ │ │ ├── images │ │ │ │ ├── audio.png │ │ │ │ ├── dashicon-edit.png │ │ │ │ ├── dashicon-no.png │ │ │ │ ├── embedded.png │ │ │ │ ├── gallery-2x.png │ │ │ │ ├── gallery.png │ │ │ │ ├── more-2x.png │ │ │ │ ├── more.png │ │ │ │ ├── pagebreak-2x.png │ │ │ │ ├── pagebreak.png │ │ │ │ ├── playlist-audio.png │ │ │ │ ├── playlist-video.png │ │ │ │ └── video.png │ │ │ │ └── wp-content.css │ │ ├── themes │ │ │ └── modern │ │ │ │ ├── theme.js │ │ │ │ └── theme.min.js │ │ ├── tiny_mce_popup.js │ │ ├── tinymce.min.js │ │ ├── utils │ │ │ ├── editable_selects.js │ │ │ ├── form_utils.js │ │ │ ├── mctabs.js │ │ │ └── validate.js │ │ ├── wp-tinymce.js.gz │ │ └── wp-tinymce.php │ ├── tw-sack.js │ ├── tw-sack.min.js │ ├── twemoji.js │ ├── twemoji.min.js │ ├── underscore.min.js │ ├── utils.js │ ├── utils.min.js │ ├── wp-a11y.js │ ├── wp-a11y.min.js │ ├── wp-ajax-response.js │ ├── wp-ajax-response.min.js │ ├── wp-auth-check.js │ ├── wp-auth-check.min.js │ ├── wp-backbone.js │ ├── wp-backbone.min.js │ ├── wp-emoji-loader.js │ ├── wp-emoji-loader.min.js │ ├── wp-emoji-release.min.js │ ├── wp-emoji.js │ ├── wp-emoji.min.js │ ├── wp-list-revisions.js │ ├── wp-list-revisions.min.js │ ├── wp-lists.js │ ├── wp-lists.min.js │ ├── wp-pointer.js │ ├── wp-pointer.min.js │ ├── wp-util.js │ ├── wp-util.min.js │ ├── wpdialog.js │ ├── wpdialog.min.js │ ├── wplink.js │ ├── wplink.min.js │ ├── zxcvbn-async.js │ ├── zxcvbn-async.min.js │ └── zxcvbn.min.js ├── kses.php ├── l10n.php ├── link-template.php ├── load.php ├── locale.php ├── media-template.php ├── media.php ├── meta.php ├── ms-blogs.php ├── ms-default-constants.php ├── ms-default-filters.php ├── ms-deprecated.php ├── ms-files.php ├── ms-functions.php ├── ms-load.php ├── ms-settings.php ├── nav-menu-template.php ├── nav-menu.php ├── option.php ├── pluggable-deprecated.php ├── pluggable.php ├── plugin.php ├── pomo │ ├── entry.php │ ├── mo.php │ ├── po.php │ ├── streams.php │ └── translations.php ├── post-formats.php ├── post-template.php ├── post-thumbnail-template.php ├── post.php ├── query.php ├── registration-functions.php ├── registration.php ├── revision.php ├── rewrite.php ├── rss-functions.php ├── rss.php ├── script-loader.php ├── session.php ├── shortcodes.php ├── taxonomy.php ├── template-loader.php ├── template.php ├── theme-compat │ ├── comments-popup.php │ ├── comments.php │ ├── footer.php │ ├── header.php │ └── sidebar.php ├── theme.php ├── update.php ├── user.php ├── vars.php ├── version.php ├── widgets.php ├── wlwmanifest.xml ├── wp-db.php └── wp-diff.php ├── wp-links-opml.php ├── wp-load.php ├── wp-login.php ├── wp-mail.php ├── wp-settings.php ├── wp-signup.php ├── wp-trackback.php └── xmlrpc.php /.gitignore: -------------------------------------------------------------------------------- 1 | /lumen.log 2 | /node_modules 3 | /vendor 4 | /.env 5 | /.env.production 6 | /.php_cs.cache 7 | /deploy 8 | /wordpress/wp-content/debug.log 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.6 5 | - 7.0 6 | - hhvm 7 | 8 | env: 9 | global: 10 | - setup=basic 11 | 12 | sudo: false 13 | 14 | install: 15 | - composer self-update 16 | - composer install --no-interaction --prefer-dist 17 | 18 | before_script: 19 | - cp .env.travis .env 20 | 21 | script: 22 | - vendor/bin/phpunit 23 | 24 | notifications: 25 | slack: geekpavilion:dlWpqIWmVxsQWJ6WLY6Z7Vb0 26 | -------------------------------------------------------------------------------- /app/Console/Commands/WordPress/AbstractMakeCommand.php: -------------------------------------------------------------------------------- 1 | skeletons)) { 29 | throw new \InvalidArgumentException("Skeleton '$skeleton' is not found."); 30 | } 31 | } else { 32 | $skeleton = $this->choice('Skeleton type', $this->skeletons, array_search($this->default_skeleton, $this->skeletons)); 33 | } 34 | 35 | return $skeleton; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /app/Console/Commands/WordPress/plugin-stubs/minimum/main.php: -------------------------------------------------------------------------------- 1 | 'Hello WordPress+', 5 | ]; 6 | -------------------------------------------------------------------------------- /app/Console/Commands/WordPress/plugin-stubs/simple/main.php: -------------------------------------------------------------------------------- 1 | {{ 'This is index.php' }}
6 | 7 |{{ trans('theme::messages.hello') }}
8 | 9 | @stop 10 | -------------------------------------------------------------------------------- /app/Console/Commands/WordPress/theme-stubs/bootstrap/blade/layout.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |{{ 'This is index.php' }}
6 | 7 |{{ trans('theme::messages.hello') }}
8 | 9 | @stop 10 | -------------------------------------------------------------------------------- /app/Console/Commands/WordPress/theme-stubs/simple/blade/layout.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |{{ $message }}
19 |