Compare commits

...

2 Commits

Author SHA1 Message Date
b9dc605924 Readme 2020-12-15 18:07:53 -03:00
c8d122ce3f jQuery added 2020-12-15 18:07:47 -03:00
2 changed files with 18 additions and 0 deletions

17
Readme.md Normal file
View File

@ -0,0 +1,17 @@
# ProVM Basic Web Project
Basic structure for files and folders common for every web project.
## Includes
+ [Slim](http://slimframework.com/)
+ [Nyholm/Psr7](https://github.com/Nyholm/psr7)
+ [Nyholm/Psr7-Server](https://github.com/Nyholm/psr7-server)
+ [PHP-DI/Slim-Bridge](https://github.com/PHP-DI/Slim-Bridge)
+ [Slim-Blade](https://github.com/rubellum/Slim-Blade-View)
+ [Slim-Whoops](https://github.com/zeuxisoo/php-slim-whoops)
+ [PHP dotenv](https://github.com/vlucas/phpdotenv)
+ [jQuery](https://jquery.com/)
+ [Fomantic-UI](https://github.com/fomantic/Fomantic-UI)
+ [PHPUnit](https://phpunit.de/)
+ [Kint](https://kint-php.github.io/kint/)

View File

@ -41,6 +41,7 @@ return [
'https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.7/themes/default/assets/fonts/brand-icons.woff2'
],
'scripts' => [
'<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>',
'<script src="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.7/semantic.min.js" integrity="sha512-1Nyd5H4Aad+OyvVfUOkO/jWPCrEvYIsQENdnVXt1+Jjc4NoJw28nyRdrpOCyFH4uvR3JmH/5WmfX1MJk2ZlhgQ==" crossorigin="anonymous"></script>'
]
];