2017 © Pedro Peláez
 

library framepress

image

framepress/framepress

  • Saturday, January 13, 2018
  • by grayfolk
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1 Installations
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Framepress

Framework for Wordpress themes&plugins development., (*1)

Installation

  • Go to theme or plugin folder and execute command:
    php composer.phar create-project Framepress/framepress-app app, (*2)

  • Add following code to start of theme functions.php or plugin main file:, (*3)

defined ( 'DS' ) or define ( 'DS', DIRECTORY_SEPARATOR );
$loader = require_once implode ( DS, [ 
        __DIR__,
        'app',
        'vendor',
        'autoload.php' 
] );

$config = require_once implode ( DS, [ 
        __DIR__,
        'app',
        'config.php' 
] );
new \Framepress\Framepress ( $config );

Basic usage

The Versions

13/01 2018

dev-master

9999999-dev https://github.com/Framepress/framepress

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Vladymyr Protsenko