cvar1984 / slim
slim 4 sekeleton with parallax
Fund package maintenance!
paypal.me/Cvar1984
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:CSS
Type:application
Requires
- illuminate/database: ^7.8
- odan/twig-assets: ^3.0
- php-di/php-di: ^6.0
- selective/config: ^0.2.0
- slim/psr7: ^1
- slim/slim: ^4.4
- slim/twig-view: ^3.1
Requires (Dev)
- phpunit/phpunit: ^8.4
This package is auto-updated.
Last update: 2020-06-19 11:37:08 UTC
README
Slim 4 skeleton with basic parallax homepages
demo
install to webroot
clone to your htdocs
git clone <link>
move everything to /var/www/html (webroot)
then go to /var/www/html
and install depencies
composer install --no-dev yarn install
edit /var/www/html/app/middleware.php
comment this
// $app->setBasepath();
start your webservice like apache or something like
php -S 127.0.0.1:8080 -t /var/www/html/public
install to webroot/custom
clone to your htdocs
git clone <link>
move everything to /var/www/html/custom (webroot)
then go to /var/www/html/custom
and install depencies
composer install --no-dev yarn install
edit /var/www/html/app/middleware.php
do this
$app->setBasepath('/custom');
start your webservice like apache or something like
php -S 127.0.0.1:8080 -t /var/www/html/custom/public