Download the PHP package codebjorn/loki without Composer

On this page you can find all versions of the php package codebjorn/loki. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package loki

Loki, WordPress Theme Boilerplate

GitHub release Generic badge

Loki is WordPress Theme Boilerplate using as a base Mjolnir Framework

If you think this approach is not working, please open an issue and let's discuss :)

Pre-Requirements

Before we proceed further, I suggest you to read documentation for:

  1. Mjolnir Framework.
  2. Laravel Blade
  3. Laravel Mix

Requirements

Requirements for this boilerplate are:

Installation

You can install framework via composer:

Structure

Structure of boilerplate is:

How all work

Add service into hook

  1. Create a new namespace in app folder and add new php service class
  2. Resolve this service using Service Provider in app/Providers folder, you can add it to AppServiceProvider.php or create a new provider and add it to config/app.php to load. More info about service providers
  3. After resolving a service you can inject it in another service or add it into hook in hooks folder, for example action hook:

Work with WordPress templates

By default, all WordPress templates are stored in templates folder, you can change folder or disable this feature in config/theme.php.

To use templates and laravel blade engine we can use templates as kind of controller that will store all data that we need but render will make template engine, for example:

  1. Let's say we want to create/update template single.php, we create a new file templates/single.php

  2. We create blade file in resources/views/single.blade.php

Create Gutenberg Blocks

All blocks are stored in blocks folder. For creating a new block we will need:

  1. Create a folder inside blocks folder
  2. Create index.jsx in your new folder

  3. Create all components inside components folder:
  1. Create data folder and new attributes.json file:

Also, you can use data folder to store and other json folder that can be used in you block.

  1. Create view folder where will be stored blade templates for your block, default one is block.blade.php:

  2. Import you block in main blocks.js
  3. Add block in main blocks.php using block facade:

Testing

//TODO

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of loki with dependencies

PHP Build Version
Package Version
Requires codebjorn/mjolnir Version ^0.1.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package codebjorn/loki contains the following files

Loading the files please wait ....