├── .babelrc ├── .env ├── .env.test ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report---.md │ ├── documentation-issue---.md │ └── feature-request--.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── application.yml │ ├── packages.yml │ └── split_monorepo.yaml ├── .gitignore ├── .php-cs-fixer.dist.php ├── .php_cs.dist ├── CHANGELOG-0.1.md ├── CHANGELOG-0.2.md ├── CHANGELOG-0.3.md ├── CHANGELOG-0.4.md ├── CHANGELOG-0.5.md ├── CHANGELOG-0.6.md ├── CHANGELOG-0.7.md ├── CHANGELOG-0.8.md ├── CHANGELOG-0.9.md ├── LICENSE ├── Makefile ├── README.md ├── REMOVE_MONOFONY.md ├── UPGRADE.md ├── assets ├── bootstrap.js ├── controllers.json └── controllers │ └── hello_controller.js ├── behat.yml.dist ├── bin ├── console └── upgrade-to-0.4 ├── compose.override.yaml ├── compose.yaml ├── composer.json ├── config ├── behat │ └── suites.yaml ├── bootstrap.php ├── bundles.php ├── packages │ ├── api_platform.yaml │ ├── assets.yaml │ ├── dev │ │ ├── debug.yaml │ │ ├── jms_serializer.yaml │ │ ├── monolog.yaml │ │ ├── nelmio_alice.yaml │ │ ├── routing.yaml │ │ ├── web_profiler.yaml │ │ └── zenstruck_foundry.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── fos_rest.yaml │ ├── framework.yaml │ ├── gesdinet_jwt_refresh_token.yaml │ ├── jms_serializer.yaml │ ├── lexik_jwt_authentication.yaml │ ├── liip_imagine.yaml │ ├── mailer.yaml │ ├── messenger.yaml │ ├── monofony_admin.yaml │ ├── monofony_core.yaml │ ├── monofony_front.yaml │ ├── nelmio_cors.yaml │ ├── prod │ │ ├── doctrine.yaml │ │ ├── jms_serializer.yaml │ │ ├── monolog.yaml │ │ └── webpack_encore.yaml │ ├── routing.yaml │ ├── security.yaml │ ├── sonata_block.yaml │ ├── test │ │ ├── fidry_alice_data_fixtures.yaml │ │ ├── framework.yaml │ │ ├── lexik_jwt_authentication.yaml │ │ ├── monofony_core.yaml │ │ ├── monolog.yaml │ │ ├── nelmio_alice.yaml │ │ ├── routing.yaml │ │ ├── security.yaml │ │ ├── web_profiler.yaml │ │ └── zenstruck_foundry.yaml │ ├── twig.yaml │ ├── twig_component.yaml │ ├── twig_extensions.yaml │ ├── validator.yaml │ ├── vich_uploader.yaml │ └── webpack_encore.yaml ├── routes.yaml ├── routes │ ├── api_platform.yaml │ ├── dev │ │ └── web_profiler.yaml │ ├── liip_imagine.yaml │ └── ux_live_component.yaml ├── services.yaml ├── services │ ├── monofony_api.yaml │ ├── monofony_backend.yaml │ ├── monofony_core.yaml │ └── monofony_frontend.yaml └── services_test.yaml ├── docs ├── .gitignore ├── README.md ├── _exts │ ├── LICENSE │ ├── sensio │ │ ├── __init__.py │ │ └── sphinx │ │ │ ├── __init__.py │ │ │ ├── configurationblock.py │ │ │ ├── php.py │ │ │ ├── phpcode.py │ │ │ └── refinclude.py │ └── setup.py ├── _images │ ├── api.png │ ├── doc_logo.png │ ├── doctrine.png │ ├── github_banner.png │ ├── logo.png │ ├── symfonyfs.png │ └── twig.png ├── _themes │ └── sylius_rtd_theme │ │ ├── __init__.py │ │ ├── breadcrumbs.html │ │ ├── footer.html │ │ ├── layout.html │ │ ├── layout_old.html │ │ ├── search.html │ │ ├── searchbox.html │ │ ├── static │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── sylius-custom.css │ │ │ ├── sylius.css │ │ │ └── theme.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── img │ │ │ └── swan.png │ │ └── js │ │ │ └── theme.js │ │ ├── theme.conf │ │ └── versions.html ├── book │ ├── architecture │ │ ├── architecture.rst │ │ ├── fixtures.rst │ │ ├── index.rst │ │ └── map.rst.inc │ ├── index.rst │ ├── map.rst.inc │ └── user │ │ ├── admins.rst │ │ ├── customers.rst │ │ ├── index.rst │ │ └── map.rst.inc ├── conf.py ├── cookbook │ ├── bdd │ │ ├── behat │ │ │ ├── basic-usage.rst │ │ │ ├── how-to-add-new-context.rst │ │ │ ├── how-to-add-new-page.rst │ │ │ ├── how-to-change-behat-application-base-url.rst │ │ │ ├── how-to-define-new-suite.rst │ │ │ ├── how-to-use-transformers.rst │ │ │ ├── index.rst │ │ │ └── map.rst.inc │ │ ├── map.rst.inc │ │ └── phpspec │ │ │ ├── how-to-configure-phpspec-with-code-coverage.rst │ │ │ ├── how-to-design-entities-with-phpspec.rst │ │ │ ├── how-to-design-services-with-phpspec.rst │ │ │ ├── how-to-disable-phpspec-code-coverage.rst │ │ │ ├── index.rst │ │ │ └── map.rst.inc │ ├── dashboard │ │ ├── basic-example.rst │ │ ├── index.rst │ │ └── map.rst.inc │ ├── entities │ │ ├── configure-backend-menu.rst │ │ ├── configure-your-routes.rst │ │ ├── first-resource.rst │ │ ├── manage-your-entity.rst │ │ └── map.rst.inc │ ├── fixtures │ │ ├── factory.rst │ │ ├── fixture.rst │ │ ├── load.rst │ │ ├── map.rst.inc │ │ └── suite.rst │ ├── index.rst │ └── map.rst.inc ├── deployment │ ├── index.rst │ └── map.rst.inc ├── index.rst └── requirements.txt ├── ecs-recipe.php ├── ecs.php ├── etc ├── bash │ ├── application.sh │ └── common.lib.sh └── build │ └── .gitignore ├── gulpfile.babel.js ├── infection.json.dist ├── monorepo-builder.php ├── package.json ├── phpspec.yml.dist ├── phpstan.neon ├── phpunit.xml.dist ├── psalm.xml ├── public ├── .htaccess ├── apple-touch-icon.png ├── config.php ├── favicon.ico ├── index.php └── robots.txt ├── rector.php ├── src ├── Kernel.php └── Monofony │ ├── Bridge │ ├── Behat │ │ ├── .gitignore │ │ ├── Behaviour │ │ │ ├── DescribesIt.php │ │ │ ├── DocumentAccessor.php │ │ │ ├── NamesIt.php │ │ │ ├── SpecifiesItsCode.php │ │ │ └── Toggles.php │ │ ├── Client │ │ │ ├── ApiClientInterface.php │ │ │ ├── ApiPlatformClient.php │ │ │ ├── ApiPlatformSecurityClient.php │ │ │ ├── ApiSecurityClientInterface.php │ │ │ ├── ContentTypeGuide.php │ │ │ ├── ContentTypeGuideInterface.php │ │ │ ├── Request.php │ │ │ ├── RequestBuilder.php │ │ │ ├── RequestFactory.php │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseChecker.php │ │ │ └── ResponseCheckerInterface.php │ │ ├── Crud │ │ │ ├── AbstractCreatePage.php │ │ │ ├── AbstractIndexPage.php │ │ │ ├── AbstractUpdatePage.php │ │ │ ├── CreatePageInterface.php │ │ │ ├── IndexPageInterface.php │ │ │ └── UpdatePageInterface.php │ │ ├── Exception │ │ │ └── NotificationExpectationMismatchException.php │ │ ├── LICENSE │ │ ├── NotificationType.php │ │ ├── README.md │ │ ├── Service │ │ │ ├── AbstractSecurityService.php │ │ │ ├── Accessor │ │ │ │ ├── NotificationAccessor.php │ │ │ │ ├── NotificationAccessorInterface.php │ │ │ │ ├── TableAccessor.php │ │ │ │ └── TableAccessorInterface.php │ │ │ ├── AdminSecurityService.php │ │ │ ├── AdminSecurityServiceInterface.php │ │ │ ├── ApiSecurityService.php │ │ │ ├── AppSecurityService.php │ │ │ ├── AppSecurityServiceInterface.php │ │ │ ├── DriverHelper.php │ │ │ ├── EmailChecker.php │ │ │ ├── EmailCheckerInterface.php │ │ │ ├── JQueryHelper.php │ │ │ ├── MessageSendCacher.php │ │ │ ├── NotificationChecker.php │ │ │ ├── NotificationCheckerInterface.php │ │ │ ├── Resolver │ │ │ │ ├── CurrentPageResolver.php │ │ │ │ └── CurrentPageResolverInterface.php │ │ │ ├── SecurityServiceInterface.php │ │ │ ├── Setter │ │ │ │ ├── CookieSetter.php │ │ │ │ └── CookieSetterInterface.php │ │ │ ├── SharedSecurityService.php │ │ │ ├── SharedSecurityServiceInterface.php │ │ │ ├── SharedStorage.php │ │ │ ├── SharedStorageInterface.php │ │ │ └── SprintfResponseEscaper.php │ │ ├── composer.json │ │ ├── phpstan.neon │ │ └── services_test.yaml │ └── SyliusUser │ │ ├── .gitignore │ │ ├── EventListener │ │ └── PasswordUpdaterListener.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon │ │ └── spec │ │ └── EventListener │ │ └── PasswordUpdaterListenerSpec.php │ ├── Bundle │ └── CoreBundle │ │ ├── .gitignore │ │ ├── DataCollector │ │ └── MonofonyDataCollector.php │ │ ├── DependencyInjection │ │ ├── Compiler │ │ │ ├── BackwardsCompatibility │ │ │ │ └── Symfony6PrivateServicesPass.php │ │ │ ├── ChangeCustomerContextVisibilityPass.php │ │ │ ├── RegisterDashboardStatisticsPass.php │ │ │ ├── RegisterObjectManagerAliasPass.php │ │ │ ├── RegisterOpenApiFactoriesPass.php │ │ │ └── RegisterPasswordListenerForResourcesPass.php │ │ └── MonofonyCoreExtension.php │ │ ├── LICENSE │ │ ├── MonofonyCoreBundle.php │ │ ├── Resources │ │ ├── config │ │ │ └── services.yaml │ │ └── views │ │ │ └── DataCollector │ │ │ └── monofony.html.twig │ │ ├── Tests │ │ └── DependencyInjection │ │ │ └── Compiler │ │ │ ├── RegisterOpenApiFactoriesPassTest.php │ │ │ └── RegisterPasswordListenerForResourcesPassTest.php │ │ ├── composer.json │ │ ├── phpstan.neon │ │ ├── spec │ │ └── DataCollector │ │ │ └── MonofonyDataCollectorSpec.php │ │ └── symfony.lock │ ├── Component │ ├── Admin │ │ ├── .gitignore │ │ ├── Dashboard │ │ │ ├── DashboardStatisticsProvider.php │ │ │ └── Statistics │ │ │ │ └── StatisticInterface.php │ │ ├── LICENSE │ │ ├── Menu │ │ │ └── AdminMenuBuilderInterface.php │ │ ├── composer.json │ │ ├── phpstan.neon │ │ └── spec │ │ │ └── Dashboard │ │ │ └── DashboardStatisticsProviderSpec.php │ └── Core │ │ ├── .gitignore │ │ ├── Formatter │ │ └── StringInflector.php │ │ ├── LICENSE │ │ ├── composer.json │ │ └── phpstan.neon │ ├── Contracts │ ├── Admin │ │ ├── .gitignore │ │ ├── Dashboard │ │ │ └── DashboardStatisticsProviderInterface.php │ │ ├── LICENSE │ │ ├── composer.json │ │ └── phpstan.neon │ ├── Api │ │ ├── Identifier │ │ │ └── AppUserIdentifierNormalizerInterface.php │ │ ├── LICENSE │ │ ├── OpenApi │ │ │ └── Factory │ │ │ │ └── AppAuthenticationTokenOpenApiFactoryInterface.php │ │ ├── Swagger │ │ │ └── AppAuthenticationTokenDocumentationNormalizerInterface.php │ │ ├── composer.json │ │ └── phpstan.neon │ ├── Core │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Model │ │ │ ├── Customer │ │ │ │ └── CustomerInterface.php │ │ │ ├── Media │ │ │ │ └── FileInterface.php │ │ │ └── User │ │ │ │ ├── AdminAvatarInterface.php │ │ │ │ ├── AdminUserInterface.php │ │ │ │ └── AppUserInterface.php │ │ ├── composer.json │ │ └── phpstan.neon │ └── Front │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Menu │ │ └── AccountMenuBuilderInterface.php │ │ ├── composer.json │ │ └── phpstan.neon │ ├── MetaPack │ ├── AdminMeta │ │ ├── .recipe │ │ │ ├── assets │ │ │ │ └── backend │ │ │ │ │ ├── img │ │ │ │ │ ├── admin-logo.svg │ │ │ │ │ ├── avatar.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── js │ │ │ │ │ ├── app-date-time-picker.js │ │ │ │ │ ├── app-files-preview.js │ │ │ │ │ ├── app-images-preview.js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── shim-semantic-ui.js │ │ │ │ │ └── sylius-compound-form-errors.js │ │ │ │ │ ├── scss │ │ │ │ │ ├── _ui.scss │ │ │ │ │ └── main.scss │ │ │ │ │ └── webpack.config.js │ │ │ ├── config │ │ │ │ ├── behat │ │ │ │ │ └── suites │ │ │ │ │ │ └── ui │ │ │ │ │ │ ├── admin │ │ │ │ │ │ └── dashboard.yaml │ │ │ │ │ │ ├── customer │ │ │ │ │ │ └── managing_customers.yaml │ │ │ │ │ │ └── user │ │ │ │ │ │ └── managing_administrators.yaml │ │ │ │ ├── packages │ │ │ │ │ └── monofony_admin.yaml │ │ │ │ ├── routes │ │ │ │ │ └── backend.yaml │ │ │ │ └── sylius │ │ │ │ │ └── routes │ │ │ │ │ └── backend │ │ │ │ │ ├── _main.yaml │ │ │ │ │ ├── admin_user.yaml │ │ │ │ │ ├── customer.yaml │ │ │ │ │ ├── partial.yaml │ │ │ │ │ ├── partial │ │ │ │ │ └── customer.yaml │ │ │ │ │ └── security.yaml │ │ │ ├── features │ │ │ │ ├── admin │ │ │ │ │ └── dashboard.feature │ │ │ │ └── user │ │ │ │ │ ├── managing_administrators │ │ │ │ │ ├── adding_administrator.feature │ │ │ │ │ ├── adding_avatar_to_administrator.feature │ │ │ │ │ ├── browsing_administrator.feature │ │ │ │ │ ├── deleting_administrators.feature │ │ │ │ │ ├── deleting_multiple_administrators.feature │ │ │ │ │ └── editing_administrator.feature │ │ │ │ │ └── managing_customers │ │ │ │ │ ├── browsing_customers │ │ │ │ │ ├── browsing_customers.feature │ │ │ │ │ └── sorting_customers_by_email.feature │ │ │ │ │ ├── editing_customer.feature │ │ │ │ │ └── seeing_customer_details.feature │ │ │ ├── spec │ │ │ │ └── App │ │ │ │ │ └── Dashboard │ │ │ │ │ └── Statistics │ │ │ │ │ └── CustomerStatisticSpec.php │ │ │ ├── src │ │ │ │ ├── Controller │ │ │ │ │ └── DashboardController.php │ │ │ │ ├── Dashboard │ │ │ │ │ └── Statistics │ │ │ │ │ │ └── CustomerStatistic.php │ │ │ │ ├── Grid │ │ │ │ │ ├── AdminUserGrid.php │ │ │ │ │ └── CustomerGrid.php │ │ │ │ └── Menu │ │ │ │ │ └── AdminMenuBuilder.php │ │ │ ├── templates │ │ │ │ └── backend │ │ │ │ │ ├── admin_user │ │ │ │ │ ├── _avatar_image.html.twig │ │ │ │ │ └── _form.html.twig │ │ │ │ │ ├── crud │ │ │ │ │ ├── create.html.twig │ │ │ │ │ ├── create │ │ │ │ │ │ ├── _breadcrumb.html.twig │ │ │ │ │ │ ├── _content.html.twig │ │ │ │ │ │ └── _header.html.twig │ │ │ │ │ ├── index.html.twig │ │ │ │ │ ├── index │ │ │ │ │ │ ├── _breadcrumb.html.twig │ │ │ │ │ │ ├── _content.html.twig │ │ │ │ │ │ └── _header.html.twig │ │ │ │ │ ├── update.html.twig │ │ │ │ │ └── update │ │ │ │ │ │ ├── _breadcrumb.html.twig │ │ │ │ │ │ ├── _content.html.twig │ │ │ │ │ │ └── _header.html.twig │ │ │ │ │ ├── customer │ │ │ │ │ ├── _form.html.twig │ │ │ │ │ ├── show.html.twig │ │ │ │ │ └── show │ │ │ │ │ │ ├── _breadcrumb.html.twig │ │ │ │ │ │ ├── _content.html.twig │ │ │ │ │ │ └── _header.html.twig │ │ │ │ │ ├── dashboard │ │ │ │ │ ├── _customers.html.twig │ │ │ │ │ ├── _menu.html.twig │ │ │ │ │ ├── _statistics.html.twig │ │ │ │ │ └── statistics │ │ │ │ │ │ └── _amount_of_customers.html.twig │ │ │ │ │ ├── form │ │ │ │ │ └── theme.html.twig │ │ │ │ │ ├── index.html.twig │ │ │ │ │ ├── layout.html.twig │ │ │ │ │ ├── layout │ │ │ │ │ ├── _front_link.html.twig │ │ │ │ │ ├── _search.html.twig │ │ │ │ │ ├── _security.html.twig │ │ │ │ │ └── _sidebar_toggle.html.twig │ │ │ │ │ └── security │ │ │ │ │ └── login.html.twig │ │ │ └── tests │ │ │ │ └── Behat │ │ │ │ ├── Context │ │ │ │ └── Ui │ │ │ │ │ └── Backend │ │ │ │ │ ├── DashboardContext.php │ │ │ │ │ ├── LoginContext.php │ │ │ │ │ ├── ManagingAdministratorsContext.php │ │ │ │ │ ├── ManagingCustomersContext.php │ │ │ │ │ └── NotificationContext.php │ │ │ │ ├── Element │ │ │ │ └── Backend │ │ │ │ │ └── TopBarElement.php │ │ │ │ └── Page │ │ │ │ └── Backend │ │ │ │ ├── Account │ │ │ │ └── LoginPage.php │ │ │ │ ├── Administrator │ │ │ │ ├── CreatePage.php │ │ │ │ ├── IndexPage.php │ │ │ │ └── UpdatePage.php │ │ │ │ ├── Customer │ │ │ │ ├── IndexPage.php │ │ │ │ ├── ShowPage.php │ │ │ │ └── UpdatePage.php │ │ │ │ └── DashboardPage.php │ │ └── composer.json │ ├── ApiMeta │ │ ├── .recipe │ │ │ ├── config │ │ │ │ ├── api_platform │ │ │ │ │ └── resources │ │ │ │ │ │ └── customer.yaml │ │ │ │ ├── jwt │ │ │ │ │ ├── private-test.pem │ │ │ │ │ └── public-test.pem │ │ │ │ ├── packages │ │ │ │ │ ├── monofony_api.yaml │ │ │ │ │ └── test │ │ │ │ │ │ └── lexik_jwt_authentication.yaml │ │ │ │ ├── routes │ │ │ │ │ └── api.yaml │ │ │ │ └── serialization │ │ │ │ │ ├── customer.yaml │ │ │ │ │ └── user.yaml │ │ │ ├── spec │ │ │ │ └── App │ │ │ │ │ └── Message │ │ │ │ │ ├── RegisterAppUserSpec.php │ │ │ │ │ └── ResetPasswordSpec.php │ │ │ ├── src │ │ │ │ ├── Entity │ │ │ │ │ └── RefreshToken.php │ │ │ │ ├── EventSubscriber │ │ │ │ │ └── AuthenticationSuccessSubscriber.php │ │ │ │ ├── Identifier │ │ │ │ │ └── AppUserIdentifierNormalizer.php │ │ │ │ ├── Message │ │ │ │ │ ├── AppUserIdAwareInterface.php │ │ │ │ │ ├── ChangeAppUserPassword.php │ │ │ │ │ ├── RegisterAppUser.php │ │ │ │ │ ├── ResetPassword.php │ │ │ │ │ └── ResetPasswordRequest.php │ │ │ │ ├── MessageHandler │ │ │ │ │ ├── ChangeAppUserPasswordHandler.php │ │ │ │ │ ├── RegisterAppUserHandler.php │ │ │ │ │ ├── ResetPasswordHandler.php │ │ │ │ │ └── ResetPasswordRequestHandler.php │ │ │ │ ├── OpenApi │ │ │ │ │ └── Factory │ │ │ │ │ │ └── AppAuthenticationTokenOpenOpenApiFactory.php │ │ │ │ ├── Provider │ │ │ │ │ ├── CustomerProvider.php │ │ │ │ │ └── CustomerProviderInterface.php │ │ │ │ └── Story │ │ │ │ │ └── TestAppUsersStory.php │ │ │ └── tests │ │ │ │ ├── Controller │ │ │ │ ├── AuthorizedHeaderTrait.php │ │ │ │ ├── Customer │ │ │ │ │ ├── ChangePasswordApiTest.php │ │ │ │ │ ├── GetUserProfileApiTest.php │ │ │ │ │ ├── LoginApiTest.php │ │ │ │ │ ├── RefreshTokenApiTest.php │ │ │ │ │ ├── RegisterAppUserApiTest.php │ │ │ │ │ ├── ResetPasswordApiTest.php │ │ │ │ │ └── UpdateUserProfileApiTest.php │ │ │ │ ├── JsonApiTestCase.php │ │ │ │ └── PurgeDatabaseTrait.php │ │ │ │ └── Responses │ │ │ │ ├── authentication │ │ │ │ └── new_access_token.json │ │ │ │ ├── customer │ │ │ │ ├── change_password_validation_response.json │ │ │ │ ├── get_user_profile_response.json │ │ │ │ ├── register_validation_response.json │ │ │ │ ├── request_password_validation_response.json │ │ │ │ ├── reset_password_validation_response.json │ │ │ │ ├── token_expired_validation_response.json │ │ │ │ ├── token_not_found_validation_response.json │ │ │ │ ├── too_short_password_validation_response.json │ │ │ │ ├── unique_email_validation_response.json │ │ │ │ ├── update_user_profile_response.json │ │ │ │ └── wrong_current_password_validation_response.json │ │ │ │ └── error │ │ │ │ ├── access_denied_response.json │ │ │ │ └── not_found_response.json │ │ └── composer.json │ ├── CoreMeta │ │ ├── .recipe │ │ │ ├── config-builder.js │ │ │ ├── config │ │ │ │ ├── behat │ │ │ │ │ └── suites │ │ │ │ │ │ └── cli │ │ │ │ │ │ └── installer.yaml │ │ │ │ ├── packages │ │ │ │ │ ├── monofony_core.yaml │ │ │ │ │ └── test │ │ │ │ │ │ └── monofony_core.yaml │ │ │ │ └── sylius │ │ │ │ │ └── resources.yaml │ │ │ ├── features │ │ │ │ └── installer │ │ │ │ │ └── install_command.feature │ │ │ ├── migrations │ │ │ │ ├── Version20190416102143.php │ │ │ │ ├── Version20191231140333.php │ │ │ │ ├── Version20210408131015.php │ │ │ │ ├── Version20220308085320.php │ │ │ │ ├── Version20240925074536.php │ │ │ │ └── Version20240925102441.php │ │ │ ├── spec │ │ │ │ └── App │ │ │ │ │ ├── Context │ │ │ │ │ └── CustomerContextSpec.php │ │ │ │ │ ├── Entity │ │ │ │ │ ├── Customer │ │ │ │ │ │ └── CustomerSpec.php │ │ │ │ │ └── User │ │ │ │ │ │ ├── AdminAvatarSpec.php │ │ │ │ │ │ ├── AdminUserSpec.php │ │ │ │ │ │ └── AppUserSpec.php │ │ │ │ │ ├── EventSubscriber │ │ │ │ │ ├── CanonicalizerListenerSpec.php │ │ │ │ │ ├── DefaultUsernameORMListenerSpec.php │ │ │ │ │ └── UserRegistrationSubscriberSpec.php │ │ │ │ │ ├── Form │ │ │ │ │ ├── EventSubscriber │ │ │ │ │ │ ├── AddUserFormSubscriberSpec.php │ │ │ │ │ │ └── CustomerRegistrationFormSubscriberSpec.php │ │ │ │ │ └── Extension │ │ │ │ │ │ ├── CustomerTypeExtensionSpec.php │ │ │ │ │ │ └── DateTypeExtensionSpec.php │ │ │ │ │ └── Validator │ │ │ │ │ └── Initializer │ │ │ │ │ └── CustomerInitializerSpec.php │ │ │ ├── src │ │ │ │ ├── Command │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── CommandsRunner.php │ │ │ │ │ │ └── ProgressBarCreator.php │ │ │ │ │ └── Installer │ │ │ │ │ │ ├── CommandExecutor.php │ │ │ │ │ │ ├── InstallAssetsCommand.php │ │ │ │ │ │ ├── InstallCommand.php │ │ │ │ │ │ ├── InstallDatabaseCommand.php │ │ │ │ │ │ ├── InstallSampleDataCommand.php │ │ │ │ │ │ └── SetupCommand.php │ │ │ │ ├── Context │ │ │ │ │ └── CustomerContext.php │ │ │ │ ├── Controller │ │ │ │ │ └── .gitignore │ │ │ │ ├── DataFixtures │ │ │ │ │ ├── DefaultFixtures.php │ │ │ │ │ └── FakeFixtures.php │ │ │ │ ├── Entity │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Customer │ │ │ │ │ │ └── Customer.php │ │ │ │ │ ├── IdentifiableTrait.php │ │ │ │ │ ├── Media │ │ │ │ │ │ └── File.php │ │ │ │ │ └── User │ │ │ │ │ │ ├── AdminAvatar.php │ │ │ │ │ │ ├── AdminUser.php │ │ │ │ │ │ └── AppUser.php │ │ │ │ ├── EventSubscriber │ │ │ │ │ ├── CanonicalizerListener.php │ │ │ │ │ ├── DefaultUsernameORMListener.php │ │ │ │ │ └── UserRegistrationSubscriber.php │ │ │ │ ├── Factory │ │ │ │ │ ├── AdminUserFactory.php │ │ │ │ │ └── AppUserFactory.php │ │ │ │ ├── Form │ │ │ │ │ ├── EventSubscriber │ │ │ │ │ │ ├── AddUserFormSubscriber.php │ │ │ │ │ │ └── CustomerRegistrationFormSubscriber.php │ │ │ │ │ ├── Extension │ │ │ │ │ │ ├── CustomerTypeExtension.php │ │ │ │ │ │ └── DateTypeExtension.php │ │ │ │ │ └── Type │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ ├── CustomerRegistrationType.php │ │ │ │ │ │ └── CustomerSimpleRegistrationType.php │ │ │ │ │ │ ├── DatePickerType.php │ │ │ │ │ │ ├── DateTimePickerType.php │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── AdminAvatarType.php │ │ │ │ │ │ ├── AdminUserType.php │ │ │ │ │ │ ├── AppUserRegistrationType.php │ │ │ │ │ │ └── AppUserType.php │ │ │ │ ├── Installer │ │ │ │ │ ├── Checker │ │ │ │ │ │ └── CommandDirectoryChecker.php │ │ │ │ │ └── Provider │ │ │ │ │ │ ├── DatabaseSetupCommandsProvider.php │ │ │ │ │ │ └── DatabaseSetupCommandsProviderInterface.php │ │ │ │ ├── Repository │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CustomerRepository.php │ │ │ │ │ └── UserRepository.php │ │ │ │ ├── Security │ │ │ │ │ └── UserChecker.php │ │ │ │ ├── Story │ │ │ │ │ ├── DefaultAdministratorsStory.php │ │ │ │ │ ├── DefaultAppUsersStory.php │ │ │ │ │ └── RandomAppUsersStory.php │ │ │ │ └── Validator │ │ │ │ │ ├── Constraints │ │ │ │ │ ├── UniqueAppUserEmail.php │ │ │ │ │ └── UniqueAppUserEmailValidator.php │ │ │ │ │ └── Initializer │ │ │ │ │ └── CustomerInitializer.php │ │ │ ├── templates │ │ │ │ ├── bundles │ │ │ │ │ └── SyliusUiBundle │ │ │ │ │ │ ├── Form │ │ │ │ │ │ └── theme.html.twig │ │ │ │ │ │ └── Macro │ │ │ │ │ │ ├── pagination.html.twig │ │ │ │ │ │ └── table.html.twig │ │ │ │ └── emails │ │ │ │ │ ├── contactRequest.html.twig │ │ │ │ │ ├── passwordReset.html.twig │ │ │ │ │ ├── userRegistration.html.twig │ │ │ │ │ └── verification.html.twig │ │ │ ├── tests │ │ │ │ ├── Behat │ │ │ │ │ └── Context │ │ │ │ │ │ ├── Cli │ │ │ │ │ │ ├── CommandContext.php │ │ │ │ │ │ ├── DefaultContext.php │ │ │ │ │ │ └── InstallerContext.php │ │ │ │ │ │ ├── Hook │ │ │ │ │ │ └── DoctrineORMContext.php │ │ │ │ │ │ ├── Setup │ │ │ │ │ │ ├── AdminSecurityContext.php │ │ │ │ │ │ ├── AdminUserContext.php │ │ │ │ │ │ ├── AppSecurityContext.php │ │ │ │ │ │ ├── CustomerContext.php │ │ │ │ │ │ └── UserContext.php │ │ │ │ │ │ ├── Transform │ │ │ │ │ │ ├── AdminUserContext.php │ │ │ │ │ │ ├── CustomerContext.php │ │ │ │ │ │ ├── SharedStorageContext.php │ │ │ │ │ │ └── UserContext.php │ │ │ │ │ │ └── Ui │ │ │ │ │ │ └── EmailContext.php │ │ │ │ └── Resources │ │ │ │ │ └── troll.jpg │ │ │ └── translations │ │ │ │ ├── .gitignore │ │ │ │ ├── flashes.fr.yaml │ │ │ │ ├── messages.en.yaml │ │ │ │ ├── messages.fr.yaml │ │ │ │ ├── validators.en.yaml │ │ │ │ └── validators.fr.yaml │ │ └── composer.json │ └── FrontMeta │ │ ├── .recipe │ │ ├── assets │ │ │ └── frontend │ │ │ │ ├── img │ │ │ │ └── logo.png │ │ │ │ ├── js │ │ │ │ ├── app.js │ │ │ │ ├── shim-lightbox.js │ │ │ │ └── shim-semantic-ui.js │ │ │ │ └── scss │ │ │ │ └── main.scss │ │ ├── config │ │ │ ├── behat │ │ │ │ └── suites │ │ │ │ │ └── ui │ │ │ │ │ └── account │ │ │ │ │ ├── customer.yaml │ │ │ │ │ ├── login.yaml │ │ │ │ │ └── registration.yaml │ │ │ ├── packages │ │ │ │ └── monofony_front.yaml │ │ │ ├── routes │ │ │ │ └── frontend.yaml │ │ │ └── sylius │ │ │ │ └── routes │ │ │ │ └── frontend │ │ │ │ ├── _main.yaml │ │ │ │ ├── account.yaml │ │ │ │ ├── partial.yaml │ │ │ │ └── security.yaml │ │ ├── features │ │ │ └── account │ │ │ │ ├── customer_account │ │ │ │ ├── changing_password.feature │ │ │ │ ├── changing_password_validation.feature │ │ │ │ ├── customer_profile_validation.feature │ │ │ │ └── editing_customer_profile.feature │ │ │ │ ├── registering.feature │ │ │ │ ├── registering_validation.feature │ │ │ │ ├── resetting_password.feature │ │ │ │ ├── resetting_password_validation.feature │ │ │ │ ├── signing_in.feature │ │ │ │ └── signing_in_validation.feature │ │ ├── src │ │ │ └── Menu │ │ │ │ └── AccountMenuBuilder.php │ │ ├── templates │ │ │ └── frontend │ │ │ │ ├── _flashes.html.twig │ │ │ │ ├── _footer.html.twig │ │ │ │ ├── _header.html.twig │ │ │ │ ├── _menu.html.twig │ │ │ │ ├── account │ │ │ │ ├── changePassword.html.twig │ │ │ │ ├── dashboard.html.twig │ │ │ │ ├── layout.html.twig │ │ │ │ ├── requestPasswordReset.html.twig │ │ │ │ ├── resetPassword.html.twig │ │ │ │ └── updateProfile.html.twig │ │ │ │ ├── form │ │ │ │ └── theme.html.twig │ │ │ │ ├── homepage │ │ │ │ └── index.html.twig │ │ │ │ ├── layout.html.twig │ │ │ │ ├── login │ │ │ │ ├── _form.html.twig │ │ │ │ ├── _header.html.twig │ │ │ │ └── _register.html.twig │ │ │ │ ├── macro │ │ │ │ ├── buttons.html.twig │ │ │ │ └── pagination.html.twig │ │ │ │ ├── menu │ │ │ │ └── simple.html.twig │ │ │ │ ├── register │ │ │ │ ├── _form.html.twig │ │ │ │ └── _header.html.twig │ │ │ │ └── security │ │ │ │ ├── login.html.twig │ │ │ │ └── register.html.twig │ │ └── tests │ │ │ └── Behat │ │ │ ├── Context │ │ │ └── Ui │ │ │ │ └── Frontend │ │ │ │ ├── AccountContext.php │ │ │ │ ├── HomepageContext.php │ │ │ │ ├── LoginContext.php │ │ │ │ └── RegistrationContext.php │ │ │ └── Page │ │ │ └── Frontend │ │ │ ├── Account │ │ │ ├── ChangePasswordPage.php │ │ │ ├── DashboardPage.php │ │ │ ├── LoginPage.php │ │ │ ├── ProfileUpdatePage.php │ │ │ ├── RegisterPage.php │ │ │ ├── RequestPasswordResetPage.php │ │ │ ├── ResetPasswordPage.php │ │ │ └── VerificationPage.php │ │ │ └── HomePage.php │ │ └── composer.json │ └── Pack │ ├── AdminPack │ ├── .gitignore │ ├── LICENSE │ ├── composer.json │ └── phpstan.neon │ ├── ApiPack │ ├── .gitignore │ ├── LICENSE │ ├── composer.json │ └── phpstan.neon │ ├── CorePack │ ├── .gitignore │ ├── LICENSE │ ├── composer.json │ └── phpstan.neon │ ├── FrontPack │ ├── .gitignore │ ├── LICENSE │ ├── composer.json │ └── phpstan.neon │ └── TestPack │ ├── .gitignore │ ├── LICENSE │ └── composer.json ├── symfony.lock ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.babelrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.env -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.env.test -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report---.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.github/ISSUE_TEMPLATE/bug-report---.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-issue---.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.github/ISSUE_TEMPLATE/documentation-issue---.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request--.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.github/ISSUE_TEMPLATE/feature-request--.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.github/workflows/application.yml -------------------------------------------------------------------------------- /.github/workflows/packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.github/workflows/packages.yml -------------------------------------------------------------------------------- /.github/workflows/split_monorepo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.github/workflows/split_monorepo.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /CHANGELOG-0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/CHANGELOG-0.1.md -------------------------------------------------------------------------------- /CHANGELOG-0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/CHANGELOG-0.2.md -------------------------------------------------------------------------------- /CHANGELOG-0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/CHANGELOG-0.3.md -------------------------------------------------------------------------------- /CHANGELOG-0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/CHANGELOG-0.4.md -------------------------------------------------------------------------------- /CHANGELOG-0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/CHANGELOG-0.5.md -------------------------------------------------------------------------------- /CHANGELOG-0.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/CHANGELOG-0.6.md -------------------------------------------------------------------------------- /CHANGELOG-0.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/CHANGELOG-0.7.md -------------------------------------------------------------------------------- /CHANGELOG-0.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/CHANGELOG-0.8.md -------------------------------------------------------------------------------- /CHANGELOG-0.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/CHANGELOG-0.9.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/README.md -------------------------------------------------------------------------------- /REMOVE_MONOFONY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/REMOVE_MONOFONY.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /assets/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/assets/bootstrap.js -------------------------------------------------------------------------------- /assets/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/assets/controllers.json -------------------------------------------------------------------------------- /assets/controllers/hello_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/assets/controllers/hello_controller.js -------------------------------------------------------------------------------- /behat.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/behat.yml.dist -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/bin/console -------------------------------------------------------------------------------- /bin/upgrade-to-0.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/bin/upgrade-to-0.4 -------------------------------------------------------------------------------- /compose.override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/compose.override.yaml -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/compose.yaml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/composer.json -------------------------------------------------------------------------------- /config/behat/suites.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/behat/suites.yaml -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/api_platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/api_platform.yaml -------------------------------------------------------------------------------- /config/packages/assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/assets.yaml -------------------------------------------------------------------------------- /config/packages/dev/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/dev/debug.yaml -------------------------------------------------------------------------------- /config/packages/dev/jms_serializer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/dev/jms_serializer.yaml -------------------------------------------------------------------------------- /config/packages/dev/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/dev/monolog.yaml -------------------------------------------------------------------------------- /config/packages/dev/nelmio_alice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/dev/nelmio_alice.yaml -------------------------------------------------------------------------------- /config/packages/dev/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/dev/routing.yaml -------------------------------------------------------------------------------- /config/packages/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/dev/zenstruck_foundry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/dev/zenstruck_foundry.yaml -------------------------------------------------------------------------------- /config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /config/packages/fos_rest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/fos_rest.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/gesdinet_jwt_refresh_token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/gesdinet_jwt_refresh_token.yaml -------------------------------------------------------------------------------- /config/packages/jms_serializer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/jms_serializer.yaml -------------------------------------------------------------------------------- /config/packages/lexik_jwt_authentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/lexik_jwt_authentication.yaml -------------------------------------------------------------------------------- /config/packages/liip_imagine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/liip_imagine.yaml -------------------------------------------------------------------------------- /config/packages/mailer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/mailer.yaml -------------------------------------------------------------------------------- /config/packages/messenger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/messenger.yaml -------------------------------------------------------------------------------- /config/packages/monofony_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/monofony_admin.yaml -------------------------------------------------------------------------------- /config/packages/monofony_core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/monofony_core.yaml -------------------------------------------------------------------------------- /config/packages/monofony_front.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/monofony_front.yaml -------------------------------------------------------------------------------- /config/packages/nelmio_cors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/nelmio_cors.yaml -------------------------------------------------------------------------------- /config/packages/prod/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/prod/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/prod/jms_serializer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/prod/jms_serializer.yaml -------------------------------------------------------------------------------- /config/packages/prod/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/prod/monolog.yaml -------------------------------------------------------------------------------- /config/packages/prod/webpack_encore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/prod/webpack_encore.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/security.yaml -------------------------------------------------------------------------------- /config/packages/sonata_block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/sonata_block.yaml -------------------------------------------------------------------------------- /config/packages/test/fidry_alice_data_fixtures.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/test/fidry_alice_data_fixtures.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/test/lexik_jwt_authentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/test/lexik_jwt_authentication.yaml -------------------------------------------------------------------------------- /config/packages/test/monofony_core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/test/monofony_core.yaml -------------------------------------------------------------------------------- /config/packages/test/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/test/monolog.yaml -------------------------------------------------------------------------------- /config/packages/test/nelmio_alice.yaml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: ../dev/nelmio_alice.yaml } 3 | -------------------------------------------------------------------------------- /config/packages/test/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/test/routing.yaml -------------------------------------------------------------------------------- /config/packages/test/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/test/security.yaml -------------------------------------------------------------------------------- /config/packages/test/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/test/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/test/zenstruck_foundry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/test/zenstruck_foundry.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/packages/twig_component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/twig_component.yaml -------------------------------------------------------------------------------- /config/packages/twig_extensions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/twig_extensions.yaml -------------------------------------------------------------------------------- /config/packages/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/validator.yaml -------------------------------------------------------------------------------- /config/packages/vich_uploader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/vich_uploader.yaml -------------------------------------------------------------------------------- /config/packages/webpack_encore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/packages/webpack_encore.yaml -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/api_platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/routes/api_platform.yaml -------------------------------------------------------------------------------- /config/routes/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/routes/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/routes/liip_imagine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/routes/liip_imagine.yaml -------------------------------------------------------------------------------- /config/routes/ux_live_component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/routes/ux_live_component.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/services.yaml -------------------------------------------------------------------------------- /config/services/monofony_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/services/monofony_api.yaml -------------------------------------------------------------------------------- /config/services/monofony_backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/services/monofony_backend.yaml -------------------------------------------------------------------------------- /config/services/monofony_core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/services/monofony_core.yaml -------------------------------------------------------------------------------- /config/services/monofony_frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/services/monofony_frontend.yaml -------------------------------------------------------------------------------- /config/services_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/config/services_test.yaml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_exts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_exts/LICENSE -------------------------------------------------------------------------------- /docs/_exts/sensio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_exts/sensio/sphinx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_exts/sensio/sphinx/configurationblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_exts/sensio/sphinx/configurationblock.py -------------------------------------------------------------------------------- /docs/_exts/sensio/sphinx/php.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_exts/sensio/sphinx/php.py -------------------------------------------------------------------------------- /docs/_exts/sensio/sphinx/phpcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_exts/sensio/sphinx/phpcode.py -------------------------------------------------------------------------------- /docs/_exts/sensio/sphinx/refinclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_exts/sensio/sphinx/refinclude.py -------------------------------------------------------------------------------- /docs/_exts/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_exts/setup.py -------------------------------------------------------------------------------- /docs/_images/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_images/api.png -------------------------------------------------------------------------------- /docs/_images/doc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_images/doc_logo.png -------------------------------------------------------------------------------- /docs/_images/doctrine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_images/doctrine.png -------------------------------------------------------------------------------- /docs/_images/github_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_images/github_banner.png -------------------------------------------------------------------------------- /docs/_images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_images/logo.png -------------------------------------------------------------------------------- /docs/_images/symfonyfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_images/symfonyfs.png -------------------------------------------------------------------------------- /docs/_images/twig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_images/twig.png -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/__init__.py -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/breadcrumbs.html -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/footer.html -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/layout.html -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/layout_old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/layout_old.html -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/search.html -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/searchbox.html -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/static/css/sylius-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/static/css/sylius-custom.css -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/static/css/sylius.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/static/css/sylius.css -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/static/css/theme.css -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/static/img/swan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/static/img/swan.png -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/static/js/theme.js -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/theme.conf -------------------------------------------------------------------------------- /docs/_themes/sylius_rtd_theme/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/_themes/sylius_rtd_theme/versions.html -------------------------------------------------------------------------------- /docs/book/architecture/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/book/architecture/architecture.rst -------------------------------------------------------------------------------- /docs/book/architecture/fixtures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/book/architecture/fixtures.rst -------------------------------------------------------------------------------- /docs/book/architecture/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/book/architecture/index.rst -------------------------------------------------------------------------------- /docs/book/architecture/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/book/architecture/map.rst.inc -------------------------------------------------------------------------------- /docs/book/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/book/index.rst -------------------------------------------------------------------------------- /docs/book/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/book/map.rst.inc -------------------------------------------------------------------------------- /docs/book/user/admins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/book/user/admins.rst -------------------------------------------------------------------------------- /docs/book/user/customers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/book/user/customers.rst -------------------------------------------------------------------------------- /docs/book/user/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/book/user/index.rst -------------------------------------------------------------------------------- /docs/book/user/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/book/user/map.rst.inc -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/cookbook/bdd/behat/basic-usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/behat/basic-usage.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/behat/how-to-add-new-context.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/behat/how-to-add-new-context.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/behat/how-to-add-new-page.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/behat/how-to-add-new-page.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/behat/how-to-change-behat-application-base-url.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/behat/how-to-change-behat-application-base-url.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/behat/how-to-define-new-suite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/behat/how-to-define-new-suite.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/behat/how-to-use-transformers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/behat/how-to-use-transformers.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/behat/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/behat/index.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/behat/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/behat/map.rst.inc -------------------------------------------------------------------------------- /docs/cookbook/bdd/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/map.rst.inc -------------------------------------------------------------------------------- /docs/cookbook/bdd/phpspec/how-to-configure-phpspec-with-code-coverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/phpspec/how-to-configure-phpspec-with-code-coverage.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/phpspec/how-to-design-entities-with-phpspec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/phpspec/how-to-design-entities-with-phpspec.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/phpspec/how-to-design-services-with-phpspec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/phpspec/how-to-design-services-with-phpspec.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/phpspec/how-to-disable-phpspec-code-coverage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/phpspec/how-to-disable-phpspec-code-coverage.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/phpspec/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/phpspec/index.rst -------------------------------------------------------------------------------- /docs/cookbook/bdd/phpspec/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/bdd/phpspec/map.rst.inc -------------------------------------------------------------------------------- /docs/cookbook/dashboard/basic-example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/dashboard/basic-example.rst -------------------------------------------------------------------------------- /docs/cookbook/dashboard/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/dashboard/index.rst -------------------------------------------------------------------------------- /docs/cookbook/dashboard/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/dashboard/map.rst.inc -------------------------------------------------------------------------------- /docs/cookbook/entities/configure-backend-menu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/entities/configure-backend-menu.rst -------------------------------------------------------------------------------- /docs/cookbook/entities/configure-your-routes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/entities/configure-your-routes.rst -------------------------------------------------------------------------------- /docs/cookbook/entities/first-resource.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/entities/first-resource.rst -------------------------------------------------------------------------------- /docs/cookbook/entities/manage-your-entity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/entities/manage-your-entity.rst -------------------------------------------------------------------------------- /docs/cookbook/entities/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/entities/map.rst.inc -------------------------------------------------------------------------------- /docs/cookbook/fixtures/factory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/fixtures/factory.rst -------------------------------------------------------------------------------- /docs/cookbook/fixtures/fixture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/fixtures/fixture.rst -------------------------------------------------------------------------------- /docs/cookbook/fixtures/load.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/fixtures/load.rst -------------------------------------------------------------------------------- /docs/cookbook/fixtures/map.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/fixtures/map.rst.inc -------------------------------------------------------------------------------- /docs/cookbook/fixtures/suite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/fixtures/suite.rst -------------------------------------------------------------------------------- /docs/cookbook/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/cookbook/index.rst -------------------------------------------------------------------------------- /docs/cookbook/map.rst.inc: -------------------------------------------------------------------------------- 1 | * :doc:`/cookbook/index` 2 | -------------------------------------------------------------------------------- /docs/deployment/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/deployment/index.rst -------------------------------------------------------------------------------- /docs/deployment/map.rst.inc: -------------------------------------------------------------------------------- 1 | * :doc:`/deployment/index` 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=1.4,<2.0 2 | requests[security] 3 | -------------------------------------------------------------------------------- /ecs-recipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/ecs-recipe.php -------------------------------------------------------------------------------- /ecs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/ecs.php -------------------------------------------------------------------------------- /etc/bash/application.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/etc/bash/application.sh -------------------------------------------------------------------------------- /etc/bash/common.lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/etc/bash/common.lib.sh -------------------------------------------------------------------------------- /etc/build/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/infection.json.dist -------------------------------------------------------------------------------- /monorepo-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/monorepo-builder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/package.json -------------------------------------------------------------------------------- /phpspec.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/phpspec.yml.dist -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/psalm.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/public/config.php -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/public/robots.txt -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/rector.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Behaviour/DescribesIt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Behaviour/DescribesIt.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Behaviour/DocumentAccessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Behaviour/DocumentAccessor.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Behaviour/NamesIt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Behaviour/NamesIt.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Behaviour/SpecifiesItsCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Behaviour/SpecifiesItsCode.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Behaviour/Toggles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Behaviour/Toggles.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/ApiClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/ApiClientInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/ApiPlatformClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/ApiPlatformClient.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/ApiPlatformSecurityClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/ApiPlatformSecurityClient.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/ApiSecurityClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/ApiSecurityClientInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/ContentTypeGuide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/ContentTypeGuide.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/ContentTypeGuideInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/ContentTypeGuideInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/Request.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/RequestBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/RequestBuilder.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/RequestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/RequestFactory.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/RequestFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/RequestFactoryInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/RequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/RequestInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/ResponseChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/ResponseChecker.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Client/ResponseCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Client/ResponseCheckerInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Crud/AbstractCreatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Crud/AbstractCreatePage.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Crud/AbstractIndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Crud/AbstractIndexPage.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Crud/AbstractUpdatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Crud/AbstractUpdatePage.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Crud/CreatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Crud/CreatePageInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Crud/IndexPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Crud/IndexPageInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Crud/UpdatePageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Crud/UpdatePageInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Exception/NotificationExpectationMismatchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Exception/NotificationExpectationMismatchException.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/NotificationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/NotificationType.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/README.md -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/AbstractSecurityService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/AbstractSecurityService.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/Accessor/NotificationAccessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/Accessor/NotificationAccessor.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/Accessor/NotificationAccessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/Accessor/NotificationAccessorInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/Accessor/TableAccessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/Accessor/TableAccessor.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/Accessor/TableAccessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/Accessor/TableAccessorInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/AdminSecurityService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/AdminSecurityService.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/AdminSecurityServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/AdminSecurityServiceInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/ApiSecurityService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/ApiSecurityService.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/AppSecurityService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/AppSecurityService.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/AppSecurityServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/AppSecurityServiceInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/DriverHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/DriverHelper.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/EmailChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/EmailChecker.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/EmailCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/EmailCheckerInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/JQueryHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/JQueryHelper.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/MessageSendCacher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/MessageSendCacher.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/NotificationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/NotificationChecker.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/NotificationCheckerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/NotificationCheckerInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/Resolver/CurrentPageResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/Resolver/CurrentPageResolver.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/Resolver/CurrentPageResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/Resolver/CurrentPageResolverInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/SecurityServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/SecurityServiceInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/Setter/CookieSetter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/Setter/CookieSetter.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/Setter/CookieSetterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/Setter/CookieSetterInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/SharedSecurityService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/SharedSecurityService.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/SharedSecurityServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/SharedSecurityServiceInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/SharedStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/SharedStorage.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/SharedStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/SharedStorageInterface.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/Service/SprintfResponseEscaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/Service/SprintfResponseEscaper.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/composer.json -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Bridge/Behat/services_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/Behat/services_test.yaml -------------------------------------------------------------------------------- /src/Monofony/Bridge/SyliusUser/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Bridge/SyliusUser/EventListener/PasswordUpdaterListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/SyliusUser/EventListener/PasswordUpdaterListener.php -------------------------------------------------------------------------------- /src/Monofony/Bridge/SyliusUser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/SyliusUser/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Bridge/SyliusUser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/SyliusUser/README.md -------------------------------------------------------------------------------- /src/Monofony/Bridge/SyliusUser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/SyliusUser/composer.json -------------------------------------------------------------------------------- /src/Monofony/Bridge/SyliusUser/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/SyliusUser/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Bridge/SyliusUser/spec/EventListener/PasswordUpdaterListenerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bridge/SyliusUser/spec/EventListener/PasswordUpdaterListenerSpec.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/DataCollector/MonofonyDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/DataCollector/MonofonyDataCollector.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/BackwardsCompatibility/Symfony6PrivateServicesPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/BackwardsCompatibility/Symfony6PrivateServicesPass.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/ChangeCustomerContextVisibilityPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/ChangeCustomerContextVisibilityPass.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/RegisterDashboardStatisticsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/RegisterDashboardStatisticsPass.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/RegisterObjectManagerAliasPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/RegisterObjectManagerAliasPass.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/RegisterOpenApiFactoriesPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/RegisterOpenApiFactoriesPass.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/RegisterPasswordListenerForResourcesPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/DependencyInjection/Compiler/RegisterPasswordListenerForResourcesPass.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/DependencyInjection/MonofonyCoreExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/DependencyInjection/MonofonyCoreExtension.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/MonofonyCoreBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/MonofonyCoreBundle.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/Resources/config/services.yaml -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/Resources/views/DataCollector/monofony.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/Resources/views/DataCollector/monofony.html.twig -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/Tests/DependencyInjection/Compiler/RegisterOpenApiFactoriesPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/Tests/DependencyInjection/Compiler/RegisterOpenApiFactoriesPassTest.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/Tests/DependencyInjection/Compiler/RegisterPasswordListenerForResourcesPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/Tests/DependencyInjection/Compiler/RegisterPasswordListenerForResourcesPassTest.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/composer.json -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/spec/DataCollector/MonofonyDataCollectorSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/spec/DataCollector/MonofonyDataCollectorSpec.php -------------------------------------------------------------------------------- /src/Monofony/Bundle/CoreBundle/symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Bundle/CoreBundle/symfony.lock -------------------------------------------------------------------------------- /src/Monofony/Component/Admin/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Component/Admin/Dashboard/DashboardStatisticsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Component/Admin/Dashboard/DashboardStatisticsProvider.php -------------------------------------------------------------------------------- /src/Monofony/Component/Admin/Dashboard/Statistics/StatisticInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Component/Admin/Dashboard/Statistics/StatisticInterface.php -------------------------------------------------------------------------------- /src/Monofony/Component/Admin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Component/Admin/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Component/Admin/Menu/AdminMenuBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Component/Admin/Menu/AdminMenuBuilderInterface.php -------------------------------------------------------------------------------- /src/Monofony/Component/Admin/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Component/Admin/composer.json -------------------------------------------------------------------------------- /src/Monofony/Component/Admin/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Component/Admin/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Component/Admin/spec/Dashboard/DashboardStatisticsProviderSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Component/Admin/spec/Dashboard/DashboardStatisticsProviderSpec.php -------------------------------------------------------------------------------- /src/Monofony/Component/Core/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Component/Core/Formatter/StringInflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Component/Core/Formatter/StringInflector.php -------------------------------------------------------------------------------- /src/Monofony/Component/Core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Component/Core/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Component/Core/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Component/Core/composer.json -------------------------------------------------------------------------------- /src/Monofony/Component/Core/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Component/Core/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Contracts/Admin/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Contracts/Admin/Dashboard/DashboardStatisticsProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Admin/Dashboard/DashboardStatisticsProviderInterface.php -------------------------------------------------------------------------------- /src/Monofony/Contracts/Admin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Admin/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Contracts/Admin/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Admin/composer.json -------------------------------------------------------------------------------- /src/Monofony/Contracts/Admin/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Admin/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Contracts/Api/Identifier/AppUserIdentifierNormalizerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Api/Identifier/AppUserIdentifierNormalizerInterface.php -------------------------------------------------------------------------------- /src/Monofony/Contracts/Api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Api/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Contracts/Api/OpenApi/Factory/AppAuthenticationTokenOpenApiFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Api/OpenApi/Factory/AppAuthenticationTokenOpenApiFactoryInterface.php -------------------------------------------------------------------------------- /src/Monofony/Contracts/Api/Swagger/AppAuthenticationTokenDocumentationNormalizerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Api/Swagger/AppAuthenticationTokenDocumentationNormalizerInterface.php -------------------------------------------------------------------------------- /src/Monofony/Contracts/Api/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Api/composer.json -------------------------------------------------------------------------------- /src/Monofony/Contracts/Api/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Api/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Contracts/Core/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Contracts/Core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Core/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Contracts/Core/Model/Customer/CustomerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Core/Model/Customer/CustomerInterface.php -------------------------------------------------------------------------------- /src/Monofony/Contracts/Core/Model/Media/FileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Core/Model/Media/FileInterface.php -------------------------------------------------------------------------------- /src/Monofony/Contracts/Core/Model/User/AdminAvatarInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Core/Model/User/AdminAvatarInterface.php -------------------------------------------------------------------------------- /src/Monofony/Contracts/Core/Model/User/AdminUserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Core/Model/User/AdminUserInterface.php -------------------------------------------------------------------------------- /src/Monofony/Contracts/Core/Model/User/AppUserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Core/Model/User/AppUserInterface.php -------------------------------------------------------------------------------- /src/Monofony/Contracts/Core/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Core/composer.json -------------------------------------------------------------------------------- /src/Monofony/Contracts/Core/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Core/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Contracts/Front/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Contracts/Front/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Front/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Contracts/Front/Menu/AccountMenuBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Front/Menu/AccountMenuBuilderInterface.php -------------------------------------------------------------------------------- /src/Monofony/Contracts/Front/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Front/composer.json -------------------------------------------------------------------------------- /src/Monofony/Contracts/Front/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Contracts/Front/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/img/admin-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/img/admin-logo.svg -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/img/avatar.png -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/img/logo.png -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/app-date-time-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/app-date-time-picker.js -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/app-files-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/app-files-preview.js -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/app-images-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/app-images-preview.js -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/app.js -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/shim-semantic-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/shim-semantic-ui.js -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/sylius-compound-form-errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/js/sylius-compound-form-errors.js -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/scss/_ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/scss/_ui.scss -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/scss/main.scss -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/assets/backend/webpack.config.js -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/config/behat/suites/ui/admin/dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/config/behat/suites/ui/admin/dashboard.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/config/behat/suites/ui/customer/managing_customers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/config/behat/suites/ui/customer/managing_customers.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/config/behat/suites/ui/user/managing_administrators.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/config/behat/suites/ui/user/managing_administrators.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/config/packages/monofony_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/config/packages/monofony_admin.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/config/routes/backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/config/routes/backend.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/_main.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/admin_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/admin_user.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/customer.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/partial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/partial.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/partial/customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/partial/customer.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/config/sylius/routes/backend/security.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/features/admin/dashboard.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/features/admin/dashboard.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/adding_administrator.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/adding_administrator.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/adding_avatar_to_administrator.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/adding_avatar_to_administrator.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/browsing_administrator.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/browsing_administrator.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/deleting_administrators.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/deleting_administrators.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/deleting_multiple_administrators.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/deleting_multiple_administrators.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/editing_administrator.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_administrators/editing_administrator.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_customers/browsing_customers/browsing_customers.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_customers/browsing_customers/browsing_customers.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_customers/browsing_customers/sorting_customers_by_email.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_customers/browsing_customers/sorting_customers_by_email.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_customers/editing_customer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_customers/editing_customer.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_customers/seeing_customer_details.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/features/user/managing_customers/seeing_customer_details.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/spec/App/Dashboard/Statistics/CustomerStatisticSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/spec/App/Dashboard/Statistics/CustomerStatisticSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/src/Controller/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/src/Controller/DashboardController.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/src/Dashboard/Statistics/CustomerStatistic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/src/Dashboard/Statistics/CustomerStatistic.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/src/Grid/AdminUserGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/src/Grid/AdminUserGrid.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/src/Grid/CustomerGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/src/Grid/CustomerGrid.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/src/Menu/AdminMenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/src/Menu/AdminMenuBuilder.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/admin_user/_avatar_image.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/admin_user/_avatar_image.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/admin_user/_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/admin_user/_form.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/create.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/create.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/create/_breadcrumb.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/create/_breadcrumb.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/create/_content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/create/_content.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/create/_header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/create/_header.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/index.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/index/_breadcrumb.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/index/_breadcrumb.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/index/_content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/index/_content.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/index/_header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/index/_header.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/update.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/update.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/update/_breadcrumb.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/update/_breadcrumb.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/update/_content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/update/_content.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/update/_header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/crud/update/_header.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/customer/_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/customer/_form.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/customer/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/customer/show.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/customer/show/_breadcrumb.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/customer/show/_breadcrumb.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/customer/show/_content.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/customer/show/_content.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/customer/show/_header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/customer/show/_header.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/dashboard/_customers.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/dashboard/_customers.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/dashboard/_menu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/dashboard/_menu.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/dashboard/_statistics.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/dashboard/_statistics.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/dashboard/statistics/_amount_of_customers.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/dashboard/statistics/_amount_of_customers.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/form/theme.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/form/theme.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/index.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/layout.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/layout/_front_link.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/layout/_front_link.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/layout/_search.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/layout/_search.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/layout/_security.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/layout/_security.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/layout/_sidebar_toggle.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/layout/_sidebar_toggle.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/security/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/templates/backend/security/login.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Context/Ui/Backend/DashboardContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Context/Ui/Backend/DashboardContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Context/Ui/Backend/LoginContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Context/Ui/Backend/LoginContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Context/Ui/Backend/ManagingAdministratorsContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Context/Ui/Backend/ManagingAdministratorsContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Context/Ui/Backend/ManagingCustomersContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Context/Ui/Backend/ManagingCustomersContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Context/Ui/Backend/NotificationContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Context/Ui/Backend/NotificationContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Element/Backend/TopBarElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Element/Backend/TopBarElement.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Account/LoginPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Account/LoginPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Administrator/CreatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Administrator/CreatePage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Administrator/IndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Administrator/IndexPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Administrator/UpdatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Administrator/UpdatePage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Customer/IndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Customer/IndexPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Customer/ShowPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Customer/ShowPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Customer/UpdatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/Customer/UpdatePage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/DashboardPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/.recipe/tests/Behat/Page/Backend/DashboardPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/AdminMeta/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/AdminMeta/composer.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/config/api_platform/resources/customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/config/api_platform/resources/customer.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/config/jwt/private-test.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/config/jwt/private-test.pem -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/config/jwt/public-test.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/config/jwt/public-test.pem -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/config/packages/monofony_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/config/packages/monofony_api.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/config/packages/test/lexik_jwt_authentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/config/packages/test/lexik_jwt_authentication.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/config/routes/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/config/routes/api.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/config/serialization/customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/config/serialization/customer.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/config/serialization/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/config/serialization/user.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/spec/App/Message/RegisterAppUserSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/spec/App/Message/RegisterAppUserSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/spec/App/Message/ResetPasswordSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/spec/App/Message/ResetPasswordSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/Entity/RefreshToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/Entity/RefreshToken.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/EventSubscriber/AuthenticationSuccessSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/EventSubscriber/AuthenticationSuccessSubscriber.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/Identifier/AppUserIdentifierNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/Identifier/AppUserIdentifierNormalizer.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/Message/AppUserIdAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/Message/AppUserIdAwareInterface.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/Message/ChangeAppUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/Message/ChangeAppUserPassword.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/Message/RegisterAppUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/Message/RegisterAppUser.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/Message/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/Message/ResetPassword.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/Message/ResetPasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/Message/ResetPasswordRequest.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/MessageHandler/ChangeAppUserPasswordHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/MessageHandler/ChangeAppUserPasswordHandler.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/MessageHandler/RegisterAppUserHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/MessageHandler/RegisterAppUserHandler.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/MessageHandler/ResetPasswordHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/MessageHandler/ResetPasswordHandler.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/MessageHandler/ResetPasswordRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/MessageHandler/ResetPasswordRequestHandler.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/OpenApi/Factory/AppAuthenticationTokenOpenOpenApiFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/OpenApi/Factory/AppAuthenticationTokenOpenOpenApiFactory.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/Provider/CustomerProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/Provider/CustomerProvider.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/Provider/CustomerProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/Provider/CustomerProviderInterface.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/src/Story/TestAppUsersStory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/src/Story/TestAppUsersStory.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/AuthorizedHeaderTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/AuthorizedHeaderTrait.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/ChangePasswordApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/ChangePasswordApiTest.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/GetUserProfileApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/GetUserProfileApiTest.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/LoginApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/LoginApiTest.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/RefreshTokenApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/RefreshTokenApiTest.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/RegisterAppUserApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/RegisterAppUserApiTest.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/ResetPasswordApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/ResetPasswordApiTest.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/UpdateUserProfileApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/Customer/UpdateUserProfileApiTest.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/JsonApiTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/JsonApiTestCase.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/PurgeDatabaseTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Controller/PurgeDatabaseTrait.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/authentication/new_access_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/authentication/new_access_token.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/change_password_validation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/change_password_validation_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/get_user_profile_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/get_user_profile_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/register_validation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/register_validation_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/request_password_validation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/request_password_validation_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/reset_password_validation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/reset_password_validation_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/token_expired_validation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/token_expired_validation_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/token_not_found_validation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/token_not_found_validation_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/too_short_password_validation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/too_short_password_validation_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/unique_email_validation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/unique_email_validation_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/update_user_profile_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/update_user_profile_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/wrong_current_password_validation_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/customer/wrong_current_password_validation_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/error/access_denied_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/error/access_denied_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/error/not_found_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/.recipe/tests/Responses/error/not_found_response.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/ApiMeta/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/ApiMeta/composer.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/config-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/config-builder.js -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/config/behat/suites/cli/installer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/config/behat/suites/cli/installer.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/config/packages/monofony_core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/config/packages/monofony_core.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/config/packages/test/monofony_core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/config/packages/test/monofony_core.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/config/sylius/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/config/sylius/resources.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/features/installer/install_command.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/features/installer/install_command.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20190416102143.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20190416102143.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20191231140333.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20191231140333.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20210408131015.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20210408131015.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20220308085320.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20220308085320.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20240925074536.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20240925074536.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20240925102441.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/migrations/Version20240925102441.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Context/CustomerContextSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Context/CustomerContextSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Entity/Customer/CustomerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Entity/Customer/CustomerSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Entity/User/AdminAvatarSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Entity/User/AdminAvatarSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Entity/User/AdminUserSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Entity/User/AdminUserSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Entity/User/AppUserSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Entity/User/AppUserSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/EventSubscriber/CanonicalizerListenerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/EventSubscriber/CanonicalizerListenerSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/EventSubscriber/DefaultUsernameORMListenerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/EventSubscriber/DefaultUsernameORMListenerSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/EventSubscriber/UserRegistrationSubscriberSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/EventSubscriber/UserRegistrationSubscriberSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Form/EventSubscriber/AddUserFormSubscriberSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Form/EventSubscriber/AddUserFormSubscriberSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Form/EventSubscriber/CustomerRegistrationFormSubscriberSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Form/EventSubscriber/CustomerRegistrationFormSubscriberSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Form/Extension/CustomerTypeExtensionSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Form/Extension/CustomerTypeExtensionSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Form/Extension/DateTypeExtensionSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Form/Extension/DateTypeExtensionSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Validator/Initializer/CustomerInitializerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/spec/App/Validator/Initializer/CustomerInitializerSpec.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Helper/CommandsRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Helper/CommandsRunner.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Helper/ProgressBarCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Helper/ProgressBarCreator.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/CommandExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/CommandExecutor.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/InstallAssetsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/InstallAssetsCommand.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/InstallCommand.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/InstallDatabaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/InstallDatabaseCommand.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/InstallSampleDataCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/InstallSampleDataCommand.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/SetupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Command/Installer/SetupCommand.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Context/CustomerContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Context/CustomerContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/DataFixtures/DefaultFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/DataFixtures/DefaultFixtures.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/DataFixtures/FakeFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/DataFixtures/FakeFixtures.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/Customer/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/Customer/Customer.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/IdentifiableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/IdentifiableTrait.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/Media/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/Media/File.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/User/AdminAvatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/User/AdminAvatar.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/User/AdminUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/User/AdminUser.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/User/AppUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Entity/User/AppUser.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/EventSubscriber/CanonicalizerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/EventSubscriber/CanonicalizerListener.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/EventSubscriber/DefaultUsernameORMListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/EventSubscriber/DefaultUsernameORMListener.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/EventSubscriber/UserRegistrationSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/EventSubscriber/UserRegistrationSubscriber.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Factory/AdminUserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Factory/AdminUserFactory.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Factory/AppUserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Factory/AppUserFactory.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/EventSubscriber/AddUserFormSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/EventSubscriber/AddUserFormSubscriber.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/EventSubscriber/CustomerRegistrationFormSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/EventSubscriber/CustomerRegistrationFormSubscriber.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Extension/CustomerTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Extension/CustomerTypeExtension.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Extension/DateTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Extension/DateTypeExtension.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/Customer/CustomerRegistrationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/Customer/CustomerRegistrationType.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/Customer/CustomerSimpleRegistrationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/Customer/CustomerSimpleRegistrationType.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/DatePickerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/DatePickerType.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/DateTimePickerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/DateTimePickerType.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/User/AdminAvatarType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/User/AdminAvatarType.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/User/AdminUserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/User/AdminUserType.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/User/AppUserRegistrationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/User/AppUserRegistrationType.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/User/AppUserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Form/Type/User/AppUserType.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Installer/Checker/CommandDirectoryChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Installer/Checker/CommandDirectoryChecker.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Installer/Provider/DatabaseSetupCommandsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Installer/Provider/DatabaseSetupCommandsProvider.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Installer/Provider/DatabaseSetupCommandsProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Installer/Provider/DatabaseSetupCommandsProviderInterface.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Repository/CustomerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Repository/CustomerRepository.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Repository/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Repository/UserRepository.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Security/UserChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Security/UserChecker.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Story/DefaultAdministratorsStory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Story/DefaultAdministratorsStory.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Story/DefaultAppUsersStory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Story/DefaultAppUsersStory.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Story/RandomAppUsersStory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Story/RandomAppUsersStory.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Validator/Constraints/UniqueAppUserEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Validator/Constraints/UniqueAppUserEmail.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Validator/Constraints/UniqueAppUserEmailValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Validator/Constraints/UniqueAppUserEmailValidator.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/src/Validator/Initializer/CustomerInitializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/src/Validator/Initializer/CustomerInitializer.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/templates/bundles/SyliusUiBundle/Form/theme.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/templates/bundles/SyliusUiBundle/Form/theme.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/templates/bundles/SyliusUiBundle/Macro/pagination.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/templates/bundles/SyliusUiBundle/Macro/pagination.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/templates/bundles/SyliusUiBundle/Macro/table.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/templates/bundles/SyliusUiBundle/Macro/table.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/templates/emails/contactRequest.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/templates/emails/contactRequest.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/templates/emails/passwordReset.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/templates/emails/passwordReset.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/templates/emails/userRegistration.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/templates/emails/userRegistration.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/templates/emails/verification.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/templates/emails/verification.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Cli/CommandContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Cli/CommandContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Cli/DefaultContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Cli/DefaultContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Cli/InstallerContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Cli/InstallerContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Hook/DoctrineORMContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Hook/DoctrineORMContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Setup/AdminSecurityContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Setup/AdminSecurityContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Setup/AdminUserContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Setup/AdminUserContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Setup/AppSecurityContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Setup/AppSecurityContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Setup/CustomerContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Setup/CustomerContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Setup/UserContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Setup/UserContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Transform/AdminUserContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Transform/AdminUserContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Transform/CustomerContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Transform/CustomerContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Transform/SharedStorageContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Transform/SharedStorageContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Transform/UserContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Transform/UserContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Ui/EmailContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Behat/Context/Ui/EmailContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/tests/Resources/troll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/tests/Resources/troll.jpg -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/translations/flashes.fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/translations/flashes.fr.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/translations/messages.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/translations/messages.en.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/translations/messages.fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/translations/messages.fr.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/translations/validators.en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/translations/validators.en.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/.recipe/translations/validators.fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/.recipe/translations/validators.fr.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/CoreMeta/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/CoreMeta/composer.json -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/assets/frontend/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/assets/frontend/img/logo.png -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/assets/frontend/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/assets/frontend/js/app.js -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/assets/frontend/js/shim-lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/assets/frontend/js/shim-lightbox.js -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/assets/frontend/js/shim-semantic-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/assets/frontend/js/shim-semantic-ui.js -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/assets/frontend/scss/main.scss: -------------------------------------------------------------------------------- 1 | @import "~sylius/ui/sass/main"; 2 | 3 | -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/config/behat/suites/ui/account/customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/config/behat/suites/ui/account/customer.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/config/behat/suites/ui/account/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/config/behat/suites/ui/account/login.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/config/behat/suites/ui/account/registration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/config/behat/suites/ui/account/registration.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/config/packages/monofony_front.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/config/packages/monofony_front.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/config/routes/frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/config/routes/frontend.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/config/sylius/routes/frontend/_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/config/sylius/routes/frontend/_main.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/config/sylius/routes/frontend/account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/config/sylius/routes/frontend/account.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/config/sylius/routes/frontend/partial.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/config/sylius/routes/frontend/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/config/sylius/routes/frontend/security.yaml -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/features/account/customer_account/changing_password.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/features/account/customer_account/changing_password.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/features/account/customer_account/changing_password_validation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/features/account/customer_account/changing_password_validation.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/features/account/customer_account/customer_profile_validation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/features/account/customer_account/customer_profile_validation.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/features/account/customer_account/editing_customer_profile.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/features/account/customer_account/editing_customer_profile.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/features/account/registering.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/features/account/registering.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/features/account/registering_validation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/features/account/registering_validation.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/features/account/resetting_password.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/features/account/resetting_password.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/features/account/resetting_password_validation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/features/account/resetting_password_validation.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/features/account/signing_in.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/features/account/signing_in.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/features/account/signing_in_validation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/features/account/signing_in_validation.feature -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/src/Menu/AccountMenuBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/src/Menu/AccountMenuBuilder.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/_flashes.html.twig: -------------------------------------------------------------------------------- 1 | {% include '@SyliusUi/_flashes.html.twig' %} -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/_footer.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/_footer.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/_header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/_header.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/_menu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/_menu.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/changePassword.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/changePassword.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/dashboard.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/dashboard.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/layout.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/requestPasswordReset.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/requestPasswordReset.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/resetPassword.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/resetPassword.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/updateProfile.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/account/updateProfile.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/form/theme.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/form/theme.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/homepage/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/homepage/index.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/layout.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/login/_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/login/_form.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/login/_header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/login/_header.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/login/_register.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/login/_register.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/macro/buttons.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/macro/buttons.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/macro/pagination.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/macro/pagination.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/menu/simple.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '@SyliusUi/Menu/simple.html.twig' %} 2 | -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/register/_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/register/_form.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/register/_header.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/register/_header.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/security/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/security/login.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/security/register.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/templates/frontend/security/register.html.twig -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Context/Ui/Frontend/AccountContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Context/Ui/Frontend/AccountContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Context/Ui/Frontend/HomepageContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Context/Ui/Frontend/HomepageContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Context/Ui/Frontend/LoginContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Context/Ui/Frontend/LoginContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Context/Ui/Frontend/RegistrationContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Context/Ui/Frontend/RegistrationContext.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/ChangePasswordPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/ChangePasswordPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/DashboardPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/DashboardPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/LoginPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/LoginPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/ProfileUpdatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/ProfileUpdatePage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/RegisterPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/RegisterPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/RequestPasswordResetPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/RequestPasswordResetPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/ResetPasswordPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/ResetPasswordPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/VerificationPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/Account/VerificationPage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/HomePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/.recipe/tests/Behat/Page/Frontend/HomePage.php -------------------------------------------------------------------------------- /src/Monofony/MetaPack/FrontMeta/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/MetaPack/FrontMeta/composer.json -------------------------------------------------------------------------------- /src/Monofony/Pack/AdminPack/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Pack/AdminPack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/AdminPack/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Pack/AdminPack/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/AdminPack/composer.json -------------------------------------------------------------------------------- /src/Monofony/Pack/AdminPack/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/AdminPack/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Pack/ApiPack/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Pack/ApiPack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/ApiPack/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Pack/ApiPack/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/ApiPack/composer.json -------------------------------------------------------------------------------- /src/Monofony/Pack/ApiPack/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/ApiPack/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Pack/CorePack/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Pack/CorePack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/CorePack/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Pack/CorePack/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/CorePack/composer.json -------------------------------------------------------------------------------- /src/Monofony/Pack/CorePack/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/CorePack/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Pack/FrontPack/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Pack/FrontPack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/FrontPack/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Pack/FrontPack/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/FrontPack/composer.json -------------------------------------------------------------------------------- /src/Monofony/Pack/FrontPack/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/FrontPack/phpstan.neon -------------------------------------------------------------------------------- /src/Monofony/Pack/TestPack/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/Monofony/Pack/TestPack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/TestPack/LICENSE -------------------------------------------------------------------------------- /src/Monofony/Pack/TestPack/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/src/Monofony/Pack/TestPack/composer.json -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/symfony.lock -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monofony/Monofony/HEAD/yarn.lock --------------------------------------------------------------------------------