├── .editorconfig ├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── config └── param.yml.dist ├── package.json ├── script ├── downloadComposer.php ├── secureModalPass.js └── setup.js ├── src ├── Application.php ├── BaseController.php ├── Controller │ ├── IndexController.php │ └── SecurityController.php ├── Router.php ├── Util │ ├── Downloader.php │ └── Mega.php └── js │ ├── Downloader.js │ ├── ModalSecure.js │ └── Utils.js ├── views ├── base │ ├── base.twig │ └── error.twig └── index │ ├── index.twig │ └── modalSecure.twig ├── web ├── .htaccess ├── css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── index.css │ └── main.css ├── img │ └── logo │ │ ├── favicon.ico │ │ ├── horizontal.png │ │ ├── icon.png │ │ ├── logo.png │ │ └── vertical.png ├── index.php ├── js │ ├── downloader.js │ └── downloader.min.js └── svg │ ├── loader.svg │ └── sprite.min.svg ├── webpack.config.dev.js └── webpack.config.prod.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/composer.lock -------------------------------------------------------------------------------- /config/param.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/config/param.yml.dist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/package.json -------------------------------------------------------------------------------- /script/downloadComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/script/downloadComposer.php -------------------------------------------------------------------------------- /script/secureModalPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/script/secureModalPass.js -------------------------------------------------------------------------------- /script/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/script/setup.js -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/src/BaseController.php -------------------------------------------------------------------------------- /src/Controller/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/src/Controller/IndexController.php -------------------------------------------------------------------------------- /src/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/src/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/src/Router.php -------------------------------------------------------------------------------- /src/Util/Downloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/src/Util/Downloader.php -------------------------------------------------------------------------------- /src/Util/Mega.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/src/Util/Mega.php -------------------------------------------------------------------------------- /src/js/Downloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/src/js/Downloader.js -------------------------------------------------------------------------------- /src/js/ModalSecure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/src/js/ModalSecure.js -------------------------------------------------------------------------------- /src/js/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/src/js/Utils.js -------------------------------------------------------------------------------- /views/base/base.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/views/base/base.twig -------------------------------------------------------------------------------- /views/base/error.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/views/base/error.twig -------------------------------------------------------------------------------- /views/index/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/views/index/index.twig -------------------------------------------------------------------------------- /views/index/modalSecure.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/views/index/modalSecure.twig -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /web/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/css/index.css -------------------------------------------------------------------------------- /web/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/css/main.css -------------------------------------------------------------------------------- /web/img/logo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/img/logo/favicon.ico -------------------------------------------------------------------------------- /web/img/logo/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/img/logo/horizontal.png -------------------------------------------------------------------------------- /web/img/logo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/img/logo/icon.png -------------------------------------------------------------------------------- /web/img/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/img/logo/logo.png -------------------------------------------------------------------------------- /web/img/logo/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/img/logo/vertical.png -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/index.php -------------------------------------------------------------------------------- /web/js/downloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/js/downloader.js -------------------------------------------------------------------------------- /web/js/downloader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/js/downloader.min.js -------------------------------------------------------------------------------- /web/svg/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/svg/loader.svg -------------------------------------------------------------------------------- /web/svg/sprite.min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/web/svg/sprite.min.svg -------------------------------------------------------------------------------- /webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/webpack.config.dev.js -------------------------------------------------------------------------------- /webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strikesoft/Downloader/HEAD/webpack.config.prod.js --------------------------------------------------------------------------------