├── .editorconfig ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── config ├── app.php ├── assets.php ├── filesystem.php ├── local │ └── app.php ├── logging.php ├── queue.php └── view.php ├── mantle.php └── src └── mantle ├── application ├── LICENSE ├── autoload.php ├── class-app-service-provider.php ├── class-application-exception.php ├── class-application.php ├── composer.json └── concerns │ ├── trait-application-callbacks.php │ ├── trait-loads-base-configuration.php │ ├── trait-loads-environment-variables.php │ ├── trait-loads-facades.php │ └── trait-manages-service-providers.php ├── assets ├── LICENSE ├── autoload.php ├── class-asset-loader.php ├── class-asset-manager.php ├── class-asset-service-provider.php ├── class-asset.php ├── composer.json └── exception │ └── class-asset-not-found.php ├── auth ├── LICENSE ├── class-authentication-error.php ├── composer.json └── middleware │ └── class-authorize.php ├── blocks ├── class-block-service-provider.php ├── class-block.php ├── class-discover-blocks.php └── composer.json ├── cache ├── LICENSE ├── autoload.php ├── class-cache-service-provider.php ├── class-repository.php ├── class-swr-storage.php ├── class-wordpress-cache-repository.php └── composer.json ├── config ├── LICENSE ├── autoload.php ├── class-repository.php └── composer.json ├── console ├── LICENSE ├── attributes │ └── class-hide-console-isolation-mode.php ├── class-application.php ├── class-closure-command.php ├── class-command.php ├── class-manually-failed-exception.php ├── class-output-style.php ├── class-parser.php ├── composer.json ├── concerns │ └── trait-interacts-with-io.php ├── events │ └── class-lightweight-event-dispatcher.php └── trait-confirmable.php ├── container ├── LICENSE ├── class-binding-resolution-exception.php ├── class-bound-method.php ├── class-container.php ├── class-entry-not-found-exception.php └── composer.json ├── contracts ├── LICENSE ├── assets │ ├── class-load-hook.php │ ├── class-load-method.php │ └── interface-asset-manager.php ├── cache │ ├── interface-factory.php │ ├── interface-repository.php │ └── interface-taggable-repository.php ├── composer.json ├── config │ └── interface-repository.php ├── console │ ├── interface-application.php │ └── interface-kernel.php ├── database │ ├── interface-core-object.php │ ├── interface-model-meta.php │ ├── interface-registrable-fields.php │ ├── interface-registrable-meta.php │ ├── interface-registrable.php │ ├── interface-scope.php │ └── interface-updatable.php ├── events │ └── interface-dispatcher.php ├── exceptions │ └── interface-handler.php ├── filesystem │ ├── interface-filesystem-manager.php │ └── interface-filesystem.php ├── framework │ └── interface-bootloader.php ├── http │ ├── interface-kernel.php │ ├── routing │ │ ├── interface-entity-router.php │ │ ├── interface-response-factory.php │ │ ├── interface-route-registrar.php │ │ ├── interface-router.php │ │ ├── interface-url-generator.php │ │ └── interface-url-routable.php │ └── view │ │ ├── interface-factory.php │ │ └── interface-view-finder.php ├── interface-application.php ├── interface-block.php ├── interface-bootstrapable.php ├── interface-container.php ├── interface-kernel.php ├── interface-pipeline.php ├── paginator │ └── interface-paginator.php ├── queue │ ├── interface-can-queue.php │ ├── interface-dispatcher.php │ ├── interface-job.php │ ├── interface-provider.php │ └── interface-queue-manager.php ├── rest-api │ ├── interface-rest-field-get-callback.php │ ├── interface-rest-field-schema.php │ ├── interface-rest-field-update-callback.php │ ├── interface-rest-field-with-schema.php │ └── interface-rest-field.php ├── support │ ├── interface-arrayable.php │ ├── interface-htmlable.php │ ├── interface-isolated-service-provider.php │ └── interface-jsonable.php └── view │ └── interface-engine.php ├── database ├── LICENSE ├── class-factory-service-provider.php ├── class-model-service-provider.php ├── class-seeder.php ├── composer.json ├── console │ └── class-seed-command.php ├── factory │ ├── assets │ │ └── factory │ │ │ ├── 1200x800.jpg │ │ │ └── 600x480.jpg │ ├── class-attachment-factory.php │ ├── class-blog-factory.php │ ├── class-comment-factory.php │ ├── class-factory-container.php │ ├── class-factory.php │ ├── class-fluent-factory.php │ ├── class-network-factory.php │ ├── class-post-factory.php │ ├── class-term-factory.php │ ├── class-user-factory.php │ ├── concerns │ │ ├── trait-generates-images.php │ │ ├── trait-resolves-factories.php │ │ ├── trait-with-byline-manager-profiles.php │ │ ├── trait-with-guest-authors.php │ │ └── trait-with-meta.php │ └── plugins │ │ ├── class-byline-manager-factory.php │ │ └── class-co-authors-plus-factory.php ├── model │ ├── class-attachment.php │ ├── class-comment.php │ ├── class-database-table-model.php │ ├── class-model-exception.php │ ├── class-model-not-found-exception.php │ ├── class-model.php │ ├── class-permalink-generator.php │ ├── class-post.php │ ├── class-site.php │ ├── class-term.php │ ├── class-user.php │ ├── concerns │ │ ├── trait-custom-post-permalink.php │ │ ├── trait-custom-term-link.php │ │ ├── trait-has-aliases.php │ │ ├── trait-has-attributes.php │ │ ├── trait-has-events.php │ │ ├── trait-has-factory.php │ │ ├── trait-has-global-scopes.php │ │ ├── trait-has-guarded-attributes.php │ │ ├── trait-has-relationships.php │ │ └── trait-hides-attributes.php │ ├── dates │ │ ├── class-model-date-proxy.php │ │ └── trait-has-dates.php │ ├── events │ │ ├── class-permalink-generated.php │ │ ├── trait-post-events.php │ │ └── trait-term-events.php │ ├── meta │ │ ├── class-model-meta-proxy.php │ │ ├── trait-comment-meta.php │ │ ├── trait-model-meta.php │ │ ├── trait-post-meta.php │ │ ├── trait-term-meta.php │ │ └── trait-user-meta.php │ ├── registration │ │ ├── trait-register-meta.php │ │ ├── trait-register-post-type.php │ │ ├── trait-register-rest-fields.php │ │ └── trait-register-taxonomy.php │ ├── relations │ │ ├── class-belongs-to-many.php │ │ ├── class-belongs-to.php │ │ ├── class-has-many.php │ │ ├── class-has-one-or-many.php │ │ ├── class-has-one.php │ │ └── class-relation.php │ └── term │ │ ├── class-model-term-proxy.php │ │ └── trait-model-term.php ├── pagination │ ├── class-length-aware-paginator.php │ ├── class-paginator-service-provider.php │ ├── class-paginator.php │ └── resources │ │ ├── paginator.blade.php │ │ └── simple.blade.php └── query │ ├── class-builder.php │ ├── class-collection.php │ ├── class-database-query-builder.php │ ├── class-post-query-builder.php │ ├── class-query-exception.php │ ├── class-term-query-builder.php │ ├── concerns │ ├── trait-queries-dates.php │ ├── trait-query-bindings.php │ └── trait-query-clauses.php │ └── trait-queries-relationships.php ├── events ├── LICENSE ├── class-dispatcher.php ├── class-event-service-provider.php ├── composer.json └── trait-wordpress-action.php ├── facade ├── LICENSE ├── class-app.php ├── class-asset.php ├── class-blade.php ├── class-cache.php ├── class-config.php ├── class-console.php ├── class-event.php ├── class-facade.php ├── class-http.php ├── class-log.php ├── class-queue.php ├── class-request.php ├── class-route.php ├── class-schedule.php ├── class-storage.php ├── class-view-finder.php ├── class-view-loader.php ├── class-view.php └── composer.json ├── faker ├── LICENSE ├── class-faker-provider.php └── composer.json ├── filesystem ├── LICENSE ├── adapter │ ├── class-aws-s3-adapter.php │ └── class-local-adapter.php ├── class-file-not-found-exception.php ├── class-file.php ├── class-filesystem-adapter.php ├── class-filesystem-manager.php ├── class-filesystem-service-provider.php ├── class-filesystem.php ├── composer.json └── trait-file-helpers.php ├── framework-views ├── autoload.php ├── composer.json └── views │ └── wrapper.php ├── framework ├── bootstrap │ ├── class-boot-providers.php │ ├── class-load-configuration.php │ ├── class-register-aliases.php │ ├── class-register-cli-commands.php │ └── class-register-providers.php ├── class-alias-loader.php ├── class-bootloader.php ├── console │ ├── class-about-command.php │ ├── class-clear-cache-command.php │ ├── class-config-cache-command.php │ ├── class-config-clear-command.php │ ├── class-event-cache-clear-command.php │ ├── class-event-cache-command.php │ ├── class-hook-usage-command.php │ ├── class-kernel.php │ ├── class-model-discover-command.php │ ├── class-package-discover-command.php │ ├── class-route-list-command.php │ ├── class-test-config-install-command.php │ ├── class-vendor-publish-command.php │ ├── class-view-cache-command.php │ ├── class-view-clear-command.php │ └── generators │ │ ├── class-block-make-command.php │ │ ├── class-class-make-command.php │ │ ├── class-command-make-command.php │ │ ├── class-controller-make-command.php │ │ ├── class-factory-make-command.php │ │ ├── class-generator-command.php │ │ ├── class-generator-make-command.php │ │ ├── class-job-make-command.php │ │ ├── class-listener-make-command.php │ │ ├── class-middleware-make-command.php │ │ ├── class-model-make-command.php │ │ ├── class-printer.php │ │ ├── class-seeder-make-command.php │ │ ├── class-service-provider-make-command.php │ │ ├── class-stub-generator-command.php │ │ ├── class-test-make-command.php │ │ ├── stubs │ │ ├── block-class.stub │ │ ├── block-edit.stub │ │ ├── block-entry.stub │ │ ├── block-view.stub │ │ ├── command.stub │ │ ├── controller.stub │ │ ├── factory-post.stub │ │ ├── factory-term.stub │ │ ├── generator.stub │ │ ├── job.stub │ │ ├── middleware.stub │ │ ├── model-post-registrable.stub │ │ ├── model-post.stub │ │ ├── model-term-registrable.stub │ │ ├── model-term.stub │ │ ├── provider.stub │ │ ├── seeder.stub │ │ ├── stub.stub │ │ └── test.stub │ │ └── trait-with-psr-4-file.php ├── events │ ├── class-discover-events.php │ └── class-events-manifest.php ├── exceptions │ └── class-handler.php ├── helpers.php ├── http │ └── class-kernel.php ├── manifest │ ├── class-model-manifest.php │ └── class-package-manifest.php ├── providers │ ├── class-console-service-provider.php │ ├── class-event-service-provider.php │ ├── class-provider-exception.php │ ├── class-route-service-provider.php │ └── class-routing-service-provider.php └── resources │ └── application-structure │ ├── README.md │ ├── console │ └── class-kernel.php │ ├── exceptions │ └── class-handler.php │ ├── http │ ├── class-kernel.php │ ├── controller │ │ └── .gitkeep │ └── middleware │ │ └── .gitkeep │ ├── models │ ├── class-attachment.php │ ├── class-category.php │ ├── class-post.php │ └── class-tag.php │ └── providers │ ├── class-app-service-provider.php │ ├── class-asset-service-provider.php │ └── class-event-service-provider.php ├── http-client ├── LICENSE ├── autoload.php ├── class-cache-flexible-middleware.php ├── class-cache-middleware.php ├── class-factory.php ├── class-http-client-exception.php ├── class-http-client.php ├── class-pending-request.php ├── class-pool.php ├── class-pooled-pending-request.php ├── class-request.php ├── class-response.php ├── composer.json ├── concerns │ ├── trait-caches-requests.php │ └── trait-interacts-with-feeds.php └── enum-http-method.php ├── http ├── LICENSE ├── autoload.php ├── class-controller.php ├── class-request.php ├── class-response.php ├── class-uploaded-file.php ├── composer.json ├── concerns │ └── trait-interacts-with-content-types.php ├── routing │ ├── class-entity-router.php │ ├── class-implicit-route-binding.php │ ├── class-middleware-name-resolver.php │ ├── class-redirector.php │ ├── class-response-factory.php │ ├── class-rest-route-registrar.php │ ├── class-route-binding.php │ ├── class-route-file-registrar.php │ ├── class-route-registrar.php │ ├── class-route-signature-parameters.php │ ├── class-route.php │ ├── class-router.php │ ├── class-url-generator.php │ ├── concerns │ │ ├── trait-registers-rest-route.php │ │ └── trait-route-group.php │ ├── events │ │ ├── class-bindings-substituted.php │ │ ├── class-entity-route-added.php │ │ └── class-route-matched.php │ ├── middleware │ │ ├── class-setup-wordpress.php │ │ ├── class-substitute-bindings.php │ │ └── class-wrap-template.php │ └── trait-route-dependency-resolver.php ├── trait-interacts-with-input.php └── view │ ├── class-factory.php │ ├── class-view-exception.php │ ├── class-view-finder.php │ └── class-view.php ├── log ├── LICENSE ├── class-log-manager.php ├── class-log-service-provider.php ├── class-logger.php ├── composer.json └── events │ └── class-message-logged.php ├── new-relic ├── LICENSE ├── class-new-relic-service-provider.php └── composer.json ├── query-monitor ├── LICENSE ├── class-query-monitor-service-provider.php ├── class-timing.php ├── collector │ ├── class-collector.php │ ├── class-header-collector.php │ └── class-log-collector.php ├── composer.json └── output │ ├── class-output-headers.php │ ├── class-output-logs.php │ └── class-output.php ├── queue ├── LICENSE ├── autoload.php ├── class-closure-job.php ├── class-dispatcher.php ├── class-pending-closure-dispatch.php ├── class-pending-dispatch.php ├── class-queue-fake.php ├── class-queue-manager.php ├── class-queue-service-provider.php ├── class-queue-worker-job.php ├── class-worker.php ├── composer.json ├── console │ ├── class-cleanup-jobs-command.php │ └── class-run-command.php ├── events │ ├── class-job-failed.php │ ├── class-job-processed.php │ ├── class-job-processing.php │ ├── class-job-queued.php │ ├── class-providers-registered.php │ ├── class-run-complete.php │ └── class-run-start.php ├── providers │ └── wordpress │ │ ├── admin │ │ ├── class-queue-job-admin-page.php │ │ ├── class-queue-jobs-table.php │ │ ├── class-service-provider.php │ │ └── template │ │ │ ├── single.php │ │ │ └── table.php │ │ ├── class-meta-key.php │ │ ├── class-provider.php │ │ ├── class-queue-record.php │ │ ├── class-queue-worker-job.php │ │ ├── class-scheduler.php │ │ ├── class-service-provider.php │ │ ├── enum-event.php │ │ └── enum-post-status.php ├── trait-dispatchable.php └── trait-queueable.php ├── rest-api ├── LICENSE ├── class-registered-rest-field.php ├── class-rest-field-registrar.php ├── class-rest-field.php └── composer.json ├── scheduling ├── LICENSE ├── class-command-event.php ├── class-event.php ├── class-job-event.php ├── class-schedule.php ├── composer.json └── trait-manages-frequencies.php ├── support ├── LICENSE ├── attributes │ ├── class-action.php │ ├── class-filter.php │ └── hookable │ │ └── class-hookable-allow-legacy-duplicate-registration.php ├── autoload.php ├── class-arr.php ├── class-collection.php ├── class-environment.php ├── class-higher-order-collection-proxy.php ├── class-higher-order-tap-proxy.php ├── class-higher-order-when-proxy.php ├── class-html.php ├── class-item-not-found-exception.php ├── class-memoizable.php ├── class-memoize.php ├── class-mixed-data.php ├── class-multiple-items-found-exception.php ├── class-object-metadata.php ├── class-option.php ├── class-pipeline.php ├── class-pluralizer.php ├── class-reflector.php ├── class-service-provider.php ├── class-str.php ├── class-string-replacements.php ├── class-stringable.php ├── class-uri-query-string.php ├── class-uri.php ├── composer.json ├── helpers │ ├── helpers-array.php │ ├── helpers-cache.php │ ├── helpers-core-objects.php │ ├── helpers-environment.php │ ├── helpers-general.php │ ├── helpers-log.php │ ├── helpers-memoize.php │ ├── helpers-meta.php │ ├── helpers-mixed.php │ ├── helpers-response.php │ ├── helpers-rest-api.php │ ├── helpers-validated-hook-removal.php │ ├── helpers.php │ └── internals.php ├── html │ └── trait-assertions.php ├── interface-enumerable.php ├── internal │ └── class-html-helpers.php ├── registration │ ├── class-post-type-arguments.php │ └── class-taxonomy-arguments.php ├── schema │ └── meta.json ├── trait-forward-calls.php ├── trait-interacts-with-data.php └── traits │ ├── trait-conditionable.php │ ├── trait-enumerates-values.php │ ├── trait-hookable.php │ ├── trait-loads-classes.php │ ├── trait-macroable.php │ ├── trait-makeable.php │ ├── trait-singleton.php │ └── trait-tappable.php ├── testing ├── EarlyDeprecationsHandler.php ├── EarlyIncorrectUsageHandler.php ├── FrameworkTestCase.php ├── LICENSE ├── TestCase.php ├── TraceWriter.php ├── attributes │ ├── DisableGlobalPreservation.php │ ├── Environment.php │ ├── PermalinkStructure.php │ ├── PreserveObjectCache.php │ ├── UserAgent.php │ ├── class-acting-as.php │ ├── class-expected-deprecation.php │ ├── class-expected-incorrect-usage.php │ ├── class-ignore-deprecation.php │ └── class-ignore-incorrect-usage.php ├── autoload.php ├── class-assertable-html-string.php ├── class-assertable-json-string.php ├── class-block-factory.php ├── class-installation-manager.php ├── class-mock-action.php ├── class-mock-http-response.php ├── class-mock-http-sequence.php ├── class-pending-testable-request.php ├── class-test-case.php ├── class-test-command.php ├── class-test-response.php ├── class-utils.php ├── class-wp-die.php ├── class-wp-unittestcase.php ├── composer.json ├── concerns │ ├── snapshots │ │ └── trait-mocks-http-requests.php │ ├── trait-admin-screen.php │ ├── trait-assertions.php │ ├── trait-asset-assertions.php │ ├── trait-block-assertions.php │ ├── trait-core-shim.php │ ├── trait-create-application.php │ ├── trait-dependency-assertions.php │ ├── trait-deprecations.php │ ├── trait-element-assertions.php │ ├── trait-hooks.php │ ├── trait-incorrect-usage.php │ ├── trait-interacts-with-attributes.php │ ├── trait-interacts-with-console.php │ ├── trait-interacts-with-container.php │ ├── trait-interacts-with-cron.php │ ├── trait-interacts-with-environment.php │ ├── trait-interacts-with-hooks.php │ ├── trait-interacts-with-mail.php │ ├── trait-interacts-with-phpunit.php │ ├── trait-interacts-with-requests.php │ ├── trait-interacts-with-user-agent.php │ ├── trait-makes-http-requests-with-templates.php │ ├── trait-makes-http-requests.php │ ├── trait-multisite-test.php │ ├── trait-network-admin-screen.php │ ├── trait-output-messages.php │ ├── trait-phpunit-upgrade-warning.php │ ├── trait-preserves-globals.php │ ├── trait-prevent-remote-requests.php │ ├── trait-reads-annotations.php │ ├── trait-refresh-database.php │ ├── trait-reset-data-structures.php │ ├── trait-reset-server.php │ ├── trait-response-dumper.php │ ├── trait-response-snapshot-testing.php │ ├── trait-rsync-installation.php │ ├── trait-single-site-test.php │ ├── trait-unregister-all-meta-keys.php │ ├── trait-warn-remote-requests.php │ ├── trait-with-faker.php │ ├── trait-wordpress-authentication.php │ └── trait-wordpress-state.php ├── core-polyfill.php ├── data │ └── images │ │ ├── 2004-07-22-DSC_0007.jpg │ │ ├── 2004-07-22-DSC_0008.jpg │ │ ├── 2007-06-17DSC_4173.JPG │ │ ├── 33772.jpg │ │ ├── a2-small.jpg │ │ ├── canola.jpg │ │ ├── codeispoetry.png │ │ ├── gradient-square.jpg │ │ ├── one-blue-pixel-1-100x100.png │ │ ├── one-blue-pixel-100x100.png │ │ ├── test-image-cmyk.jpg │ │ ├── test-image-grayscale.jpg │ │ ├── test-image-iptc.jpg │ │ ├── test-image-large.jpg │ │ ├── test-image-lzw.tiff │ │ ├── test-image-mime-jpg.png │ │ ├── test-image-no-extension │ │ ├── test-image-upside-down.jpg │ │ ├── test-image-zip.tiff │ │ ├── test-image.bmp │ │ ├── test-image.gif │ │ ├── test-image.ico │ │ ├── test-image.jp2 │ │ ├── test-image.jpg │ │ ├── test-image.pct │ │ ├── test-image.png │ │ ├── test-image.psd │ │ ├── test-image.sgi │ │ ├── test-image.tga │ │ ├── test-image.tiff │ │ ├── transparent.png │ │ ├── waffles.jpg │ │ └── wordpress-gsoc-flyer.pdf ├── doubles │ └── class-spy-rest-server.php ├── exceptions │ ├── BacktraceException.php │ ├── UnexpectedDeprecatedNoticeException.php │ ├── UnexpectedIncorrectUsageException.php │ ├── class-exception.php │ ├── class-exit-simulation-exception.php │ ├── class-response-exception.php │ ├── class-stray-request-exception.php │ ├── class-wp-die-exception.php │ └── class-wp-redirect-exception.php ├── expectation │ ├── class-expectation-container.php │ └── class-expectation.php ├── install-wordpress.php ├── mail │ ├── class-mail-message.php │ ├── class-mock-mailer.php │ └── helpers.php ├── preload.php ├── snapshots │ └── class-html-driver.php └── wordpress-bootstrap.php ├── testkit ├── LICENSE ├── TestCase.php ├── autoload.php ├── class-application.php ├── class-exception-handler.php ├── class-integration-test-case.php ├── class-test-case.php ├── class-unit-test-case.php ├── composer.json └── concerns │ ├── trait-create-application.php │ └── trait-installs-wordpress.php ├── types ├── LICENSE ├── README.md ├── attributes │ ├── class-admin.php │ ├── class-cli.php │ ├── class-environment.php │ └── class-request.php ├── class-hookable-feature.php ├── class-validator-group.php ├── composer.json └── interface-validator.php └── view ├── LICENSE ├── class-view-service-provider.php ├── composer.json └── engines ├── class-blade-engine.php ├── class-engine-resolver.php ├── class-file-engine.php └── class-php-engine.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/config/app.php -------------------------------------------------------------------------------- /config/assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/config/assets.php -------------------------------------------------------------------------------- /config/filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/config/filesystem.php -------------------------------------------------------------------------------- /config/local/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/config/local/app.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/config/view.php -------------------------------------------------------------------------------- /mantle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/mantle.php -------------------------------------------------------------------------------- /src/mantle/application/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/application/LICENSE -------------------------------------------------------------------------------- /src/mantle/application/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/application/autoload.php -------------------------------------------------------------------------------- /src/mantle/application/class-app-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/application/class-app-service-provider.php -------------------------------------------------------------------------------- /src/mantle/application/class-application-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/application/class-application-exception.php -------------------------------------------------------------------------------- /src/mantle/application/class-application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/application/class-application.php -------------------------------------------------------------------------------- /src/mantle/application/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/application/composer.json -------------------------------------------------------------------------------- /src/mantle/application/concerns/trait-application-callbacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/application/concerns/trait-application-callbacks.php -------------------------------------------------------------------------------- /src/mantle/application/concerns/trait-loads-base-configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/application/concerns/trait-loads-base-configuration.php -------------------------------------------------------------------------------- /src/mantle/application/concerns/trait-loads-environment-variables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/application/concerns/trait-loads-environment-variables.php -------------------------------------------------------------------------------- /src/mantle/application/concerns/trait-loads-facades.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/application/concerns/trait-loads-facades.php -------------------------------------------------------------------------------- /src/mantle/application/concerns/trait-manages-service-providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/application/concerns/trait-manages-service-providers.php -------------------------------------------------------------------------------- /src/mantle/assets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/assets/LICENSE -------------------------------------------------------------------------------- /src/mantle/assets/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/assets/autoload.php -------------------------------------------------------------------------------- /src/mantle/assets/class-asset-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/assets/class-asset-loader.php -------------------------------------------------------------------------------- /src/mantle/assets/class-asset-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/assets/class-asset-manager.php -------------------------------------------------------------------------------- /src/mantle/assets/class-asset-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/assets/class-asset-service-provider.php -------------------------------------------------------------------------------- /src/mantle/assets/class-asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/assets/class-asset.php -------------------------------------------------------------------------------- /src/mantle/assets/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/assets/composer.json -------------------------------------------------------------------------------- /src/mantle/assets/exception/class-asset-not-found.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/assets/exception/class-asset-not-found.php -------------------------------------------------------------------------------- /src/mantle/auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/auth/LICENSE -------------------------------------------------------------------------------- /src/mantle/auth/class-authentication-error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/auth/class-authentication-error.php -------------------------------------------------------------------------------- /src/mantle/auth/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/auth/composer.json -------------------------------------------------------------------------------- /src/mantle/auth/middleware/class-authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/auth/middleware/class-authorize.php -------------------------------------------------------------------------------- /src/mantle/blocks/class-block-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/blocks/class-block-service-provider.php -------------------------------------------------------------------------------- /src/mantle/blocks/class-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/blocks/class-block.php -------------------------------------------------------------------------------- /src/mantle/blocks/class-discover-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/blocks/class-discover-blocks.php -------------------------------------------------------------------------------- /src/mantle/blocks/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/blocks/composer.json -------------------------------------------------------------------------------- /src/mantle/cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/cache/LICENSE -------------------------------------------------------------------------------- /src/mantle/cache/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/cache/autoload.php -------------------------------------------------------------------------------- /src/mantle/cache/class-cache-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/cache/class-cache-service-provider.php -------------------------------------------------------------------------------- /src/mantle/cache/class-repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/cache/class-repository.php -------------------------------------------------------------------------------- /src/mantle/cache/class-swr-storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/cache/class-swr-storage.php -------------------------------------------------------------------------------- /src/mantle/cache/class-wordpress-cache-repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/cache/class-wordpress-cache-repository.php -------------------------------------------------------------------------------- /src/mantle/cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/cache/composer.json -------------------------------------------------------------------------------- /src/mantle/config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/config/LICENSE -------------------------------------------------------------------------------- /src/mantle/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/config/autoload.php -------------------------------------------------------------------------------- /src/mantle/config/class-repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/config/class-repository.php -------------------------------------------------------------------------------- /src/mantle/config/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/config/composer.json -------------------------------------------------------------------------------- /src/mantle/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/LICENSE -------------------------------------------------------------------------------- /src/mantle/console/attributes/class-hide-console-isolation-mode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/attributes/class-hide-console-isolation-mode.php -------------------------------------------------------------------------------- /src/mantle/console/class-application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/class-application.php -------------------------------------------------------------------------------- /src/mantle/console/class-closure-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/class-closure-command.php -------------------------------------------------------------------------------- /src/mantle/console/class-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/class-command.php -------------------------------------------------------------------------------- /src/mantle/console/class-manually-failed-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/class-manually-failed-exception.php -------------------------------------------------------------------------------- /src/mantle/console/class-output-style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/class-output-style.php -------------------------------------------------------------------------------- /src/mantle/console/class-parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/class-parser.php -------------------------------------------------------------------------------- /src/mantle/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/composer.json -------------------------------------------------------------------------------- /src/mantle/console/concerns/trait-interacts-with-io.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/concerns/trait-interacts-with-io.php -------------------------------------------------------------------------------- /src/mantle/console/events/class-lightweight-event-dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/events/class-lightweight-event-dispatcher.php -------------------------------------------------------------------------------- /src/mantle/console/trait-confirmable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/console/trait-confirmable.php -------------------------------------------------------------------------------- /src/mantle/container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/container/LICENSE -------------------------------------------------------------------------------- /src/mantle/container/class-binding-resolution-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/container/class-binding-resolution-exception.php -------------------------------------------------------------------------------- /src/mantle/container/class-bound-method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/container/class-bound-method.php -------------------------------------------------------------------------------- /src/mantle/container/class-container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/container/class-container.php -------------------------------------------------------------------------------- /src/mantle/container/class-entry-not-found-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/container/class-entry-not-found-exception.php -------------------------------------------------------------------------------- /src/mantle/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/container/composer.json -------------------------------------------------------------------------------- /src/mantle/contracts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/LICENSE -------------------------------------------------------------------------------- /src/mantle/contracts/assets/class-load-hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/assets/class-load-hook.php -------------------------------------------------------------------------------- /src/mantle/contracts/assets/class-load-method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/assets/class-load-method.php -------------------------------------------------------------------------------- /src/mantle/contracts/assets/interface-asset-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/assets/interface-asset-manager.php -------------------------------------------------------------------------------- /src/mantle/contracts/cache/interface-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/cache/interface-factory.php -------------------------------------------------------------------------------- /src/mantle/contracts/cache/interface-repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/cache/interface-repository.php -------------------------------------------------------------------------------- /src/mantle/contracts/cache/interface-taggable-repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/cache/interface-taggable-repository.php -------------------------------------------------------------------------------- /src/mantle/contracts/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/composer.json -------------------------------------------------------------------------------- /src/mantle/contracts/config/interface-repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/config/interface-repository.php -------------------------------------------------------------------------------- /src/mantle/contracts/console/interface-application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/console/interface-application.php -------------------------------------------------------------------------------- /src/mantle/contracts/console/interface-kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/console/interface-kernel.php -------------------------------------------------------------------------------- /src/mantle/contracts/database/interface-core-object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/database/interface-core-object.php -------------------------------------------------------------------------------- /src/mantle/contracts/database/interface-model-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/database/interface-model-meta.php -------------------------------------------------------------------------------- /src/mantle/contracts/database/interface-registrable-fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/database/interface-registrable-fields.php -------------------------------------------------------------------------------- /src/mantle/contracts/database/interface-registrable-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/database/interface-registrable-meta.php -------------------------------------------------------------------------------- /src/mantle/contracts/database/interface-registrable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/database/interface-registrable.php -------------------------------------------------------------------------------- /src/mantle/contracts/database/interface-scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/database/interface-scope.php -------------------------------------------------------------------------------- /src/mantle/contracts/database/interface-updatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/database/interface-updatable.php -------------------------------------------------------------------------------- /src/mantle/contracts/events/interface-dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/events/interface-dispatcher.php -------------------------------------------------------------------------------- /src/mantle/contracts/exceptions/interface-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/exceptions/interface-handler.php -------------------------------------------------------------------------------- /src/mantle/contracts/filesystem/interface-filesystem-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/filesystem/interface-filesystem-manager.php -------------------------------------------------------------------------------- /src/mantle/contracts/filesystem/interface-filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/filesystem/interface-filesystem.php -------------------------------------------------------------------------------- /src/mantle/contracts/framework/interface-bootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/framework/interface-bootloader.php -------------------------------------------------------------------------------- /src/mantle/contracts/http/interface-kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/http/interface-kernel.php -------------------------------------------------------------------------------- /src/mantle/contracts/http/routing/interface-entity-router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/http/routing/interface-entity-router.php -------------------------------------------------------------------------------- /src/mantle/contracts/http/routing/interface-response-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/http/routing/interface-response-factory.php -------------------------------------------------------------------------------- /src/mantle/contracts/http/routing/interface-route-registrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/http/routing/interface-route-registrar.php -------------------------------------------------------------------------------- /src/mantle/contracts/http/routing/interface-router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/http/routing/interface-router.php -------------------------------------------------------------------------------- /src/mantle/contracts/http/routing/interface-url-generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/http/routing/interface-url-generator.php -------------------------------------------------------------------------------- /src/mantle/contracts/http/routing/interface-url-routable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/http/routing/interface-url-routable.php -------------------------------------------------------------------------------- /src/mantle/contracts/http/view/interface-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/http/view/interface-factory.php -------------------------------------------------------------------------------- /src/mantle/contracts/http/view/interface-view-finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/http/view/interface-view-finder.php -------------------------------------------------------------------------------- /src/mantle/contracts/interface-application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/interface-application.php -------------------------------------------------------------------------------- /src/mantle/contracts/interface-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/interface-block.php -------------------------------------------------------------------------------- /src/mantle/contracts/interface-bootstrapable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/interface-bootstrapable.php -------------------------------------------------------------------------------- /src/mantle/contracts/interface-container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/interface-container.php -------------------------------------------------------------------------------- /src/mantle/contracts/interface-kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/interface-kernel.php -------------------------------------------------------------------------------- /src/mantle/contracts/interface-pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/interface-pipeline.php -------------------------------------------------------------------------------- /src/mantle/contracts/paginator/interface-paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/paginator/interface-paginator.php -------------------------------------------------------------------------------- /src/mantle/contracts/queue/interface-can-queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/queue/interface-can-queue.php -------------------------------------------------------------------------------- /src/mantle/contracts/queue/interface-dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/queue/interface-dispatcher.php -------------------------------------------------------------------------------- /src/mantle/contracts/queue/interface-job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/queue/interface-job.php -------------------------------------------------------------------------------- /src/mantle/contracts/queue/interface-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/queue/interface-provider.php -------------------------------------------------------------------------------- /src/mantle/contracts/queue/interface-queue-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/queue/interface-queue-manager.php -------------------------------------------------------------------------------- /src/mantle/contracts/rest-api/interface-rest-field-get-callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/rest-api/interface-rest-field-get-callback.php -------------------------------------------------------------------------------- /src/mantle/contracts/rest-api/interface-rest-field-schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/rest-api/interface-rest-field-schema.php -------------------------------------------------------------------------------- /src/mantle/contracts/rest-api/interface-rest-field-update-callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/rest-api/interface-rest-field-update-callback.php -------------------------------------------------------------------------------- /src/mantle/contracts/rest-api/interface-rest-field-with-schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/rest-api/interface-rest-field-with-schema.php -------------------------------------------------------------------------------- /src/mantle/contracts/rest-api/interface-rest-field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/rest-api/interface-rest-field.php -------------------------------------------------------------------------------- /src/mantle/contracts/support/interface-arrayable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/support/interface-arrayable.php -------------------------------------------------------------------------------- /src/mantle/contracts/support/interface-htmlable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/support/interface-htmlable.php -------------------------------------------------------------------------------- /src/mantle/contracts/support/interface-isolated-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/support/interface-isolated-service-provider.php -------------------------------------------------------------------------------- /src/mantle/contracts/support/interface-jsonable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/support/interface-jsonable.php -------------------------------------------------------------------------------- /src/mantle/contracts/view/interface-engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/contracts/view/interface-engine.php -------------------------------------------------------------------------------- /src/mantle/database/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/LICENSE -------------------------------------------------------------------------------- /src/mantle/database/class-factory-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/class-factory-service-provider.php -------------------------------------------------------------------------------- /src/mantle/database/class-model-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/class-model-service-provider.php -------------------------------------------------------------------------------- /src/mantle/database/class-seeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/class-seeder.php -------------------------------------------------------------------------------- /src/mantle/database/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/composer.json -------------------------------------------------------------------------------- /src/mantle/database/console/class-seed-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/console/class-seed-command.php -------------------------------------------------------------------------------- /src/mantle/database/factory/assets/factory/1200x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/assets/factory/1200x800.jpg -------------------------------------------------------------------------------- /src/mantle/database/factory/assets/factory/600x480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/assets/factory/600x480.jpg -------------------------------------------------------------------------------- /src/mantle/database/factory/class-attachment-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/class-attachment-factory.php -------------------------------------------------------------------------------- /src/mantle/database/factory/class-blog-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/class-blog-factory.php -------------------------------------------------------------------------------- /src/mantle/database/factory/class-comment-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/class-comment-factory.php -------------------------------------------------------------------------------- /src/mantle/database/factory/class-factory-container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/class-factory-container.php -------------------------------------------------------------------------------- /src/mantle/database/factory/class-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/class-factory.php -------------------------------------------------------------------------------- /src/mantle/database/factory/class-fluent-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/class-fluent-factory.php -------------------------------------------------------------------------------- /src/mantle/database/factory/class-network-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/class-network-factory.php -------------------------------------------------------------------------------- /src/mantle/database/factory/class-post-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/class-post-factory.php -------------------------------------------------------------------------------- /src/mantle/database/factory/class-term-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/class-term-factory.php -------------------------------------------------------------------------------- /src/mantle/database/factory/class-user-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/class-user-factory.php -------------------------------------------------------------------------------- /src/mantle/database/factory/concerns/trait-generates-images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/concerns/trait-generates-images.php -------------------------------------------------------------------------------- /src/mantle/database/factory/concerns/trait-resolves-factories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/concerns/trait-resolves-factories.php -------------------------------------------------------------------------------- /src/mantle/database/factory/concerns/trait-with-byline-manager-profiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/concerns/trait-with-byline-manager-profiles.php -------------------------------------------------------------------------------- /src/mantle/database/factory/concerns/trait-with-guest-authors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/concerns/trait-with-guest-authors.php -------------------------------------------------------------------------------- /src/mantle/database/factory/concerns/trait-with-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/concerns/trait-with-meta.php -------------------------------------------------------------------------------- /src/mantle/database/factory/plugins/class-byline-manager-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/plugins/class-byline-manager-factory.php -------------------------------------------------------------------------------- /src/mantle/database/factory/plugins/class-co-authors-plus-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/factory/plugins/class-co-authors-plus-factory.php -------------------------------------------------------------------------------- /src/mantle/database/model/class-attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/class-attachment.php -------------------------------------------------------------------------------- /src/mantle/database/model/class-comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/class-comment.php -------------------------------------------------------------------------------- /src/mantle/database/model/class-database-table-model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/class-database-table-model.php -------------------------------------------------------------------------------- /src/mantle/database/model/class-model-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/class-model-exception.php -------------------------------------------------------------------------------- /src/mantle/database/model/class-model-not-found-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/class-model-not-found-exception.php -------------------------------------------------------------------------------- /src/mantle/database/model/class-model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/class-model.php -------------------------------------------------------------------------------- /src/mantle/database/model/class-permalink-generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/class-permalink-generator.php -------------------------------------------------------------------------------- /src/mantle/database/model/class-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/class-post.php -------------------------------------------------------------------------------- /src/mantle/database/model/class-site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/class-site.php -------------------------------------------------------------------------------- /src/mantle/database/model/class-term.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/class-term.php -------------------------------------------------------------------------------- /src/mantle/database/model/class-user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/class-user.php -------------------------------------------------------------------------------- /src/mantle/database/model/concerns/trait-custom-post-permalink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/concerns/trait-custom-post-permalink.php -------------------------------------------------------------------------------- /src/mantle/database/model/concerns/trait-custom-term-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/concerns/trait-custom-term-link.php -------------------------------------------------------------------------------- /src/mantle/database/model/concerns/trait-has-aliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/concerns/trait-has-aliases.php -------------------------------------------------------------------------------- /src/mantle/database/model/concerns/trait-has-attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/concerns/trait-has-attributes.php -------------------------------------------------------------------------------- /src/mantle/database/model/concerns/trait-has-events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/concerns/trait-has-events.php -------------------------------------------------------------------------------- /src/mantle/database/model/concerns/trait-has-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/concerns/trait-has-factory.php -------------------------------------------------------------------------------- /src/mantle/database/model/concerns/trait-has-global-scopes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/concerns/trait-has-global-scopes.php -------------------------------------------------------------------------------- /src/mantle/database/model/concerns/trait-has-guarded-attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/concerns/trait-has-guarded-attributes.php -------------------------------------------------------------------------------- /src/mantle/database/model/concerns/trait-has-relationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/concerns/trait-has-relationships.php -------------------------------------------------------------------------------- /src/mantle/database/model/concerns/trait-hides-attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/concerns/trait-hides-attributes.php -------------------------------------------------------------------------------- /src/mantle/database/model/dates/class-model-date-proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/dates/class-model-date-proxy.php -------------------------------------------------------------------------------- /src/mantle/database/model/dates/trait-has-dates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/dates/trait-has-dates.php -------------------------------------------------------------------------------- /src/mantle/database/model/events/class-permalink-generated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/events/class-permalink-generated.php -------------------------------------------------------------------------------- /src/mantle/database/model/events/trait-post-events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/events/trait-post-events.php -------------------------------------------------------------------------------- /src/mantle/database/model/events/trait-term-events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/events/trait-term-events.php -------------------------------------------------------------------------------- /src/mantle/database/model/meta/class-model-meta-proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/meta/class-model-meta-proxy.php -------------------------------------------------------------------------------- /src/mantle/database/model/meta/trait-comment-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/meta/trait-comment-meta.php -------------------------------------------------------------------------------- /src/mantle/database/model/meta/trait-model-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/meta/trait-model-meta.php -------------------------------------------------------------------------------- /src/mantle/database/model/meta/trait-post-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/meta/trait-post-meta.php -------------------------------------------------------------------------------- /src/mantle/database/model/meta/trait-term-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/meta/trait-term-meta.php -------------------------------------------------------------------------------- /src/mantle/database/model/meta/trait-user-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/meta/trait-user-meta.php -------------------------------------------------------------------------------- /src/mantle/database/model/registration/trait-register-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/registration/trait-register-meta.php -------------------------------------------------------------------------------- /src/mantle/database/model/registration/trait-register-post-type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/registration/trait-register-post-type.php -------------------------------------------------------------------------------- /src/mantle/database/model/registration/trait-register-rest-fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/registration/trait-register-rest-fields.php -------------------------------------------------------------------------------- /src/mantle/database/model/registration/trait-register-taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/registration/trait-register-taxonomy.php -------------------------------------------------------------------------------- /src/mantle/database/model/relations/class-belongs-to-many.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/relations/class-belongs-to-many.php -------------------------------------------------------------------------------- /src/mantle/database/model/relations/class-belongs-to.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/relations/class-belongs-to.php -------------------------------------------------------------------------------- /src/mantle/database/model/relations/class-has-many.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/relations/class-has-many.php -------------------------------------------------------------------------------- /src/mantle/database/model/relations/class-has-one-or-many.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/relations/class-has-one-or-many.php -------------------------------------------------------------------------------- /src/mantle/database/model/relations/class-has-one.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/relations/class-has-one.php -------------------------------------------------------------------------------- /src/mantle/database/model/relations/class-relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/relations/class-relation.php -------------------------------------------------------------------------------- /src/mantle/database/model/term/class-model-term-proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/term/class-model-term-proxy.php -------------------------------------------------------------------------------- /src/mantle/database/model/term/trait-model-term.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/model/term/trait-model-term.php -------------------------------------------------------------------------------- /src/mantle/database/pagination/class-length-aware-paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/pagination/class-length-aware-paginator.php -------------------------------------------------------------------------------- /src/mantle/database/pagination/class-paginator-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/pagination/class-paginator-service-provider.php -------------------------------------------------------------------------------- /src/mantle/database/pagination/class-paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/pagination/class-paginator.php -------------------------------------------------------------------------------- /src/mantle/database/pagination/resources/paginator.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/pagination/resources/paginator.blade.php -------------------------------------------------------------------------------- /src/mantle/database/pagination/resources/simple.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/pagination/resources/simple.blade.php -------------------------------------------------------------------------------- /src/mantle/database/query/class-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/query/class-builder.php -------------------------------------------------------------------------------- /src/mantle/database/query/class-collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/query/class-collection.php -------------------------------------------------------------------------------- /src/mantle/database/query/class-database-query-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/query/class-database-query-builder.php -------------------------------------------------------------------------------- /src/mantle/database/query/class-post-query-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/query/class-post-query-builder.php -------------------------------------------------------------------------------- /src/mantle/database/query/class-query-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/query/class-query-exception.php -------------------------------------------------------------------------------- /src/mantle/database/query/class-term-query-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/query/class-term-query-builder.php -------------------------------------------------------------------------------- /src/mantle/database/query/concerns/trait-queries-dates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/query/concerns/trait-queries-dates.php -------------------------------------------------------------------------------- /src/mantle/database/query/concerns/trait-query-bindings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/query/concerns/trait-query-bindings.php -------------------------------------------------------------------------------- /src/mantle/database/query/concerns/trait-query-clauses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/query/concerns/trait-query-clauses.php -------------------------------------------------------------------------------- /src/mantle/database/query/trait-queries-relationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/database/query/trait-queries-relationships.php -------------------------------------------------------------------------------- /src/mantle/events/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/events/LICENSE -------------------------------------------------------------------------------- /src/mantle/events/class-dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/events/class-dispatcher.php -------------------------------------------------------------------------------- /src/mantle/events/class-event-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/events/class-event-service-provider.php -------------------------------------------------------------------------------- /src/mantle/events/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/events/composer.json -------------------------------------------------------------------------------- /src/mantle/events/trait-wordpress-action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/events/trait-wordpress-action.php -------------------------------------------------------------------------------- /src/mantle/facade/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/LICENSE -------------------------------------------------------------------------------- /src/mantle/facade/class-app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-app.php -------------------------------------------------------------------------------- /src/mantle/facade/class-asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-asset.php -------------------------------------------------------------------------------- /src/mantle/facade/class-blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-blade.php -------------------------------------------------------------------------------- /src/mantle/facade/class-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-cache.php -------------------------------------------------------------------------------- /src/mantle/facade/class-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-config.php -------------------------------------------------------------------------------- /src/mantle/facade/class-console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-console.php -------------------------------------------------------------------------------- /src/mantle/facade/class-event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-event.php -------------------------------------------------------------------------------- /src/mantle/facade/class-facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-facade.php -------------------------------------------------------------------------------- /src/mantle/facade/class-http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-http.php -------------------------------------------------------------------------------- /src/mantle/facade/class-log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-log.php -------------------------------------------------------------------------------- /src/mantle/facade/class-queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-queue.php -------------------------------------------------------------------------------- /src/mantle/facade/class-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-request.php -------------------------------------------------------------------------------- /src/mantle/facade/class-route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-route.php -------------------------------------------------------------------------------- /src/mantle/facade/class-schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-schedule.php -------------------------------------------------------------------------------- /src/mantle/facade/class-storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-storage.php -------------------------------------------------------------------------------- /src/mantle/facade/class-view-finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-view-finder.php -------------------------------------------------------------------------------- /src/mantle/facade/class-view-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-view-loader.php -------------------------------------------------------------------------------- /src/mantle/facade/class-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/class-view.php -------------------------------------------------------------------------------- /src/mantle/facade/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/facade/composer.json -------------------------------------------------------------------------------- /src/mantle/faker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/faker/LICENSE -------------------------------------------------------------------------------- /src/mantle/faker/class-faker-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/faker/class-faker-provider.php -------------------------------------------------------------------------------- /src/mantle/faker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/faker/composer.json -------------------------------------------------------------------------------- /src/mantle/filesystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/filesystem/LICENSE -------------------------------------------------------------------------------- /src/mantle/filesystem/adapter/class-aws-s3-adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/filesystem/adapter/class-aws-s3-adapter.php -------------------------------------------------------------------------------- /src/mantle/filesystem/adapter/class-local-adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/filesystem/adapter/class-local-adapter.php -------------------------------------------------------------------------------- /src/mantle/filesystem/class-file-not-found-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/filesystem/class-file-not-found-exception.php -------------------------------------------------------------------------------- /src/mantle/filesystem/class-file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/filesystem/class-file.php -------------------------------------------------------------------------------- /src/mantle/filesystem/class-filesystem-adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/filesystem/class-filesystem-adapter.php -------------------------------------------------------------------------------- /src/mantle/filesystem/class-filesystem-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/filesystem/class-filesystem-manager.php -------------------------------------------------------------------------------- /src/mantle/filesystem/class-filesystem-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/filesystem/class-filesystem-service-provider.php -------------------------------------------------------------------------------- /src/mantle/filesystem/class-filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/filesystem/class-filesystem.php -------------------------------------------------------------------------------- /src/mantle/filesystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/filesystem/composer.json -------------------------------------------------------------------------------- /src/mantle/filesystem/trait-file-helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/filesystem/trait-file-helpers.php -------------------------------------------------------------------------------- /src/mantle/framework-views/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework-views/autoload.php -------------------------------------------------------------------------------- /src/mantle/framework-views/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework-views/composer.json -------------------------------------------------------------------------------- /src/mantle/framework-views/views/wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework-views/views/wrapper.php -------------------------------------------------------------------------------- /src/mantle/framework/bootstrap/class-boot-providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/bootstrap/class-boot-providers.php -------------------------------------------------------------------------------- /src/mantle/framework/bootstrap/class-load-configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/bootstrap/class-load-configuration.php -------------------------------------------------------------------------------- /src/mantle/framework/bootstrap/class-register-aliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/bootstrap/class-register-aliases.php -------------------------------------------------------------------------------- /src/mantle/framework/bootstrap/class-register-cli-commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/bootstrap/class-register-cli-commands.php -------------------------------------------------------------------------------- /src/mantle/framework/bootstrap/class-register-providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/bootstrap/class-register-providers.php -------------------------------------------------------------------------------- /src/mantle/framework/class-alias-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/class-alias-loader.php -------------------------------------------------------------------------------- /src/mantle/framework/class-bootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/class-bootloader.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-about-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-about-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-clear-cache-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-clear-cache-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-config-cache-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-config-cache-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-config-clear-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-config-clear-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-event-cache-clear-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-event-cache-clear-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-event-cache-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-event-cache-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-hook-usage-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-hook-usage-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-kernel.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-model-discover-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-model-discover-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-package-discover-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-package-discover-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-route-list-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-route-list-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-test-config-install-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-test-config-install-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-vendor-publish-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-vendor-publish-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-view-cache-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-view-cache-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/class-view-clear-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/class-view-clear-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-block-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-block-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-class-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-class-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-command-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-command-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-controller-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-controller-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-factory-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-factory-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-generator-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-generator-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-generator-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-generator-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-job-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-job-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-listener-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-listener-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-middleware-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-middleware-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-model-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-model-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-printer.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-seeder-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-seeder-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-service-provider-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-service-provider-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-stub-generator-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-stub-generator-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/class-test-make-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/class-test-make-command.php -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/block-class.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/block-class.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/block-edit.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/block-edit.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/block-entry.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/block-entry.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/block-view.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/block-view.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/command.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/command.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/controller.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/controller.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/factory-post.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/factory-post.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/factory-term.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/factory-term.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/generator.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/generator.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/job.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/job.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/middleware.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/middleware.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/model-post-registrable.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/model-post-registrable.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/model-post.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/model-post.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/model-term-registrable.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/model-term-registrable.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/model-term.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/model-term.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/provider.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/provider.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/seeder.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/seeder.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/stub.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/stub.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/stubs/test.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/stubs/test.stub -------------------------------------------------------------------------------- /src/mantle/framework/console/generators/trait-with-psr-4-file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/console/generators/trait-with-psr-4-file.php -------------------------------------------------------------------------------- /src/mantle/framework/events/class-discover-events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/events/class-discover-events.php -------------------------------------------------------------------------------- /src/mantle/framework/events/class-events-manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/events/class-events-manifest.php -------------------------------------------------------------------------------- /src/mantle/framework/exceptions/class-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/exceptions/class-handler.php -------------------------------------------------------------------------------- /src/mantle/framework/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/helpers.php -------------------------------------------------------------------------------- /src/mantle/framework/http/class-kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/http/class-kernel.php -------------------------------------------------------------------------------- /src/mantle/framework/manifest/class-model-manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/manifest/class-model-manifest.php -------------------------------------------------------------------------------- /src/mantle/framework/manifest/class-package-manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/manifest/class-package-manifest.php -------------------------------------------------------------------------------- /src/mantle/framework/providers/class-console-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/providers/class-console-service-provider.php -------------------------------------------------------------------------------- /src/mantle/framework/providers/class-event-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/providers/class-event-service-provider.php -------------------------------------------------------------------------------- /src/mantle/framework/providers/class-provider-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/providers/class-provider-exception.php -------------------------------------------------------------------------------- /src/mantle/framework/providers/class-route-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/providers/class-route-service-provider.php -------------------------------------------------------------------------------- /src/mantle/framework/providers/class-routing-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/providers/class-routing-service-provider.php -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/resources/application-structure/README.md -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/console/class-kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/resources/application-structure/console/class-kernel.php -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/exceptions/class-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/resources/application-structure/exceptions/class-handler.php -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/http/class-kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/resources/application-structure/http/class-kernel.php -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/http/controller/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/http/middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/models/class-attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/resources/application-structure/models/class-attachment.php -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/models/class-category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/resources/application-structure/models/class-category.php -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/models/class-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/resources/application-structure/models/class-post.php -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/models/class-tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/resources/application-structure/models/class-tag.php -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/providers/class-app-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/resources/application-structure/providers/class-app-service-provider.php -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/providers/class-asset-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/resources/application-structure/providers/class-asset-service-provider.php -------------------------------------------------------------------------------- /src/mantle/framework/resources/application-structure/providers/class-event-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/framework/resources/application-structure/providers/class-event-service-provider.php -------------------------------------------------------------------------------- /src/mantle/http-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/LICENSE -------------------------------------------------------------------------------- /src/mantle/http-client/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/autoload.php -------------------------------------------------------------------------------- /src/mantle/http-client/class-cache-flexible-middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/class-cache-flexible-middleware.php -------------------------------------------------------------------------------- /src/mantle/http-client/class-cache-middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/class-cache-middleware.php -------------------------------------------------------------------------------- /src/mantle/http-client/class-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/class-factory.php -------------------------------------------------------------------------------- /src/mantle/http-client/class-http-client-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/class-http-client-exception.php -------------------------------------------------------------------------------- /src/mantle/http-client/class-http-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/class-http-client.php -------------------------------------------------------------------------------- /src/mantle/http-client/class-pending-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/class-pending-request.php -------------------------------------------------------------------------------- /src/mantle/http-client/class-pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/class-pool.php -------------------------------------------------------------------------------- /src/mantle/http-client/class-pooled-pending-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/class-pooled-pending-request.php -------------------------------------------------------------------------------- /src/mantle/http-client/class-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/class-request.php -------------------------------------------------------------------------------- /src/mantle/http-client/class-response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/class-response.php -------------------------------------------------------------------------------- /src/mantle/http-client/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/composer.json -------------------------------------------------------------------------------- /src/mantle/http-client/concerns/trait-caches-requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/concerns/trait-caches-requests.php -------------------------------------------------------------------------------- /src/mantle/http-client/concerns/trait-interacts-with-feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/concerns/trait-interacts-with-feeds.php -------------------------------------------------------------------------------- /src/mantle/http-client/enum-http-method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http-client/enum-http-method.php -------------------------------------------------------------------------------- /src/mantle/http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/LICENSE -------------------------------------------------------------------------------- /src/mantle/http/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/autoload.php -------------------------------------------------------------------------------- /src/mantle/http/class-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/class-controller.php -------------------------------------------------------------------------------- /src/mantle/http/class-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/class-request.php -------------------------------------------------------------------------------- /src/mantle/http/class-response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/class-response.php -------------------------------------------------------------------------------- /src/mantle/http/class-uploaded-file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/class-uploaded-file.php -------------------------------------------------------------------------------- /src/mantle/http/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/composer.json -------------------------------------------------------------------------------- /src/mantle/http/concerns/trait-interacts-with-content-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/concerns/trait-interacts-with-content-types.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-entity-router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-entity-router.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-implicit-route-binding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-implicit-route-binding.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-middleware-name-resolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-middleware-name-resolver.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-redirector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-redirector.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-response-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-response-factory.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-rest-route-registrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-rest-route-registrar.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-route-binding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-route-binding.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-route-file-registrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-route-file-registrar.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-route-registrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-route-registrar.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-route-signature-parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-route-signature-parameters.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-route.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-router.php -------------------------------------------------------------------------------- /src/mantle/http/routing/class-url-generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/class-url-generator.php -------------------------------------------------------------------------------- /src/mantle/http/routing/concerns/trait-registers-rest-route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/concerns/trait-registers-rest-route.php -------------------------------------------------------------------------------- /src/mantle/http/routing/concerns/trait-route-group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/concerns/trait-route-group.php -------------------------------------------------------------------------------- /src/mantle/http/routing/events/class-bindings-substituted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/events/class-bindings-substituted.php -------------------------------------------------------------------------------- /src/mantle/http/routing/events/class-entity-route-added.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/events/class-entity-route-added.php -------------------------------------------------------------------------------- /src/mantle/http/routing/events/class-route-matched.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/events/class-route-matched.php -------------------------------------------------------------------------------- /src/mantle/http/routing/middleware/class-setup-wordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/middleware/class-setup-wordpress.php -------------------------------------------------------------------------------- /src/mantle/http/routing/middleware/class-substitute-bindings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/middleware/class-substitute-bindings.php -------------------------------------------------------------------------------- /src/mantle/http/routing/middleware/class-wrap-template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/middleware/class-wrap-template.php -------------------------------------------------------------------------------- /src/mantle/http/routing/trait-route-dependency-resolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/routing/trait-route-dependency-resolver.php -------------------------------------------------------------------------------- /src/mantle/http/trait-interacts-with-input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/trait-interacts-with-input.php -------------------------------------------------------------------------------- /src/mantle/http/view/class-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/view/class-factory.php -------------------------------------------------------------------------------- /src/mantle/http/view/class-view-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/view/class-view-exception.php -------------------------------------------------------------------------------- /src/mantle/http/view/class-view-finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/view/class-view-finder.php -------------------------------------------------------------------------------- /src/mantle/http/view/class-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/http/view/class-view.php -------------------------------------------------------------------------------- /src/mantle/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/log/LICENSE -------------------------------------------------------------------------------- /src/mantle/log/class-log-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/log/class-log-manager.php -------------------------------------------------------------------------------- /src/mantle/log/class-log-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/log/class-log-service-provider.php -------------------------------------------------------------------------------- /src/mantle/log/class-logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/log/class-logger.php -------------------------------------------------------------------------------- /src/mantle/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/log/composer.json -------------------------------------------------------------------------------- /src/mantle/log/events/class-message-logged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/log/events/class-message-logged.php -------------------------------------------------------------------------------- /src/mantle/new-relic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/new-relic/LICENSE -------------------------------------------------------------------------------- /src/mantle/new-relic/class-new-relic-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/new-relic/class-new-relic-service-provider.php -------------------------------------------------------------------------------- /src/mantle/new-relic/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/new-relic/composer.json -------------------------------------------------------------------------------- /src/mantle/query-monitor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/query-monitor/LICENSE -------------------------------------------------------------------------------- /src/mantle/query-monitor/class-query-monitor-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/query-monitor/class-query-monitor-service-provider.php -------------------------------------------------------------------------------- /src/mantle/query-monitor/class-timing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/query-monitor/class-timing.php -------------------------------------------------------------------------------- /src/mantle/query-monitor/collector/class-collector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/query-monitor/collector/class-collector.php -------------------------------------------------------------------------------- /src/mantle/query-monitor/collector/class-header-collector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/query-monitor/collector/class-header-collector.php -------------------------------------------------------------------------------- /src/mantle/query-monitor/collector/class-log-collector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/query-monitor/collector/class-log-collector.php -------------------------------------------------------------------------------- /src/mantle/query-monitor/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/query-monitor/composer.json -------------------------------------------------------------------------------- /src/mantle/query-monitor/output/class-output-headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/query-monitor/output/class-output-headers.php -------------------------------------------------------------------------------- /src/mantle/query-monitor/output/class-output-logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/query-monitor/output/class-output-logs.php -------------------------------------------------------------------------------- /src/mantle/query-monitor/output/class-output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/query-monitor/output/class-output.php -------------------------------------------------------------------------------- /src/mantle/queue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/LICENSE -------------------------------------------------------------------------------- /src/mantle/queue/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/autoload.php -------------------------------------------------------------------------------- /src/mantle/queue/class-closure-job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/class-closure-job.php -------------------------------------------------------------------------------- /src/mantle/queue/class-dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/class-dispatcher.php -------------------------------------------------------------------------------- /src/mantle/queue/class-pending-closure-dispatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/class-pending-closure-dispatch.php -------------------------------------------------------------------------------- /src/mantle/queue/class-pending-dispatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/class-pending-dispatch.php -------------------------------------------------------------------------------- /src/mantle/queue/class-queue-fake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/class-queue-fake.php -------------------------------------------------------------------------------- /src/mantle/queue/class-queue-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/class-queue-manager.php -------------------------------------------------------------------------------- /src/mantle/queue/class-queue-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/class-queue-service-provider.php -------------------------------------------------------------------------------- /src/mantle/queue/class-queue-worker-job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/class-queue-worker-job.php -------------------------------------------------------------------------------- /src/mantle/queue/class-worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/class-worker.php -------------------------------------------------------------------------------- /src/mantle/queue/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/composer.json -------------------------------------------------------------------------------- /src/mantle/queue/console/class-cleanup-jobs-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/console/class-cleanup-jobs-command.php -------------------------------------------------------------------------------- /src/mantle/queue/console/class-run-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/console/class-run-command.php -------------------------------------------------------------------------------- /src/mantle/queue/events/class-job-failed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/events/class-job-failed.php -------------------------------------------------------------------------------- /src/mantle/queue/events/class-job-processed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/events/class-job-processed.php -------------------------------------------------------------------------------- /src/mantle/queue/events/class-job-processing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/events/class-job-processing.php -------------------------------------------------------------------------------- /src/mantle/queue/events/class-job-queued.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/events/class-job-queued.php -------------------------------------------------------------------------------- /src/mantle/queue/events/class-providers-registered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/events/class-providers-registered.php -------------------------------------------------------------------------------- /src/mantle/queue/events/class-run-complete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/events/class-run-complete.php -------------------------------------------------------------------------------- /src/mantle/queue/events/class-run-start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/events/class-run-start.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/admin/class-queue-job-admin-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/admin/class-queue-job-admin-page.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/admin/class-queue-jobs-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/admin/class-queue-jobs-table.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/admin/class-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/admin/class-service-provider.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/admin/template/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/admin/template/single.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/admin/template/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/admin/template/table.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/class-meta-key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/class-meta-key.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/class-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/class-provider.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/class-queue-record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/class-queue-record.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/class-queue-worker-job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/class-queue-worker-job.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/class-scheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/class-scheduler.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/class-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/class-service-provider.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/enum-event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/enum-event.php -------------------------------------------------------------------------------- /src/mantle/queue/providers/wordpress/enum-post-status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/providers/wordpress/enum-post-status.php -------------------------------------------------------------------------------- /src/mantle/queue/trait-dispatchable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/trait-dispatchable.php -------------------------------------------------------------------------------- /src/mantle/queue/trait-queueable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/queue/trait-queueable.php -------------------------------------------------------------------------------- /src/mantle/rest-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/rest-api/LICENSE -------------------------------------------------------------------------------- /src/mantle/rest-api/class-registered-rest-field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/rest-api/class-registered-rest-field.php -------------------------------------------------------------------------------- /src/mantle/rest-api/class-rest-field-registrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/rest-api/class-rest-field-registrar.php -------------------------------------------------------------------------------- /src/mantle/rest-api/class-rest-field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/rest-api/class-rest-field.php -------------------------------------------------------------------------------- /src/mantle/rest-api/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/rest-api/composer.json -------------------------------------------------------------------------------- /src/mantle/scheduling/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/scheduling/LICENSE -------------------------------------------------------------------------------- /src/mantle/scheduling/class-command-event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/scheduling/class-command-event.php -------------------------------------------------------------------------------- /src/mantle/scheduling/class-event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/scheduling/class-event.php -------------------------------------------------------------------------------- /src/mantle/scheduling/class-job-event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/scheduling/class-job-event.php -------------------------------------------------------------------------------- /src/mantle/scheduling/class-schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/scheduling/class-schedule.php -------------------------------------------------------------------------------- /src/mantle/scheduling/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/scheduling/composer.json -------------------------------------------------------------------------------- /src/mantle/scheduling/trait-manages-frequencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/scheduling/trait-manages-frequencies.php -------------------------------------------------------------------------------- /src/mantle/support/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/LICENSE -------------------------------------------------------------------------------- /src/mantle/support/attributes/class-action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/attributes/class-action.php -------------------------------------------------------------------------------- /src/mantle/support/attributes/class-filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/attributes/class-filter.php -------------------------------------------------------------------------------- /src/mantle/support/attributes/hookable/class-hookable-allow-legacy-duplicate-registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/attributes/hookable/class-hookable-allow-legacy-duplicate-registration.php -------------------------------------------------------------------------------- /src/mantle/support/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/autoload.php -------------------------------------------------------------------------------- /src/mantle/support/class-arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-arr.php -------------------------------------------------------------------------------- /src/mantle/support/class-collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-collection.php -------------------------------------------------------------------------------- /src/mantle/support/class-environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-environment.php -------------------------------------------------------------------------------- /src/mantle/support/class-higher-order-collection-proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-higher-order-collection-proxy.php -------------------------------------------------------------------------------- /src/mantle/support/class-higher-order-tap-proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-higher-order-tap-proxy.php -------------------------------------------------------------------------------- /src/mantle/support/class-higher-order-when-proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-higher-order-when-proxy.php -------------------------------------------------------------------------------- /src/mantle/support/class-html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-html.php -------------------------------------------------------------------------------- /src/mantle/support/class-item-not-found-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-item-not-found-exception.php -------------------------------------------------------------------------------- /src/mantle/support/class-memoizable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-memoizable.php -------------------------------------------------------------------------------- /src/mantle/support/class-memoize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-memoize.php -------------------------------------------------------------------------------- /src/mantle/support/class-mixed-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-mixed-data.php -------------------------------------------------------------------------------- /src/mantle/support/class-multiple-items-found-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-multiple-items-found-exception.php -------------------------------------------------------------------------------- /src/mantle/support/class-object-metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-object-metadata.php -------------------------------------------------------------------------------- /src/mantle/support/class-option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-option.php -------------------------------------------------------------------------------- /src/mantle/support/class-pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-pipeline.php -------------------------------------------------------------------------------- /src/mantle/support/class-pluralizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-pluralizer.php -------------------------------------------------------------------------------- /src/mantle/support/class-reflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-reflector.php -------------------------------------------------------------------------------- /src/mantle/support/class-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-service-provider.php -------------------------------------------------------------------------------- /src/mantle/support/class-str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-str.php -------------------------------------------------------------------------------- /src/mantle/support/class-string-replacements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-string-replacements.php -------------------------------------------------------------------------------- /src/mantle/support/class-stringable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-stringable.php -------------------------------------------------------------------------------- /src/mantle/support/class-uri-query-string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-uri-query-string.php -------------------------------------------------------------------------------- /src/mantle/support/class-uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/class-uri.php -------------------------------------------------------------------------------- /src/mantle/support/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/composer.json -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-array.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-cache.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-core-objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-core-objects.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-environment.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-general.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-log.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-memoize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-memoize.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-meta.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-mixed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-mixed.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-response.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-rest-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-rest-api.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers-validated-hook-removal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers-validated-hook-removal.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/helpers.php -------------------------------------------------------------------------------- /src/mantle/support/helpers/internals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/helpers/internals.php -------------------------------------------------------------------------------- /src/mantle/support/html/trait-assertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/html/trait-assertions.php -------------------------------------------------------------------------------- /src/mantle/support/interface-enumerable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/interface-enumerable.php -------------------------------------------------------------------------------- /src/mantle/support/internal/class-html-helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/internal/class-html-helpers.php -------------------------------------------------------------------------------- /src/mantle/support/registration/class-post-type-arguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/registration/class-post-type-arguments.php -------------------------------------------------------------------------------- /src/mantle/support/registration/class-taxonomy-arguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/registration/class-taxonomy-arguments.php -------------------------------------------------------------------------------- /src/mantle/support/schema/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/schema/meta.json -------------------------------------------------------------------------------- /src/mantle/support/trait-forward-calls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/trait-forward-calls.php -------------------------------------------------------------------------------- /src/mantle/support/trait-interacts-with-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/trait-interacts-with-data.php -------------------------------------------------------------------------------- /src/mantle/support/traits/trait-conditionable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/traits/trait-conditionable.php -------------------------------------------------------------------------------- /src/mantle/support/traits/trait-enumerates-values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/traits/trait-enumerates-values.php -------------------------------------------------------------------------------- /src/mantle/support/traits/trait-hookable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/traits/trait-hookable.php -------------------------------------------------------------------------------- /src/mantle/support/traits/trait-loads-classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/traits/trait-loads-classes.php -------------------------------------------------------------------------------- /src/mantle/support/traits/trait-macroable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/traits/trait-macroable.php -------------------------------------------------------------------------------- /src/mantle/support/traits/trait-makeable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/traits/trait-makeable.php -------------------------------------------------------------------------------- /src/mantle/support/traits/trait-singleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/traits/trait-singleton.php -------------------------------------------------------------------------------- /src/mantle/support/traits/trait-tappable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/support/traits/trait-tappable.php -------------------------------------------------------------------------------- /src/mantle/testing/EarlyDeprecationsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/EarlyDeprecationsHandler.php -------------------------------------------------------------------------------- /src/mantle/testing/EarlyIncorrectUsageHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/EarlyIncorrectUsageHandler.php -------------------------------------------------------------------------------- /src/mantle/testing/FrameworkTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/FrameworkTestCase.php -------------------------------------------------------------------------------- /src/mantle/testing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/LICENSE -------------------------------------------------------------------------------- /src/mantle/testing/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/TestCase.php -------------------------------------------------------------------------------- /src/mantle/testing/TraceWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/TraceWriter.php -------------------------------------------------------------------------------- /src/mantle/testing/attributes/DisableGlobalPreservation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/attributes/DisableGlobalPreservation.php -------------------------------------------------------------------------------- /src/mantle/testing/attributes/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/attributes/Environment.php -------------------------------------------------------------------------------- /src/mantle/testing/attributes/PermalinkStructure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/attributes/PermalinkStructure.php -------------------------------------------------------------------------------- /src/mantle/testing/attributes/PreserveObjectCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/attributes/PreserveObjectCache.php -------------------------------------------------------------------------------- /src/mantle/testing/attributes/UserAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/attributes/UserAgent.php -------------------------------------------------------------------------------- /src/mantle/testing/attributes/class-acting-as.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/attributes/class-acting-as.php -------------------------------------------------------------------------------- /src/mantle/testing/attributes/class-expected-deprecation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/attributes/class-expected-deprecation.php -------------------------------------------------------------------------------- /src/mantle/testing/attributes/class-expected-incorrect-usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/attributes/class-expected-incorrect-usage.php -------------------------------------------------------------------------------- /src/mantle/testing/attributes/class-ignore-deprecation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/attributes/class-ignore-deprecation.php -------------------------------------------------------------------------------- /src/mantle/testing/attributes/class-ignore-incorrect-usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/attributes/class-ignore-incorrect-usage.php -------------------------------------------------------------------------------- /src/mantle/testing/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/autoload.php -------------------------------------------------------------------------------- /src/mantle/testing/class-assertable-html-string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-assertable-html-string.php -------------------------------------------------------------------------------- /src/mantle/testing/class-assertable-json-string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-assertable-json-string.php -------------------------------------------------------------------------------- /src/mantle/testing/class-block-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-block-factory.php -------------------------------------------------------------------------------- /src/mantle/testing/class-installation-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-installation-manager.php -------------------------------------------------------------------------------- /src/mantle/testing/class-mock-action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-mock-action.php -------------------------------------------------------------------------------- /src/mantle/testing/class-mock-http-response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-mock-http-response.php -------------------------------------------------------------------------------- /src/mantle/testing/class-mock-http-sequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-mock-http-sequence.php -------------------------------------------------------------------------------- /src/mantle/testing/class-pending-testable-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-pending-testable-request.php -------------------------------------------------------------------------------- /src/mantle/testing/class-test-case.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-test-case.php -------------------------------------------------------------------------------- /src/mantle/testing/class-test-command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-test-command.php -------------------------------------------------------------------------------- /src/mantle/testing/class-test-response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-test-response.php -------------------------------------------------------------------------------- /src/mantle/testing/class-utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-utils.php -------------------------------------------------------------------------------- /src/mantle/testing/class-wp-die.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-wp-die.php -------------------------------------------------------------------------------- /src/mantle/testing/class-wp-unittestcase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/class-wp-unittestcase.php -------------------------------------------------------------------------------- /src/mantle/testing/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/composer.json -------------------------------------------------------------------------------- /src/mantle/testing/concerns/snapshots/trait-mocks-http-requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/snapshots/trait-mocks-http-requests.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-admin-screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-admin-screen.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-assertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-assertions.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-asset-assertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-asset-assertions.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-block-assertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-block-assertions.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-core-shim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-core-shim.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-create-application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-create-application.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-dependency-assertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-dependency-assertions.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-deprecations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-deprecations.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-element-assertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-element-assertions.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-hooks.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-incorrect-usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-incorrect-usage.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-interacts-with-attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-interacts-with-attributes.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-interacts-with-console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-interacts-with-console.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-interacts-with-container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-interacts-with-container.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-interacts-with-cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-interacts-with-cron.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-interacts-with-environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-interacts-with-environment.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-interacts-with-hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-interacts-with-hooks.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-interacts-with-mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-interacts-with-mail.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-interacts-with-phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-interacts-with-phpunit.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-interacts-with-requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-interacts-with-requests.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-interacts-with-user-agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-interacts-with-user-agent.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-makes-http-requests-with-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-makes-http-requests-with-templates.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-makes-http-requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-makes-http-requests.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-multisite-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-multisite-test.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-network-admin-screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-network-admin-screen.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-output-messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-output-messages.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-phpunit-upgrade-warning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-phpunit-upgrade-warning.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-preserves-globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-preserves-globals.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-prevent-remote-requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-prevent-remote-requests.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-reads-annotations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-reads-annotations.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-refresh-database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-refresh-database.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-reset-data-structures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-reset-data-structures.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-reset-server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-reset-server.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-response-dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-response-dumper.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-response-snapshot-testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-response-snapshot-testing.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-rsync-installation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-rsync-installation.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-single-site-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-single-site-test.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-unregister-all-meta-keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-unregister-all-meta-keys.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-warn-remote-requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-warn-remote-requests.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-with-faker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-with-faker.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-wordpress-authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-wordpress-authentication.php -------------------------------------------------------------------------------- /src/mantle/testing/concerns/trait-wordpress-state.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/concerns/trait-wordpress-state.php -------------------------------------------------------------------------------- /src/mantle/testing/core-polyfill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/core-polyfill.php -------------------------------------------------------------------------------- /src/mantle/testing/data/images/2004-07-22-DSC_0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/2004-07-22-DSC_0007.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/2004-07-22-DSC_0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/2004-07-22-DSC_0008.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/2007-06-17DSC_4173.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/2007-06-17DSC_4173.JPG -------------------------------------------------------------------------------- /src/mantle/testing/data/images/33772.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/33772.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/a2-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/a2-small.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/canola.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/canola.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/codeispoetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/codeispoetry.png -------------------------------------------------------------------------------- /src/mantle/testing/data/images/gradient-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/gradient-square.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/one-blue-pixel-1-100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/one-blue-pixel-1-100x100.png -------------------------------------------------------------------------------- /src/mantle/testing/data/images/one-blue-pixel-100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/one-blue-pixel-100x100.png -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image-cmyk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image-cmyk.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image-grayscale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image-grayscale.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image-iptc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image-iptc.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image-large.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image-lzw.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image-lzw.tiff -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image-mime-jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image-mime-jpg.png -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image-no-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image-no-extension -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image-upside-down.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image-upside-down.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image-zip.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image-zip.tiff -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image.bmp -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image.gif -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image.ico -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image.jp2 -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image.pct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image.pct -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image.png -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image.psd -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image.sgi -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image.tga -------------------------------------------------------------------------------- /src/mantle/testing/data/images/test-image.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/test-image.tiff -------------------------------------------------------------------------------- /src/mantle/testing/data/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/transparent.png -------------------------------------------------------------------------------- /src/mantle/testing/data/images/waffles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/waffles.jpg -------------------------------------------------------------------------------- /src/mantle/testing/data/images/wordpress-gsoc-flyer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/data/images/wordpress-gsoc-flyer.pdf -------------------------------------------------------------------------------- /src/mantle/testing/doubles/class-spy-rest-server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/doubles/class-spy-rest-server.php -------------------------------------------------------------------------------- /src/mantle/testing/exceptions/BacktraceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/exceptions/BacktraceException.php -------------------------------------------------------------------------------- /src/mantle/testing/exceptions/UnexpectedDeprecatedNoticeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/exceptions/UnexpectedDeprecatedNoticeException.php -------------------------------------------------------------------------------- /src/mantle/testing/exceptions/UnexpectedIncorrectUsageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/exceptions/UnexpectedIncorrectUsageException.php -------------------------------------------------------------------------------- /src/mantle/testing/exceptions/class-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/exceptions/class-exception.php -------------------------------------------------------------------------------- /src/mantle/testing/exceptions/class-exit-simulation-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/exceptions/class-exit-simulation-exception.php -------------------------------------------------------------------------------- /src/mantle/testing/exceptions/class-response-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/exceptions/class-response-exception.php -------------------------------------------------------------------------------- /src/mantle/testing/exceptions/class-stray-request-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/exceptions/class-stray-request-exception.php -------------------------------------------------------------------------------- /src/mantle/testing/exceptions/class-wp-die-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/exceptions/class-wp-die-exception.php -------------------------------------------------------------------------------- /src/mantle/testing/exceptions/class-wp-redirect-exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/exceptions/class-wp-redirect-exception.php -------------------------------------------------------------------------------- /src/mantle/testing/expectation/class-expectation-container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/expectation/class-expectation-container.php -------------------------------------------------------------------------------- /src/mantle/testing/expectation/class-expectation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/expectation/class-expectation.php -------------------------------------------------------------------------------- /src/mantle/testing/install-wordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/install-wordpress.php -------------------------------------------------------------------------------- /src/mantle/testing/mail/class-mail-message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/mail/class-mail-message.php -------------------------------------------------------------------------------- /src/mantle/testing/mail/class-mock-mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/mail/class-mock-mailer.php -------------------------------------------------------------------------------- /src/mantle/testing/mail/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/mail/helpers.php -------------------------------------------------------------------------------- /src/mantle/testing/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/preload.php -------------------------------------------------------------------------------- /src/mantle/testing/snapshots/class-html-driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/snapshots/class-html-driver.php -------------------------------------------------------------------------------- /src/mantle/testing/wordpress-bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testing/wordpress-bootstrap.php -------------------------------------------------------------------------------- /src/mantle/testkit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testkit/LICENSE -------------------------------------------------------------------------------- /src/mantle/testkit/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testkit/TestCase.php -------------------------------------------------------------------------------- /src/mantle/testkit/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testkit/autoload.php -------------------------------------------------------------------------------- /src/mantle/testkit/class-application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testkit/class-application.php -------------------------------------------------------------------------------- /src/mantle/testkit/class-exception-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testkit/class-exception-handler.php -------------------------------------------------------------------------------- /src/mantle/testkit/class-integration-test-case.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testkit/class-integration-test-case.php -------------------------------------------------------------------------------- /src/mantle/testkit/class-test-case.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testkit/class-test-case.php -------------------------------------------------------------------------------- /src/mantle/testkit/class-unit-test-case.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testkit/class-unit-test-case.php -------------------------------------------------------------------------------- /src/mantle/testkit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testkit/composer.json -------------------------------------------------------------------------------- /src/mantle/testkit/concerns/trait-create-application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testkit/concerns/trait-create-application.php -------------------------------------------------------------------------------- /src/mantle/testkit/concerns/trait-installs-wordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/testkit/concerns/trait-installs-wordpress.php -------------------------------------------------------------------------------- /src/mantle/types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/types/LICENSE -------------------------------------------------------------------------------- /src/mantle/types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/types/README.md -------------------------------------------------------------------------------- /src/mantle/types/attributes/class-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/types/attributes/class-admin.php -------------------------------------------------------------------------------- /src/mantle/types/attributes/class-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/types/attributes/class-cli.php -------------------------------------------------------------------------------- /src/mantle/types/attributes/class-environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/types/attributes/class-environment.php -------------------------------------------------------------------------------- /src/mantle/types/attributes/class-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/types/attributes/class-request.php -------------------------------------------------------------------------------- /src/mantle/types/class-hookable-feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/types/class-hookable-feature.php -------------------------------------------------------------------------------- /src/mantle/types/class-validator-group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/types/class-validator-group.php -------------------------------------------------------------------------------- /src/mantle/types/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/types/composer.json -------------------------------------------------------------------------------- /src/mantle/types/interface-validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/types/interface-validator.php -------------------------------------------------------------------------------- /src/mantle/view/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/view/LICENSE -------------------------------------------------------------------------------- /src/mantle/view/class-view-service-provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/view/class-view-service-provider.php -------------------------------------------------------------------------------- /src/mantle/view/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/view/composer.json -------------------------------------------------------------------------------- /src/mantle/view/engines/class-blade-engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/view/engines/class-blade-engine.php -------------------------------------------------------------------------------- /src/mantle/view/engines/class-engine-resolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/view/engines/class-engine-resolver.php -------------------------------------------------------------------------------- /src/mantle/view/engines/class-file-engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/view/engines/class-file-engine.php -------------------------------------------------------------------------------- /src/mantle/view/engines/class-php-engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/mantle-framework/HEAD/src/mantle/view/engines/class-php-engine.php --------------------------------------------------------------------------------