minetest/serverinterface-bundle

Contao 4 Minetest ServerInterface Bundle

Installs: 16

Dependents: 0

Suggesters: 0

Security: 0

Type:contao-bundle

v1.0.0 2018-06-09 15:23 UTC

This package is not auto-updated.

Last update: 2020-08-12 15:39:19 UTC


README

assume you are in the root directory of contao you'll have to perform the following commands prior using it:

$ vi composer.json

at the section "require" you'll need to add the following

"require": {
        ...
        "minetest/serverinterface-bundle": "^1.0"
    },
$ composer update

 --- ------------------------------- ------------------ 
      Bundle                          Method / Error    
 --- ------------------------------- ------------------ 
  ✔   ContaoCoreBundle                relative symlink  
  ✔   ContaoCommentsBundle            relative symlink  
  ✔   ContaoNewsletterBundle          relative symlink  
  ✔   MinetestServerInterfaceBundle   relative symlink  
 --- ------------------------------- ------------------ 

                                                                                
 [OK] All assets were successfully installed.                                   

you should see the following structure in "vendor" directory

minetest
└── serverinterface-bundle
    ├── src
    │   ├── ContaoManager
    │   │   └── Plugin.php
    │   ├── DependencyInjection
    │   │   └── MinetestServerInterfaceExtension.php
    │   ├── EventListener
    │   │   └── FileMetaInformationListener.php
    │   ├── Resources
    │   │   ├── config
    │   │   │   └── listener.yml
    │   │   ├── contao
    │   │   │   ├── classes
    │   │   │   │   └── MinetestVectorEditor.php
    │   │   │   ├── config
    │   │   │   │   ├── autoload.ini
    │   │   │   │   ├── autoload.php
    │   │   │   │   ├── config.php
    │   │   │   │   └── ide_compat.php
    │   │   │   ├── dca
    │   │   │   │   ├── tl_minetest.php
    │   │   │   │   ├── tl_mtgroup.php
    │   │   │   │   ├── tl_mtrights.php
    │   │   │   │   ├── tl_mtusers.php
    │   │   │   │   ├── tl_mtvectorlayers.php
    │   │   │   │   └── tl_mtvectors.php
    │   │   │   ├── languages
    │   │   │   │   ├── de
    │   │   │   │   │   ├── default.xlf
    │   │   │   │   │   ├── modules.xlf
    │   │   │   │   │   └── tl_layout.xlf
    │   │   │   │   └── en
    │   │   │   │       ├── default.xlf
    │   │   │   │       ├── modules.xlf
    │   │   │   │       └── tl_layout.xlf
    │   │   │   ├── modules
    │   │   │   │   ├── APIopenlayerJSON.php
    │   │   │   │   ├── ModuleMinetestMap.php
    │   │   │   │   ├── SimpleAjax.php
    │   │   │   │   └── json.php
    │   │   │   └── templates
    │   │   │       ├── fe_page.html5
    │   │   │       └── footer.html
    │   │   └── public
    │   │       ├── css
    │   │       │   ├── foundation-flex.css
    │   │       │   ├── foundation-flex.min.css
    │   │       │   ├── foundation-rtl.css
    │   │       │   ├── foundation-rtl.min.css
    │   │       │   ├── foundation.css
    │   │       │   └── foundation.min.css
    │   │       ├── img
    │   │       │   ├── fi-bookmark.svg
    │   │       │   ├── fi-home.svg
    │   │       │   ├── fi-info.svg
    │   │       │   ├── fi-like.svg
    │   │       │   └── fi-mail.svg
    │   │       ├── js
    │   │       │   ├── vendor
    │   │       │   │   ├── jquery.min.js
    │   │       │   │   ├── modernizr.js
    │   │       │   │   └── what-input.min.js
    │   │       │   ├── foundation.js
    │   │       │   └── foundation.min.js
    │   │       └── mt_1.jpeg
    │   └── MinetestServerInterfaceBundle.php
    ├── README.md
    ├── appveyor.yml
    ├── composer.json
    └── phpunit.xml.dist

edit app/config/config.yml for doctrine hook:

doctrine:
    dbal:
        default_connection: default
        connections:
            default:
                driver: pdo_mysql
                host: "%database_host%"
                port: "%database_port%"
                user: "%database_user%"
                password: "%database_password%"
                dbname: "%database_name%"
                charset: UTF8
                mapping_types:
                    enum: string