├── .editorconfig ├── .env.dist ├── .env.test ├── .gitignore ├── .php_cs.dist ├── .prettierignore ├── .prettierrc.js ├── .scrutinizer.yml ├── .snyk ├── LICENSE ├── POSTMAN.json ├── README.md ├── assets ├── .gitignore ├── css │ ├── app.css │ ├── app.scss │ ├── dx-overload.scss │ └── quasar-bootstrap.scss └── js │ ├── api-platform-admin-react │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── logo.svg │ └── src │ │ ├── authProvider.js │ │ ├── components │ │ └── login.js │ │ └── registerServiceWorker.js │ ├── app.js │ ├── form-devxpress-angular │ ├── .browserslistrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── book-container │ │ │ │ └── book │ │ │ │ │ ├── book.component.html │ │ │ │ │ ├── book.component.scss │ │ │ │ │ ├── book.component.spec.ts │ │ │ │ │ └── book.component.ts │ │ │ ├── datagrid │ │ │ │ ├── datagrid.component.html │ │ │ │ ├── datagrid.component.scss │ │ │ │ ├── datagrid.component.spec.ts │ │ │ │ └── datagrid.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.scss │ │ │ │ ├── home.component.spec.ts │ │ │ │ └── home.component.ts │ │ │ ├── shared │ │ │ │ ├── login │ │ │ │ │ ├── login.component.html │ │ │ │ │ ├── login.component.scss │ │ │ │ │ ├── login.component.spec.ts │ │ │ │ │ └── login.component.ts │ │ │ │ ├── services │ │ │ │ │ ├── broadcast-channel-api.ts │ │ │ │ │ ├── reviver │ │ │ │ │ │ └── library │ │ │ │ │ │ │ ├── authorReviver.ts │ │ │ │ │ │ │ ├── authorsReviver.ts │ │ │ │ │ │ │ ├── bookReviver.ts │ │ │ │ │ │ │ ├── editorReviver.ts │ │ │ │ │ │ │ ├── editorsReviver.ts │ │ │ │ │ │ │ ├── jobReviver.ts │ │ │ │ │ │ │ └── serieReviver.ts │ │ │ │ │ ├── user.ts │ │ │ │ │ ├── wizard-book.ts │ │ │ │ │ └── wizard-routing.ts │ │ │ │ ├── shared.module.ts │ │ │ │ ├── tools │ │ │ │ │ └── form-options.ts │ │ │ │ ├── wizard-list-authors │ │ │ │ │ ├── wizard-list-authors.component.html │ │ │ │ │ ├── wizard-list-authors.component.scss │ │ │ │ │ ├── wizard-list-authors.component.spec.ts │ │ │ │ │ └── wizard-list-authors.component.ts │ │ │ │ ├── wizard-list-editors │ │ │ │ │ ├── wizard-list-editors.component.html │ │ │ │ │ ├── wizard-list-editors.component.scss │ │ │ │ │ ├── wizard-list-editors.component.spec.ts │ │ │ │ │ └── wizard-list-editors.component.ts │ │ │ │ └── wizard-sumup │ │ │ │ │ ├── wizard-sumup.component.html │ │ │ │ │ ├── wizard-sumup.component.scss │ │ │ │ │ ├── wizard-sumup.component.spec.ts │ │ │ │ │ └── wizard-sumup.component.ts │ │ │ └── wizard-container │ │ │ │ ├── app │ │ │ │ ├── authors-form │ │ │ │ │ ├── authors-form.component.html │ │ │ │ │ ├── authors-form.component.scss │ │ │ │ │ ├── authors-form.component.spec.ts │ │ │ │ │ └── authors-form.component.ts │ │ │ │ ├── book-form │ │ │ │ │ ├── book-form.component.html │ │ │ │ │ ├── book-form.component.scss │ │ │ │ │ ├── book-form.component.spec.ts │ │ │ │ │ └── book-form.component.ts │ │ │ │ ├── editors-form │ │ │ │ │ ├── editors-form.component.html │ │ │ │ │ ├── editors-form.component.scss │ │ │ │ │ ├── editors-form.component.spec.ts │ │ │ │ │ └── editors-form.component.ts │ │ │ │ ├── wizard-container.component.html │ │ │ │ ├── wizard-container.component.scss │ │ │ │ ├── wizard-container.component.spec.ts │ │ │ │ ├── wizard-container.component.ts │ │ │ │ └── wizard-step │ │ │ │ │ ├── wizard-step.component.html │ │ │ │ │ ├── wizard-step.component.scss │ │ │ │ │ ├── wizard-step.component.spec.ts │ │ │ │ │ └── wizard-step.component.ts │ │ │ │ ├── enums │ │ │ │ └── cache-key.ts │ │ │ │ ├── interfaces │ │ │ │ └── steps.ts │ │ │ │ ├── wizard.module.ts │ │ │ │ └── wizard.routes.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── entities │ │ │ ├── .gitkeep │ │ │ └── library │ │ │ │ ├── author.ts │ │ │ │ ├── authors.ts │ │ │ │ ├── book.ts │ │ │ │ ├── editor.ts │ │ │ │ ├── editors.ts │ │ │ │ ├── job.ts │ │ │ │ └── serie.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── mocks │ │ │ ├── .gitkeep │ │ │ ├── books.ts │ │ │ └── jobs.ts │ │ ├── models │ │ │ ├── .gitkeep │ │ │ ├── book.model.ts │ │ │ ├── job.model.ts │ │ │ └── user.model.ts │ │ ├── polyfills.ts │ │ ├── services │ │ │ ├── .gitkeep │ │ │ ├── api-mock.exception.ts │ │ │ ├── api-mock.ts │ │ │ ├── api.spec.ts │ │ │ ├── api.ts │ │ │ ├── jwt-interceptor.spec.ts │ │ │ ├── jwt-interceptor.ts │ │ │ ├── token.interface.ts │ │ │ ├── token.mock.service.ts │ │ │ └── token.service.ts │ │ ├── styles.scss │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ ├── form-devxpress-vuejs │ ├── App.vue │ ├── app.js │ ├── components │ │ ├── Book.vue │ │ └── Books.vue │ └── services │ │ └── books.js │ ├── form-quasar-vuejs │ ├── App.vue │ ├── app.js │ ├── components │ │ ├── Book.vue │ │ └── Books.vue │ ├── dataTableDefinitions │ │ └── Books.js │ └── router │ │ └── index.js │ ├── home │ └── app.js │ ├── lib │ ├── apollo.js │ ├── axiosMiddlewares.js │ ├── csrfToken.js │ ├── entities │ │ └── library │ │ │ ├── author.js │ │ │ ├── authors.js │ │ │ ├── book.js │ │ │ ├── editor.js │ │ │ ├── editors.js │ │ │ ├── job.js │ │ │ └── serie.js │ ├── interfaces │ │ ├── author.ts │ │ ├── book.ts │ │ ├── editor.ts │ │ ├── job.ts │ │ ├── loan.ts │ │ ├── ping.ts │ │ ├── pingsecured.ts │ │ ├── projectbookcreation.ts │ │ ├── projectbookedition.ts │ │ ├── reader.ts │ │ ├── review.ts │ │ ├── serie.ts │ │ └── tag.ts │ ├── login.js │ ├── reviver │ │ └── library │ │ │ ├── authorReviver.js │ │ │ ├── authorsReviver.js │ │ │ ├── bookReviver.js │ │ │ ├── editorReviver.js │ │ │ ├── editorsReviver.js │ │ │ ├── index.js │ │ │ ├── jobReviver.js │ │ │ └── serieReviver.js │ └── service-worker.js │ ├── login │ ├── App.vue │ ├── app.js │ ├── components │ │ ├── Login.vue │ │ └── Secured.vue │ └── router │ │ └── index.js │ ├── quasar │ ├── App.vue │ ├── app.js │ ├── components │ │ ├── Movie.vue │ │ └── Movies.vue │ └── router │ │ └── index.js │ └── vuejs │ ├── App.vue │ ├── app.js │ ├── components │ ├── Loader.vue │ ├── Movie.vue │ └── Movies.vue │ ├── router │ └── index.js │ └── tests │ ├── DebugKarma.spec.js │ ├── Movie.spec.js │ ├── Movies.spec.js │ └── index.js ├── bin ├── console └── phpunit ├── composer.json ├── composer.lock ├── config ├── bootstrap.php ├── bundles.php ├── packages │ ├── api_platform.yaml │ ├── assets.yaml │ ├── cache.yaml │ ├── dev │ │ ├── monolog.yaml │ │ ├── routing.yaml │ │ ├── security_checker.yaml │ │ └── web_profiler.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── easy_admin.yaml │ ├── framework.yaml │ ├── lexik_jwt_authentication.yaml │ ├── nelmio_cors.yaml │ ├── prod │ │ ├── doctrine.yaml │ │ └── monolog.yaml │ ├── routing.yaml │ ├── security.yaml │ ├── security_checker.yaml │ ├── sensio_framework_extra.yaml │ ├── test │ │ ├── framework.yaml │ │ ├── monolog.yaml │ │ ├── routing.yaml │ │ └── web_profiler.yaml │ ├── translation.yaml │ ├── twig.yaml │ ├── validator.yaml │ └── webpack_encore.yaml ├── routes.yaml ├── routes │ ├── annotations.yaml │ ├── api_platform.yaml │ ├── dev │ │ ├── twig.yaml │ │ └── web_profiler.yaml │ ├── easy_admin.yaml │ └── project.yaml └── services.yaml ├── karma.conf.js ├── karma.webpack.config.babel.js ├── package.json ├── phpunit.xml.dist ├── public ├── android-icon-144x144.png ├── android-icon-192x192.png ├── android-icon-36x36.png ├── android-icon-48x48.png ├── android-icon-72x72.png ├── android-icon-96x96.png ├── apple-icon-114x114.png ├── apple-icon-120x120.png ├── apple-icon-144x144.png ├── apple-icon-152x152.png ├── apple-icon-180x180.png ├── apple-icon-57x57.png ├── apple-icon-60x60.png ├── apple-icon-72x72.png ├── apple-icon-76x76.png ├── apple-icon-precomposed.png ├── apple-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── img │ └── db-model.png ├── index.php ├── manifest.json ├── ms-icon-144x144.png ├── ms-icon-150x150.png ├── ms-icon-310x310.png └── ms-icon-70x70.png ├── src ├── Action │ └── BookSpecial.php ├── Api │ └── Config.php ├── Command │ └── DumpJsConfig.php ├── Controller │ ├── .gitignore │ ├── Api │ │ └── TokenController.php │ ├── DefaultController.php │ ├── FormDevXpressAngularController.php │ ├── HelloController.php │ ├── HttpController.php │ ├── LoginController.php │ ├── LoginJsonController.php │ ├── LoginJwtController.php │ └── SimpleController.php ├── DataFixtures │ ├── .gitignore │ ├── ConnectionFixtures.php │ └── Library │ │ └── AppFixtures.php ├── DataProvider │ ├── PingDataProvider.php │ ├── PingSecuredDataProvider.php │ └── TagDataProvider.php ├── Doctrine │ ├── Library │ │ └── Extension │ │ │ └── UserExtension.php │ └── Migrations │ │ ├── .gitignore │ │ └── Version20210112234122.php ├── Domain │ └── Specification.php ├── Entity │ ├── .gitignore │ ├── Library │ │ ├── Author.php │ │ ├── Book.php │ │ ├── Editor.php │ │ ├── Job.php │ │ ├── LibraryInterface.php │ │ ├── Loan.php │ │ ├── ProjectBookCreation.php │ │ ├── ProjectBookEdition.php │ │ ├── Reader.php │ │ ├── Review.php │ │ ├── Serie.php │ │ └── Tag.php │ ├── Ping.php │ └── PingSecured.php ├── EventListener │ ├── AuthenticationFailureListener.php │ ├── AuthenticationSuccessListener.php │ ├── JWTAuthenticatedListener.php │ ├── JWTCreatedListener.php │ ├── JWTDecodedListener.php │ └── JWTInvalidListener.php ├── EventSubscriber │ ├── Api │ │ └── UserMeSubscriber.php │ └── BookSubscriber.php ├── Kernel.php ├── Repository │ ├── .gitignore │ └── Library │ │ ├── BookRepository.php │ │ ├── LoanRepository.php │ │ └── ReaderRepository.php ├── Request │ └── ParamConverter │ │ └── Library │ │ ├── AuthorConverter.php │ │ ├── BookConverter.php │ │ ├── EditorConverter.php │ │ ├── JobConverter.php │ │ ├── ProjectBookCreationConverter.php │ │ ├── ProjectBookEditionConverter.php │ │ ├── SerieConverter.php │ │ └── TagConverter.php ├── Security │ ├── CsrfToken.php │ ├── CsrfTokenAuthenticator.php │ └── JwtTokenTools.php ├── Swagger │ └── SwaggerDecorator.php ├── Tools │ └── AngularCli.php └── Validator │ └── Constraints │ ├── HasOneOfUserOrNameNotNull.php │ └── HasOneOfUserOrNameNotNullValidator.php ├── symfony.lock ├── templates ├── admin.html.twig ├── base.html.twig ├── command │ └── config.js.twig ├── default │ └── menu.html.twig ├── form-devxpress-angular │ └── app.html.twig ├── form-devxpress-vuejs │ └── app.html.twig ├── form-quasar-vuejs │ └── app.html.twig ├── hello │ └── world.html.twig ├── login │ ├── index.html.twig │ └── login.html.twig ├── quasar │ └── app.html.twig ├── spa-devextrem.html.twig ├── spa-quasar.html.twig ├── spa.html.twig └── vuejs │ └── app.html.twig ├── tests ├── .gitignore ├── Api │ └── ApiDocTest.php ├── Command │ └── DumpJsConfigTest.php ├── Common │ ├── ApiAbstract.php │ ├── JsonBook.php │ ├── PantherToolsAbstract.php │ ├── TestCase.php │ └── WebPagesAbstract.php ├── Controller │ ├── Api │ │ └── ApiTest.php │ ├── BasicControllerTest.php │ ├── DefaultControllerTest.php │ ├── HTTP200WebPagesTest.php │ ├── LoginJsonControllerTest.php │ ├── LoginJsonTest.php │ ├── LoginJwtTest.php │ └── LoginPhpControllerTest.php ├── Entity │ ├── Library │ │ ├── BookTest.php │ │ └── LoanTest.php │ ├── PingSecuredTest.php │ └── PingTest.php ├── Normalization │ ├── ApiPlatformCustomRoutesWithParamConverterTest.php │ └── ApiPlatformDenormalizerTest.php ├── Repository │ ├── LoanRepositoryTest.php │ └── ReaderRepositoryTest.php ├── bootstrap.php └── fixtures │ └── config │ └── .gitignore ├── translations └── .gitignore ├── var ├── data │ ├── .gitkeep │ └── fixtures.db ├── jwt-test │ ├── private.pem │ └── public.pem ├── tests │ └── karma │ │ └── .gitkeep └── travis │ ├── jwt-test │ ├── private.pem │ └── public.pem │ └── nginx.conf ├── webpack.config.babel.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/.env.dist -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/.env.test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/.snyk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/LICENSE -------------------------------------------------------------------------------- /POSTMAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/POSTMAN.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/README.md -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightgray; 3 | } 4 | -------------------------------------------------------------------------------- /assets/css/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/css/app.scss -------------------------------------------------------------------------------- /assets/css/dx-overload.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/css/dx-overload.scss -------------------------------------------------------------------------------- /assets/css/quasar-bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/css/quasar-bootstrap.scss -------------------------------------------------------------------------------- /assets/js/api-platform-admin-react/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/api-platform-admin-react/App.css -------------------------------------------------------------------------------- /assets/js/api-platform-admin-react/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/api-platform-admin-react/App.js -------------------------------------------------------------------------------- /assets/js/api-platform-admin-react/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/api-platform-admin-react/App.test.js -------------------------------------------------------------------------------- /assets/js/api-platform-admin-react/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/api-platform-admin-react/index.css -------------------------------------------------------------------------------- /assets/js/api-platform-admin-react/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/api-platform-admin-react/logo.svg -------------------------------------------------------------------------------- /assets/js/api-platform-admin-react/src/authProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/api-platform-admin-react/src/authProvider.js -------------------------------------------------------------------------------- /assets/js/api-platform-admin-react/src/components/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/api-platform-admin-react/src/components/login.js -------------------------------------------------------------------------------- /assets/js/api-platform-admin-react/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/api-platform-admin-react/src/registerServiceWorker.js -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/app.js -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/.browserslistrc -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/.editorconfig -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/.gitignore -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/README.md -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/angular.json -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/e2e/protractor.conf.js -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/e2e/src/app.po.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/e2e/tsconfig.json -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/karma.conf.js -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/package-lock.json -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/package.json -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/app.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/app.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/app.module.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/book-container/book/book.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/book-container/book/book.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/book-container/book/book.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/book-container/book/book.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/book-container/book/book.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/book-container/book/book.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/book-container/book/book.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/datagrid/datagrid.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/datagrid/datagrid.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/datagrid/datagrid.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/datagrid/datagrid.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/datagrid/datagrid.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/datagrid/datagrid.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/datagrid/datagrid.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/home/home.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/home/home.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/login/login.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/login/login.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/login/login.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/login/login.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/services/broadcast-channel-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/services/broadcast-channel-api.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/authorReviver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/authorReviver.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/authorsReviver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/authorsReviver.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/bookReviver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/bookReviver.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/editorReviver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/editorReviver.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/editorsReviver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/editorsReviver.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/jobReviver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/jobReviver.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/serieReviver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/services/reviver/library/serieReviver.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/services/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/services/user.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/services/wizard-book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/services/wizard-book.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/services/wizard-routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/services/wizard-routing.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/tools/form-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/tools/form-options.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-list-authors/wizard-list-authors.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/wizard-list-authors/wizard-list-authors.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-list-authors/wizard-list-authors.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-list-authors/wizard-list-authors.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/wizard-list-authors/wizard-list-authors.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-list-authors/wizard-list-authors.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/wizard-list-authors/wizard-list-authors.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-list-editors/wizard-list-editors.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/wizard-list-editors/wizard-list-editors.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-list-editors/wizard-list-editors.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-list-editors/wizard-list-editors.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/wizard-list-editors/wizard-list-editors.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-list-editors/wizard-list-editors.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/wizard-list-editors/wizard-list-editors.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-sumup/wizard-sumup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/wizard-sumup/wizard-sumup.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-sumup/wizard-sumup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-sumup/wizard-sumup.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/wizard-sumup/wizard-sumup.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/shared/wizard-sumup/wizard-sumup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/shared/wizard-sumup/wizard-sumup.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/authors-form/authors-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/authors-form/authors-form.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/authors-form/authors-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/authors-form/authors-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/authors-form/authors-form.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/authors-form/authors-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/authors-form/authors-form.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/book-form/book-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/book-form/book-form.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/book-form/book-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/book-form/book-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/book-form/book-form.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/book-form/book-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/book-form/book-form.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/editors-form/editors-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/editors-form/editors-form.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/editors-form/editors-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/editors-form/editors-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/editors-form/editors-form.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/editors-form/editors-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/editors-form/editors-form.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-container.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-container.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-container.component.scss: -------------------------------------------------------------------------------- 1 | .sumup { 2 | background-color: lightgrey; 3 | padding-left: 20px; 4 | } 5 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-container.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-container.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-container.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-step/wizard-step.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-step/wizard-step.component.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-step/wizard-step.component.scss: -------------------------------------------------------------------------------- 1 | li { 2 | margin-right: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-step/wizard-step.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-step/wizard-step.component.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-step/wizard-step.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/app/wizard-step/wizard-step.component.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/enums/cache-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/enums/cache-key.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/interfaces/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/interfaces/steps.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/wizard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/wizard.module.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/app/wizard-container/wizard.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/app/wizard-container/wizard.routes.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/entities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/entities/library/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/entities/library/author.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/entities/library/authors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/entities/library/authors.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/entities/library/book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/entities/library/book.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/entities/library/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/entities/library/editor.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/entities/library/editors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/entities/library/editors.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/entities/library/job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/entities/library/job.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/entities/library/serie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/entities/library/serie.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/environments/environment.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/favicon.ico -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/index.html -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/main.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/mocks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/mocks/books.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/mocks/books.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/mocks/jobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/mocks/jobs.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/models/book.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/models/book.model.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/models/job.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/models/job.model.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/models/user.model.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/polyfills.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/services/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/services/api-mock.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/services/api-mock.exception.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/services/api-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/services/api-mock.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/services/api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/services/api.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/services/api.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/services/jwt-interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/services/jwt-interceptor.spec.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/services/jwt-interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/services/jwt-interceptor.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/services/token.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/services/token.interface.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/services/token.mock.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/services/token.mock.service.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/services/token.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/services/token.service.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/styles.scss -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/src/test.ts -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/tsconfig.app.json -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/tsconfig.json -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/tsconfig.spec.json -------------------------------------------------------------------------------- /assets/js/form-devxpress-angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-angular/tslint.json -------------------------------------------------------------------------------- /assets/js/form-devxpress-vuejs/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-vuejs/App.vue -------------------------------------------------------------------------------- /assets/js/form-devxpress-vuejs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-vuejs/app.js -------------------------------------------------------------------------------- /assets/js/form-devxpress-vuejs/components/Book.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-vuejs/components/Book.vue -------------------------------------------------------------------------------- /assets/js/form-devxpress-vuejs/components/Books.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-vuejs/components/Books.vue -------------------------------------------------------------------------------- /assets/js/form-devxpress-vuejs/services/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-devxpress-vuejs/services/books.js -------------------------------------------------------------------------------- /assets/js/form-quasar-vuejs/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-quasar-vuejs/App.vue -------------------------------------------------------------------------------- /assets/js/form-quasar-vuejs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-quasar-vuejs/app.js -------------------------------------------------------------------------------- /assets/js/form-quasar-vuejs/components/Book.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-quasar-vuejs/components/Book.vue -------------------------------------------------------------------------------- /assets/js/form-quasar-vuejs/components/Books.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-quasar-vuejs/components/Books.vue -------------------------------------------------------------------------------- /assets/js/form-quasar-vuejs/dataTableDefinitions/Books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-quasar-vuejs/dataTableDefinitions/Books.js -------------------------------------------------------------------------------- /assets/js/form-quasar-vuejs/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/form-quasar-vuejs/router/index.js -------------------------------------------------------------------------------- /assets/js/home/app.js: -------------------------------------------------------------------------------- 1 | import {Util, Tab} from 'bootstrap' 2 | -------------------------------------------------------------------------------- /assets/js/lib/apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/apollo.js -------------------------------------------------------------------------------- /assets/js/lib/axiosMiddlewares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/axiosMiddlewares.js -------------------------------------------------------------------------------- /assets/js/lib/csrfToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/csrfToken.js -------------------------------------------------------------------------------- /assets/js/lib/entities/library/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/entities/library/author.js -------------------------------------------------------------------------------- /assets/js/lib/entities/library/authors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/entities/library/authors.js -------------------------------------------------------------------------------- /assets/js/lib/entities/library/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/entities/library/book.js -------------------------------------------------------------------------------- /assets/js/lib/entities/library/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/entities/library/editor.js -------------------------------------------------------------------------------- /assets/js/lib/entities/library/editors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/entities/library/editors.js -------------------------------------------------------------------------------- /assets/js/lib/entities/library/job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/entities/library/job.js -------------------------------------------------------------------------------- /assets/js/lib/entities/library/serie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/entities/library/serie.js -------------------------------------------------------------------------------- /assets/js/lib/interfaces/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/author.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/book.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/editor.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/job.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/loan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/loan.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/ping.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/pingsecured.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/pingsecured.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/projectbookcreation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/projectbookcreation.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/projectbookedition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/projectbookedition.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/reader.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/review.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/review.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/serie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/serie.ts -------------------------------------------------------------------------------- /assets/js/lib/interfaces/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/interfaces/tag.ts -------------------------------------------------------------------------------- /assets/js/lib/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/login.js -------------------------------------------------------------------------------- /assets/js/lib/reviver/library/authorReviver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/reviver/library/authorReviver.js -------------------------------------------------------------------------------- /assets/js/lib/reviver/library/authorsReviver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/reviver/library/authorsReviver.js -------------------------------------------------------------------------------- /assets/js/lib/reviver/library/bookReviver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/reviver/library/bookReviver.js -------------------------------------------------------------------------------- /assets/js/lib/reviver/library/editorReviver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/reviver/library/editorReviver.js -------------------------------------------------------------------------------- /assets/js/lib/reviver/library/editorsReviver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/reviver/library/editorsReviver.js -------------------------------------------------------------------------------- /assets/js/lib/reviver/library/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/reviver/library/index.js -------------------------------------------------------------------------------- /assets/js/lib/reviver/library/jobReviver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/reviver/library/jobReviver.js -------------------------------------------------------------------------------- /assets/js/lib/reviver/library/serieReviver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/reviver/library/serieReviver.js -------------------------------------------------------------------------------- /assets/js/lib/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/lib/service-worker.js -------------------------------------------------------------------------------- /assets/js/login/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/login/App.vue -------------------------------------------------------------------------------- /assets/js/login/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/login/app.js -------------------------------------------------------------------------------- /assets/js/login/components/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/login/components/Login.vue -------------------------------------------------------------------------------- /assets/js/login/components/Secured.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/login/components/Secured.vue -------------------------------------------------------------------------------- /assets/js/login/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/login/router/index.js -------------------------------------------------------------------------------- /assets/js/quasar/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/quasar/App.vue -------------------------------------------------------------------------------- /assets/js/quasar/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/quasar/app.js -------------------------------------------------------------------------------- /assets/js/quasar/components/Movie.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/quasar/components/Movie.vue -------------------------------------------------------------------------------- /assets/js/quasar/components/Movies.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/quasar/components/Movies.vue -------------------------------------------------------------------------------- /assets/js/quasar/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/quasar/router/index.js -------------------------------------------------------------------------------- /assets/js/vuejs/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/vuejs/App.vue -------------------------------------------------------------------------------- /assets/js/vuejs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/vuejs/app.js -------------------------------------------------------------------------------- /assets/js/vuejs/components/Loader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/vuejs/components/Loader.vue -------------------------------------------------------------------------------- /assets/js/vuejs/components/Movie.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/vuejs/components/Movie.vue -------------------------------------------------------------------------------- /assets/js/vuejs/components/Movies.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/vuejs/components/Movies.vue -------------------------------------------------------------------------------- /assets/js/vuejs/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/vuejs/router/index.js -------------------------------------------------------------------------------- /assets/js/vuejs/tests/DebugKarma.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/vuejs/tests/DebugKarma.spec.js -------------------------------------------------------------------------------- /assets/js/vuejs/tests/Movie.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/vuejs/tests/Movie.spec.js -------------------------------------------------------------------------------- /assets/js/vuejs/tests/Movies.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/vuejs/tests/Movies.spec.js -------------------------------------------------------------------------------- /assets/js/vuejs/tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/assets/js/vuejs/tests/index.js -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/bin/console -------------------------------------------------------------------------------- /bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/bin/phpunit -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/api_platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/api_platform.yaml -------------------------------------------------------------------------------- /config/packages/assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/assets.yaml -------------------------------------------------------------------------------- /config/packages/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/cache.yaml -------------------------------------------------------------------------------- /config/packages/dev/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/dev/monolog.yaml -------------------------------------------------------------------------------- /config/packages/dev/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/dev/routing.yaml -------------------------------------------------------------------------------- /config/packages/dev/security_checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/dev/security_checker.yaml -------------------------------------------------------------------------------- /config/packages/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /config/packages/easy_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/easy_admin.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/lexik_jwt_authentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/lexik_jwt_authentication.yaml -------------------------------------------------------------------------------- /config/packages/nelmio_cors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/nelmio_cors.yaml -------------------------------------------------------------------------------- /config/packages/prod/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/prod/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/prod/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/prod/monolog.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/security.yaml -------------------------------------------------------------------------------- /config/packages/security_checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/security_checker.yaml -------------------------------------------------------------------------------- /config/packages/sensio_framework_extra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/sensio_framework_extra.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/test/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/test/monolog.yaml -------------------------------------------------------------------------------- /config/packages/test/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/test/routing.yaml -------------------------------------------------------------------------------- /config/packages/test/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/test/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/translation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/translation.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/packages/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/validator.yaml -------------------------------------------------------------------------------- /config/packages/webpack_encore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/packages/webpack_encore.yaml -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/routes/annotations.yaml -------------------------------------------------------------------------------- /config/routes/api_platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/routes/api_platform.yaml -------------------------------------------------------------------------------- /config/routes/dev/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/routes/dev/twig.yaml -------------------------------------------------------------------------------- /config/routes/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/routes/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/routes/easy_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/routes/easy_admin.yaml -------------------------------------------------------------------------------- /config/routes/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/routes/project.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/config/services.yaml -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/karma.conf.js -------------------------------------------------------------------------------- /karma.webpack.config.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/karma.webpack.config.babel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/android-icon-144x144.png -------------------------------------------------------------------------------- /public/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/android-icon-192x192.png -------------------------------------------------------------------------------- /public/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/android-icon-36x36.png -------------------------------------------------------------------------------- /public/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/android-icon-48x48.png -------------------------------------------------------------------------------- /public/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/android-icon-72x72.png -------------------------------------------------------------------------------- /public/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/android-icon-96x96.png -------------------------------------------------------------------------------- /public/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/apple-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/db-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/img/db-model.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/index.php -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/public/ms-icon-70x70.png -------------------------------------------------------------------------------- /src/Action/BookSpecial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Action/BookSpecial.php -------------------------------------------------------------------------------- /src/Api/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Api/Config.php -------------------------------------------------------------------------------- /src/Command/DumpJsConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Command/DumpJsConfig.php -------------------------------------------------------------------------------- /src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Controller/Api/TokenController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Controller/Api/TokenController.php -------------------------------------------------------------------------------- /src/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Controller/DefaultController.php -------------------------------------------------------------------------------- /src/Controller/FormDevXpressAngularController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Controller/FormDevXpressAngularController.php -------------------------------------------------------------------------------- /src/Controller/HelloController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Controller/HelloController.php -------------------------------------------------------------------------------- /src/Controller/HttpController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Controller/HttpController.php -------------------------------------------------------------------------------- /src/Controller/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Controller/LoginController.php -------------------------------------------------------------------------------- /src/Controller/LoginJsonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Controller/LoginJsonController.php -------------------------------------------------------------------------------- /src/Controller/LoginJwtController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Controller/LoginJwtController.php -------------------------------------------------------------------------------- /src/Controller/SimpleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Controller/SimpleController.php -------------------------------------------------------------------------------- /src/DataFixtures/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DataFixtures/ConnectionFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/DataFixtures/ConnectionFixtures.php -------------------------------------------------------------------------------- /src/DataFixtures/Library/AppFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/DataFixtures/Library/AppFixtures.php -------------------------------------------------------------------------------- /src/DataProvider/PingDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/DataProvider/PingDataProvider.php -------------------------------------------------------------------------------- /src/DataProvider/PingSecuredDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/DataProvider/PingSecuredDataProvider.php -------------------------------------------------------------------------------- /src/DataProvider/TagDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/DataProvider/TagDataProvider.php -------------------------------------------------------------------------------- /src/Doctrine/Library/Extension/UserExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Doctrine/Library/Extension/UserExtension.php -------------------------------------------------------------------------------- /src/Doctrine/Migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Doctrine/Migrations/Version20210112234122.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Doctrine/Migrations/Version20210112234122.php -------------------------------------------------------------------------------- /src/Domain/Specification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Domain/Specification.php -------------------------------------------------------------------------------- /src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Entity/Library/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/Author.php -------------------------------------------------------------------------------- /src/Entity/Library/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/Book.php -------------------------------------------------------------------------------- /src/Entity/Library/Editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/Editor.php -------------------------------------------------------------------------------- /src/Entity/Library/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/Job.php -------------------------------------------------------------------------------- /src/Entity/Library/LibraryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/LibraryInterface.php -------------------------------------------------------------------------------- /src/Entity/Library/Loan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/Loan.php -------------------------------------------------------------------------------- /src/Entity/Library/ProjectBookCreation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/ProjectBookCreation.php -------------------------------------------------------------------------------- /src/Entity/Library/ProjectBookEdition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/ProjectBookEdition.php -------------------------------------------------------------------------------- /src/Entity/Library/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/Reader.php -------------------------------------------------------------------------------- /src/Entity/Library/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/Review.php -------------------------------------------------------------------------------- /src/Entity/Library/Serie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/Serie.php -------------------------------------------------------------------------------- /src/Entity/Library/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Library/Tag.php -------------------------------------------------------------------------------- /src/Entity/Ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/Ping.php -------------------------------------------------------------------------------- /src/Entity/PingSecured.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Entity/PingSecured.php -------------------------------------------------------------------------------- /src/EventListener/AuthenticationFailureListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/EventListener/AuthenticationFailureListener.php -------------------------------------------------------------------------------- /src/EventListener/AuthenticationSuccessListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/EventListener/AuthenticationSuccessListener.php -------------------------------------------------------------------------------- /src/EventListener/JWTAuthenticatedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/EventListener/JWTAuthenticatedListener.php -------------------------------------------------------------------------------- /src/EventListener/JWTCreatedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/EventListener/JWTCreatedListener.php -------------------------------------------------------------------------------- /src/EventListener/JWTDecodedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/EventListener/JWTDecodedListener.php -------------------------------------------------------------------------------- /src/EventListener/JWTInvalidListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/EventListener/JWTInvalidListener.php -------------------------------------------------------------------------------- /src/EventSubscriber/Api/UserMeSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/EventSubscriber/Api/UserMeSubscriber.php -------------------------------------------------------------------------------- /src/EventSubscriber/BookSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/EventSubscriber/BookSubscriber.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Repository/Library/BookRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Repository/Library/BookRepository.php -------------------------------------------------------------------------------- /src/Repository/Library/LoanRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Repository/Library/LoanRepository.php -------------------------------------------------------------------------------- /src/Repository/Library/ReaderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Repository/Library/ReaderRepository.php -------------------------------------------------------------------------------- /src/Request/ParamConverter/Library/AuthorConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Request/ParamConverter/Library/AuthorConverter.php -------------------------------------------------------------------------------- /src/Request/ParamConverter/Library/BookConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Request/ParamConverter/Library/BookConverter.php -------------------------------------------------------------------------------- /src/Request/ParamConverter/Library/EditorConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Request/ParamConverter/Library/EditorConverter.php -------------------------------------------------------------------------------- /src/Request/ParamConverter/Library/JobConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Request/ParamConverter/Library/JobConverter.php -------------------------------------------------------------------------------- /src/Request/ParamConverter/Library/ProjectBookCreationConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Request/ParamConverter/Library/ProjectBookCreationConverter.php -------------------------------------------------------------------------------- /src/Request/ParamConverter/Library/ProjectBookEditionConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Request/ParamConverter/Library/ProjectBookEditionConverter.php -------------------------------------------------------------------------------- /src/Request/ParamConverter/Library/SerieConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Request/ParamConverter/Library/SerieConverter.php -------------------------------------------------------------------------------- /src/Request/ParamConverter/Library/TagConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Request/ParamConverter/Library/TagConverter.php -------------------------------------------------------------------------------- /src/Security/CsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Security/CsrfToken.php -------------------------------------------------------------------------------- /src/Security/CsrfTokenAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Security/CsrfTokenAuthenticator.php -------------------------------------------------------------------------------- /src/Security/JwtTokenTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Security/JwtTokenTools.php -------------------------------------------------------------------------------- /src/Swagger/SwaggerDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Swagger/SwaggerDecorator.php -------------------------------------------------------------------------------- /src/Tools/AngularCli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Tools/AngularCli.php -------------------------------------------------------------------------------- /src/Validator/Constraints/HasOneOfUserOrNameNotNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Validator/Constraints/HasOneOfUserOrNameNotNull.php -------------------------------------------------------------------------------- /src/Validator/Constraints/HasOneOfUserOrNameNotNullValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/src/Validator/Constraints/HasOneOfUserOrNameNotNullValidator.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/symfony.lock -------------------------------------------------------------------------------- /templates/admin.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/templates/admin.html.twig -------------------------------------------------------------------------------- /templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/templates/base.html.twig -------------------------------------------------------------------------------- /templates/command/config.js.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/templates/command/config.js.twig -------------------------------------------------------------------------------- /templates/default/menu.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/templates/default/menu.html.twig -------------------------------------------------------------------------------- /templates/form-devxpress-angular/app.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/templates/form-devxpress-angular/app.html.twig -------------------------------------------------------------------------------- /templates/form-devxpress-vuejs/app.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'spa-devextrem.html.twig' %} 2 | -------------------------------------------------------------------------------- /templates/form-quasar-vuejs/app.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'spa-quasar.html.twig' %} 2 | -------------------------------------------------------------------------------- /templates/hello/world.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/templates/hello/world.html.twig -------------------------------------------------------------------------------- /templates/login/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/templates/login/index.html.twig -------------------------------------------------------------------------------- /templates/login/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/templates/login/login.html.twig -------------------------------------------------------------------------------- /templates/quasar/app.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'spa-quasar.html.twig' %} 2 | -------------------------------------------------------------------------------- /templates/spa-devextrem.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/templates/spa-devextrem.html.twig -------------------------------------------------------------------------------- /templates/spa-quasar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/templates/spa-quasar.html.twig -------------------------------------------------------------------------------- /templates/spa.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/templates/spa.html.twig -------------------------------------------------------------------------------- /templates/vuejs/app.html.twig: -------------------------------------------------------------------------------- 1 | {% extends 'spa.html.twig' %} 2 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Api/ApiDocTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Api/ApiDocTest.php -------------------------------------------------------------------------------- /tests/Command/DumpJsConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Command/DumpJsConfigTest.php -------------------------------------------------------------------------------- /tests/Common/ApiAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Common/ApiAbstract.php -------------------------------------------------------------------------------- /tests/Common/JsonBook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Common/JsonBook.php -------------------------------------------------------------------------------- /tests/Common/PantherToolsAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Common/PantherToolsAbstract.php -------------------------------------------------------------------------------- /tests/Common/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Common/TestCase.php -------------------------------------------------------------------------------- /tests/Common/WebPagesAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Common/WebPagesAbstract.php -------------------------------------------------------------------------------- /tests/Controller/Api/ApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Controller/Api/ApiTest.php -------------------------------------------------------------------------------- /tests/Controller/BasicControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Controller/BasicControllerTest.php -------------------------------------------------------------------------------- /tests/Controller/DefaultControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Controller/DefaultControllerTest.php -------------------------------------------------------------------------------- /tests/Controller/HTTP200WebPagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Controller/HTTP200WebPagesTest.php -------------------------------------------------------------------------------- /tests/Controller/LoginJsonControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Controller/LoginJsonControllerTest.php -------------------------------------------------------------------------------- /tests/Controller/LoginJsonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Controller/LoginJsonTest.php -------------------------------------------------------------------------------- /tests/Controller/LoginJwtTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Controller/LoginJwtTest.php -------------------------------------------------------------------------------- /tests/Controller/LoginPhpControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Controller/LoginPhpControllerTest.php -------------------------------------------------------------------------------- /tests/Entity/Library/BookTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Entity/Library/BookTest.php -------------------------------------------------------------------------------- /tests/Entity/Library/LoanTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Entity/Library/LoanTest.php -------------------------------------------------------------------------------- /tests/Entity/PingSecuredTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Entity/PingSecuredTest.php -------------------------------------------------------------------------------- /tests/Entity/PingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Entity/PingTest.php -------------------------------------------------------------------------------- /tests/Normalization/ApiPlatformCustomRoutesWithParamConverterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Normalization/ApiPlatformCustomRoutesWithParamConverterTest.php -------------------------------------------------------------------------------- /tests/Normalization/ApiPlatformDenormalizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Normalization/ApiPlatformDenormalizerTest.php -------------------------------------------------------------------------------- /tests/Repository/LoanRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Repository/LoanRepositoryTest.php -------------------------------------------------------------------------------- /tests/Repository/ReaderRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/Repository/ReaderRepositoryTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixtures/config/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/data/fixtures.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/var/data/fixtures.db -------------------------------------------------------------------------------- /var/jwt-test/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/var/jwt-test/private.pem -------------------------------------------------------------------------------- /var/jwt-test/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/var/jwt-test/public.pem -------------------------------------------------------------------------------- /var/tests/karma/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/travis/jwt-test/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/var/travis/jwt-test/private.pem -------------------------------------------------------------------------------- /var/travis/jwt-test/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/var/travis/jwt-test/public.pem -------------------------------------------------------------------------------- /var/travis/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/var/travis/nginx.conf -------------------------------------------------------------------------------- /webpack.config.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/webpack.config.babel.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rebolon/php-sf-flex-webpack-encore-vuejs/HEAD/yarn.lock --------------------------------------------------------------------------------