simonecosci / wtf-game
The DOM Game made with kendo and Laravel Framework.
0.0.3
2019-05-02 14:57 UTC
Requires
- php: >=7.1.3
- google/recaptcha: ~1.1
- laravel/framework: 5.7.*
- laravel/socialite: ^3.0
- laravel/tinker: ~1.0
Requires (Dev)
- filp/whoops: ~2.0
- fzaninotto/faker: ~1.4
- mockery/mockery: 0.9.*
- phpunit/phpunit: ~7.0
This package is auto-updated.
Last update: 2026-05-29 01:18:24 UTC
README
About this game
WTF-Game is a simple browser based game built with kendo-ui using dom nodes. It means that no canvas is required and all game objeicts are simple tag elements
DOM Browser game
Installation
Cloning the git
git clone https://github.com/simonecosci/WTF-Game.git <install-directory>
cd <install-directory>
composer install
npm install
Via Composer
composer create-project simonecosci/WTF-Game <install-directory>
cd <install-directory>
npm install
Database
Creata a new database
mysql -uroot -p
mysql> create database yourDatabaseName;
mysql> quit;
Then cp .env.example .env and update your database creds.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=yourDatabaseName
DB_USERNAME=root
DB_PASSWORD=root
run the migrations with seed
php artisan migrate
You can now run the web server
php artisan serve
or configure a virtualhost in your web server config
<VirtualHost *:80>
ServerName localhost
DocumentRoot "/<install-directory>/public"
<Directory "/<install-directory>/public/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
Navigate http://localhost/ and login
License
The WTF-Game is open-sourced software licensed under the MIT license.