├── .env ├── .gitignore ├── _tuts ├── README.md ├── browser-change-phpunit-listener.diff ├── browser-install-browser.diff ├── browser-refactor-non-js-test.diff ├── browser-refactor-panther-test.diff ├── browser-remove-dd.diff ├── browser-using-dd.diff ├── foundry-customizing-factories.diff ├── foundry-install-foundry.diff ├── foundry-make-factory-category.diff ├── foundry-make-factory-product.diff ├── functional-auto-refresh.diff ├── functional-finish-test.diff ├── functional-make-test.diff ├── functional-use-database-reload.diff ├── integration-configure-db.diff ├── integration-fetch-repository-service.diff ├── integration-finish-test.diff ├── integration-make-test-the-integration-test.diff ├── integration-use-resetdatabase.diff ├── panther-assertselectorwillcontain.diff ├── panther-bootstrap-js-test.diff ├── panther-committing-browsers.diff ├── panther-install-dbrekelmans-bdi.diff ├── panther-install-panther.diff ├── panther-setup-database-in-panther-env.diff ├── panther-use-panther-screenshot.diff ├── panther-use-test-listener.diff ├── panther-wait-for-element.diff ├── paratest-install-it.diff ├── paratest-port-hacks.diff ├── paratest-use-test-token.diff ├── phpunit-install-phpunit-itself.diff ├── phpunit-installing-test-pack.diff ├── steps.json ├── unit-add-unit-test.diff └── unit-basic-test.diff ├── assets ├── app.js ├── bootstrap.js ├── components │ ├── FeatureProduct.js │ └── MadeWithLove.js ├── controllers.json ├── controllers │ ├── admin-chartjs_controller.js │ ├── color-square_controller.js │ ├── counter_controller.js │ ├── featured-product-react_controller.js │ ├── made-with-love_controller.js │ ├── search-preview_controller.js │ └── submit-confirm_controller.js └── styles │ └── app.css ├── bin └── console ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── packages │ ├── assets.yaml │ ├── cache.yaml │ ├── dev │ │ ├── debug.yaml │ │ ├── monolog.yaml │ │ └── web_profiler.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── framework.yaml │ ├── prod │ │ ├── deprecations.yaml │ │ ├── doctrine.yaml │ │ ├── monolog.yaml │ │ ├── routing.yaml │ │ └── webpack_encore.yaml │ ├── routing.yaml │ ├── security.yaml │ ├── sensio_framework_extra.yaml │ ├── test │ │ ├── framework.yaml │ │ ├── monolog.yaml │ │ ├── twig.yaml │ │ ├── validator.yaml │ │ ├── web_profiler.yaml │ │ └── webpack_encore.yaml │ ├── twig.yaml │ ├── validator.yaml │ └── webpack_encore.yaml ├── preload.php ├── routes.yaml ├── routes │ ├── annotations.yaml │ └── dev │ │ ├── framework.yaml │ │ └── web_profiler.yaml └── services.yaml ├── docker-compose.yaml ├── migrations ├── .gitignore ├── Version20191206161148.php ├── Version20200127144611.php └── Version20210227171403.php ├── package.json ├── public ├── images │ └── mvp-logo-light.png ├── index.php └── uploads │ └── products │ ├── blank-cds.png │ ├── dog-lamp.png │ ├── floppy-disc.png │ ├── hammock.png │ ├── indoor-plant.png │ ├── inflatable-sofa.png │ ├── papers.png │ ├── pen.png │ ├── popcorn.png │ ├── puzzle.png │ ├── spigot.png │ └── velvis.png ├── src ├── Controller │ ├── .gitignore │ ├── AdminController.php │ ├── CartController.php │ ├── CheckoutController.php │ ├── ProductController.php │ ├── RegistrationController.php │ └── SecurityController.php ├── DataFixtures │ ├── AppFixtures.php │ └── uploads │ │ └── products │ │ ├── blank-cds.png │ │ ├── dog-lamp.png │ │ ├── floppy-disc.png │ │ ├── hammock.png │ │ ├── indoor-plant.png │ │ ├── inflatable-sofa.png │ │ ├── papers.png │ │ ├── pen.png │ │ ├── popcorn.png │ │ ├── puzzle.png │ │ ├── spigot.png │ │ └── velvis.png ├── Entity │ ├── .gitignore │ ├── Cart.php │ ├── CartItem.php │ ├── Category.php │ ├── Color.php │ ├── Product.php │ ├── Purchase.php │ ├── PurchaseItem.php │ └── User.php ├── Form │ ├── AddItemToCartFormType.php │ ├── CheckoutFormType.php │ ├── ProductType.php │ └── RegistrationFormType.php ├── Kernel.php ├── Repository │ ├── .gitignore │ ├── CategoryRepository.php │ ├── ColorRepository.php │ ├── ProductRepository.php │ ├── PurchaseItemRepository.php │ ├── PurchaseRepository.php │ └── UserRepository.php ├── Security │ └── LoginFormAuthenticator.php ├── Service │ └── CartStorage.php ├── Twig │ ├── CartExtension.php │ └── SerializeExtension.php └── Util │ └── Calculator.php ├── symfony.lock ├── templates ├── admin │ └── dashboard.html.twig ├── base.html.twig ├── cart │ ├── _featuredSidebar.html.twig │ └── cart.html.twig ├── checkout │ ├── checkout.html.twig │ └── confirmation.html.twig ├── product │ ├── _cart_add_controls.html.twig │ ├── _categoriesSidebar.html.twig │ ├── _form.html.twig │ ├── _searchPreview.html.twig │ ├── edit.html.twig │ ├── index.html.twig │ ├── new.html.twig │ └── show.html.twig ├── registration │ └── register.html.twig └── security │ └── login.html.twig ├── webpack.config.js └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/.gitignore -------------------------------------------------------------------------------- /_tuts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/README.md -------------------------------------------------------------------------------- /_tuts/browser-change-phpunit-listener.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/browser-change-phpunit-listener.diff -------------------------------------------------------------------------------- /_tuts/browser-install-browser.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/browser-install-browser.diff -------------------------------------------------------------------------------- /_tuts/browser-refactor-non-js-test.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/browser-refactor-non-js-test.diff -------------------------------------------------------------------------------- /_tuts/browser-refactor-panther-test.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/browser-refactor-panther-test.diff -------------------------------------------------------------------------------- /_tuts/browser-remove-dd.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/browser-remove-dd.diff -------------------------------------------------------------------------------- /_tuts/browser-using-dd.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/browser-using-dd.diff -------------------------------------------------------------------------------- /_tuts/foundry-customizing-factories.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/foundry-customizing-factories.diff -------------------------------------------------------------------------------- /_tuts/foundry-install-foundry.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/foundry-install-foundry.diff -------------------------------------------------------------------------------- /_tuts/foundry-make-factory-category.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/foundry-make-factory-category.diff -------------------------------------------------------------------------------- /_tuts/foundry-make-factory-product.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/foundry-make-factory-product.diff -------------------------------------------------------------------------------- /_tuts/functional-auto-refresh.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/functional-auto-refresh.diff -------------------------------------------------------------------------------- /_tuts/functional-finish-test.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/functional-finish-test.diff -------------------------------------------------------------------------------- /_tuts/functional-make-test.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/functional-make-test.diff -------------------------------------------------------------------------------- /_tuts/functional-use-database-reload.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/functional-use-database-reload.diff -------------------------------------------------------------------------------- /_tuts/integration-configure-db.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/integration-configure-db.diff -------------------------------------------------------------------------------- /_tuts/integration-fetch-repository-service.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/integration-fetch-repository-service.diff -------------------------------------------------------------------------------- /_tuts/integration-finish-test.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/integration-finish-test.diff -------------------------------------------------------------------------------- /_tuts/integration-make-test-the-integration-test.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/integration-make-test-the-integration-test.diff -------------------------------------------------------------------------------- /_tuts/integration-use-resetdatabase.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/integration-use-resetdatabase.diff -------------------------------------------------------------------------------- /_tuts/panther-assertselectorwillcontain.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/panther-assertselectorwillcontain.diff -------------------------------------------------------------------------------- /_tuts/panther-bootstrap-js-test.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/panther-bootstrap-js-test.diff -------------------------------------------------------------------------------- /_tuts/panther-committing-browsers.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/panther-committing-browsers.diff -------------------------------------------------------------------------------- /_tuts/panther-install-dbrekelmans-bdi.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/panther-install-dbrekelmans-bdi.diff -------------------------------------------------------------------------------- /_tuts/panther-install-panther.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/panther-install-panther.diff -------------------------------------------------------------------------------- /_tuts/panther-setup-database-in-panther-env.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/panther-setup-database-in-panther-env.diff -------------------------------------------------------------------------------- /_tuts/panther-use-panther-screenshot.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/panther-use-panther-screenshot.diff -------------------------------------------------------------------------------- /_tuts/panther-use-test-listener.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/panther-use-test-listener.diff -------------------------------------------------------------------------------- /_tuts/panther-wait-for-element.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/panther-wait-for-element.diff -------------------------------------------------------------------------------- /_tuts/paratest-install-it.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/paratest-install-it.diff -------------------------------------------------------------------------------- /_tuts/paratest-port-hacks.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/paratest-port-hacks.diff -------------------------------------------------------------------------------- /_tuts/paratest-use-test-token.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/paratest-use-test-token.diff -------------------------------------------------------------------------------- /_tuts/phpunit-install-phpunit-itself.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/phpunit-install-phpunit-itself.diff -------------------------------------------------------------------------------- /_tuts/phpunit-installing-test-pack.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/phpunit-installing-test-pack.diff -------------------------------------------------------------------------------- /_tuts/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/steps.json -------------------------------------------------------------------------------- /_tuts/unit-add-unit-test.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/unit-add-unit-test.diff -------------------------------------------------------------------------------- /_tuts/unit-basic-test.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/_tuts/unit-basic-test.diff -------------------------------------------------------------------------------- /assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/app.js -------------------------------------------------------------------------------- /assets/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/bootstrap.js -------------------------------------------------------------------------------- /assets/components/FeatureProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/components/FeatureProduct.js -------------------------------------------------------------------------------- /assets/components/MadeWithLove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/components/MadeWithLove.js -------------------------------------------------------------------------------- /assets/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/controllers.json -------------------------------------------------------------------------------- /assets/controllers/admin-chartjs_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/controllers/admin-chartjs_controller.js -------------------------------------------------------------------------------- /assets/controllers/color-square_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/controllers/color-square_controller.js -------------------------------------------------------------------------------- /assets/controllers/counter_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/controllers/counter_controller.js -------------------------------------------------------------------------------- /assets/controllers/featured-product-react_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/controllers/featured-product-react_controller.js -------------------------------------------------------------------------------- /assets/controllers/made-with-love_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/controllers/made-with-love_controller.js -------------------------------------------------------------------------------- /assets/controllers/search-preview_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/controllers/search-preview_controller.js -------------------------------------------------------------------------------- /assets/controllers/submit-confirm_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/controllers/submit-confirm_controller.js -------------------------------------------------------------------------------- /assets/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/assets/styles/app.css -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/bin/console -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/assets.yaml -------------------------------------------------------------------------------- /config/packages/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/cache.yaml -------------------------------------------------------------------------------- /config/packages/dev/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/dev/debug.yaml -------------------------------------------------------------------------------- /config/packages/dev/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/dev/monolog.yaml -------------------------------------------------------------------------------- /config/packages/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/prod/deprecations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/prod/deprecations.yaml -------------------------------------------------------------------------------- /config/packages/prod/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/prod/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/prod/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/prod/monolog.yaml -------------------------------------------------------------------------------- /config/packages/prod/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/prod/routing.yaml -------------------------------------------------------------------------------- /config/packages/prod/webpack_encore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/prod/webpack_encore.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/security.yaml -------------------------------------------------------------------------------- /config/packages/sensio_framework_extra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/sensio_framework_extra.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/test/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/test/monolog.yaml -------------------------------------------------------------------------------- /config/packages/test/twig.yaml: -------------------------------------------------------------------------------- 1 | twig: 2 | strict_variables: true 3 | -------------------------------------------------------------------------------- /config/packages/test/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/test/validator.yaml -------------------------------------------------------------------------------- /config/packages/test/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/test/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/test/webpack_encore.yaml: -------------------------------------------------------------------------------- 1 | #webpack_encore: 2 | # strict_mode: false 3 | -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/packages/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/validator.yaml -------------------------------------------------------------------------------- /config/packages/webpack_encore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/packages/webpack_encore.yaml -------------------------------------------------------------------------------- /config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/preload.php -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/routes/annotations.yaml -------------------------------------------------------------------------------- /config/routes/dev/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/routes/dev/framework.yaml -------------------------------------------------------------------------------- /config/routes/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/routes/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/config/services.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrations/Version20191206161148.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/migrations/Version20191206161148.php -------------------------------------------------------------------------------- /migrations/Version20200127144611.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/migrations/Version20200127144611.php -------------------------------------------------------------------------------- /migrations/Version20210227171403.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/migrations/Version20210227171403.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/package.json -------------------------------------------------------------------------------- /public/images/mvp-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/images/mvp-logo-light.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/index.php -------------------------------------------------------------------------------- /public/uploads/products/blank-cds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/blank-cds.png -------------------------------------------------------------------------------- /public/uploads/products/dog-lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/dog-lamp.png -------------------------------------------------------------------------------- /public/uploads/products/floppy-disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/floppy-disc.png -------------------------------------------------------------------------------- /public/uploads/products/hammock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/hammock.png -------------------------------------------------------------------------------- /public/uploads/products/indoor-plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/indoor-plant.png -------------------------------------------------------------------------------- /public/uploads/products/inflatable-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/inflatable-sofa.png -------------------------------------------------------------------------------- /public/uploads/products/papers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/papers.png -------------------------------------------------------------------------------- /public/uploads/products/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/pen.png -------------------------------------------------------------------------------- /public/uploads/products/popcorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/popcorn.png -------------------------------------------------------------------------------- /public/uploads/products/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/puzzle.png -------------------------------------------------------------------------------- /public/uploads/products/spigot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/spigot.png -------------------------------------------------------------------------------- /public/uploads/products/velvis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/public/uploads/products/velvis.png -------------------------------------------------------------------------------- /src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Controller/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Controller/AdminController.php -------------------------------------------------------------------------------- /src/Controller/CartController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Controller/CartController.php -------------------------------------------------------------------------------- /src/Controller/CheckoutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Controller/CheckoutController.php -------------------------------------------------------------------------------- /src/Controller/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Controller/ProductController.php -------------------------------------------------------------------------------- /src/Controller/RegistrationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Controller/RegistrationController.php -------------------------------------------------------------------------------- /src/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/DataFixtures/AppFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/AppFixtures.php -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/blank-cds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/blank-cds.png -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/dog-lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/dog-lamp.png -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/floppy-disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/floppy-disc.png -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/hammock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/hammock.png -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/indoor-plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/indoor-plant.png -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/inflatable-sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/inflatable-sofa.png -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/papers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/papers.png -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/pen.png -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/popcorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/popcorn.png -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/puzzle.png -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/spigot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/spigot.png -------------------------------------------------------------------------------- /src/DataFixtures/uploads/products/velvis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/DataFixtures/uploads/products/velvis.png -------------------------------------------------------------------------------- /src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Entity/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Entity/Cart.php -------------------------------------------------------------------------------- /src/Entity/CartItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Entity/CartItem.php -------------------------------------------------------------------------------- /src/Entity/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Entity/Category.php -------------------------------------------------------------------------------- /src/Entity/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Entity/Color.php -------------------------------------------------------------------------------- /src/Entity/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Entity/Product.php -------------------------------------------------------------------------------- /src/Entity/Purchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Entity/Purchase.php -------------------------------------------------------------------------------- /src/Entity/PurchaseItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Entity/PurchaseItem.php -------------------------------------------------------------------------------- /src/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Entity/User.php -------------------------------------------------------------------------------- /src/Form/AddItemToCartFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Form/AddItemToCartFormType.php -------------------------------------------------------------------------------- /src/Form/CheckoutFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Form/CheckoutFormType.php -------------------------------------------------------------------------------- /src/Form/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Form/ProductType.php -------------------------------------------------------------------------------- /src/Form/RegistrationFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Form/RegistrationFormType.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Repository/CategoryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Repository/CategoryRepository.php -------------------------------------------------------------------------------- /src/Repository/ColorRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Repository/ColorRepository.php -------------------------------------------------------------------------------- /src/Repository/ProductRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Repository/ProductRepository.php -------------------------------------------------------------------------------- /src/Repository/PurchaseItemRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Repository/PurchaseItemRepository.php -------------------------------------------------------------------------------- /src/Repository/PurchaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Repository/PurchaseRepository.php -------------------------------------------------------------------------------- /src/Repository/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Repository/UserRepository.php -------------------------------------------------------------------------------- /src/Security/LoginFormAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Security/LoginFormAuthenticator.php -------------------------------------------------------------------------------- /src/Service/CartStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Service/CartStorage.php -------------------------------------------------------------------------------- /src/Twig/CartExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Twig/CartExtension.php -------------------------------------------------------------------------------- /src/Twig/SerializeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Twig/SerializeExtension.php -------------------------------------------------------------------------------- /src/Util/Calculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/src/Util/Calculator.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/symfony.lock -------------------------------------------------------------------------------- /templates/admin/dashboard.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/admin/dashboard.html.twig -------------------------------------------------------------------------------- /templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/base.html.twig -------------------------------------------------------------------------------- /templates/cart/_featuredSidebar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/cart/_featuredSidebar.html.twig -------------------------------------------------------------------------------- /templates/cart/cart.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/cart/cart.html.twig -------------------------------------------------------------------------------- /templates/checkout/checkout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/checkout/checkout.html.twig -------------------------------------------------------------------------------- /templates/checkout/confirmation.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/checkout/confirmation.html.twig -------------------------------------------------------------------------------- /templates/product/_cart_add_controls.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/product/_cart_add_controls.html.twig -------------------------------------------------------------------------------- /templates/product/_categoriesSidebar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/product/_categoriesSidebar.html.twig -------------------------------------------------------------------------------- /templates/product/_form.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/product/_form.html.twig -------------------------------------------------------------------------------- /templates/product/_searchPreview.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/product/_searchPreview.html.twig -------------------------------------------------------------------------------- /templates/product/edit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/product/edit.html.twig -------------------------------------------------------------------------------- /templates/product/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/product/index.html.twig -------------------------------------------------------------------------------- /templates/product/new.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/product/new.html.twig -------------------------------------------------------------------------------- /templates/product/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/product/show.html.twig -------------------------------------------------------------------------------- /templates/registration/register.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/registration/register.html.twig -------------------------------------------------------------------------------- /templates/security/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/templates/security/login.html.twig -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaverryan/sflive_2021_testing/HEAD/yarn.lock --------------------------------------------------------------------------------