├── .gitignore ├── .htaccess ├── Docs ├── Banco de dados │ ├── mini-framework.sql │ └── tabela.JPG └── bootstrap │ └── leiame.txt ├── README.md ├── app ├── classes │ └── Input.php ├── config │ ├── Router.php │ └── config.php ├── controller │ ├── MessageController.php │ ├── PagesController.php │ └── ProdutoController.php ├── core │ ├── Controller.php │ ├── Model.php │ └── RouterCore.php ├── functions │ └── functions.php ├── model │ └── ProdutoModel.php └── view │ ├── contato │ └── main.twig.php │ ├── home │ └── main.twig.php │ ├── message │ └── main.twig.php │ ├── partials │ ├── body.twig.php │ ├── header.twig.php │ └── message.twig.php │ ├── produto │ ├── main.twig.php │ ├── novo.twig.php │ └── pesquisa.twig.php │ └── quem-somos │ └── main.twig.php ├── composer.json └── public ├── .htaccess ├── css └── style.css ├── img └── ttestet ├── index.php └── vendor └── bootstrap └── bootstrap.min.css /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/.htaccess -------------------------------------------------------------------------------- /Docs/Banco de dados/mini-framework.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/Docs/Banco de dados/mini-framework.sql -------------------------------------------------------------------------------- /Docs/Banco de dados/tabela.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/Docs/Banco de dados/tabela.JPG -------------------------------------------------------------------------------- /Docs/bootstrap/leiame.txt: -------------------------------------------------------------------------------- 1 | https://bootswatch.com/lux/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/README.md -------------------------------------------------------------------------------- /app/classes/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/classes/Input.php -------------------------------------------------------------------------------- /app/config/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/config/Router.php -------------------------------------------------------------------------------- /app/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/config/config.php -------------------------------------------------------------------------------- /app/controller/MessageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/controller/MessageController.php -------------------------------------------------------------------------------- /app/controller/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/controller/PagesController.php -------------------------------------------------------------------------------- /app/controller/ProdutoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/controller/ProdutoController.php -------------------------------------------------------------------------------- /app/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/core/Controller.php -------------------------------------------------------------------------------- /app/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/core/Model.php -------------------------------------------------------------------------------- /app/core/RouterCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/core/RouterCore.php -------------------------------------------------------------------------------- /app/functions/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/functions/functions.php -------------------------------------------------------------------------------- /app/model/ProdutoModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/model/ProdutoModel.php -------------------------------------------------------------------------------- /app/view/contato/main.twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/view/contato/main.twig.php -------------------------------------------------------------------------------- /app/view/home/main.twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/view/home/main.twig.php -------------------------------------------------------------------------------- /app/view/message/main.twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/view/message/main.twig.php -------------------------------------------------------------------------------- /app/view/partials/body.twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/view/partials/body.twig.php -------------------------------------------------------------------------------- /app/view/partials/header.twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/view/partials/header.twig.php -------------------------------------------------------------------------------- /app/view/partials/message.twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/view/partials/message.twig.php -------------------------------------------------------------------------------- /app/view/produto/main.twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/view/produto/main.twig.php -------------------------------------------------------------------------------- /app/view/produto/novo.twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/view/produto/novo.twig.php -------------------------------------------------------------------------------- /app/view/produto/pesquisa.twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/view/produto/pesquisa.twig.php -------------------------------------------------------------------------------- /app/view/quem-somos/main.twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/app/view/quem-somos/main.twig.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/composer.json -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/public/css/style.css -------------------------------------------------------------------------------- /public/img/ttestet: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/public/index.php -------------------------------------------------------------------------------- /public/vendor/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satellasoft/mini-framework-mvc-php/HEAD/public/vendor/bootstrap/bootstrap.min.css --------------------------------------------------------------------------------