Download the PHP package sbstjn/sliphp without Composer

On this page you can find all versions of the php package sbstjn/sliphp. 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 sliphp

Circle CI Travis CI Scrutinizer
Scrutinizer Code Quality Scrutinizer Code Coverage
Packagist MIT License

Atomic view and layout engine for PHP 5.4 and above.

Usage

To use SliPHP please configure the global constant SLIPHP_VIEWS and set it to the directory where your views, layouts and blocks are located.

Installation

Basics

As mentioned above, just configure the needed constant and you are good to go …

The folder structure inside your SLIPHP_VIEWS path should look something like this:

Views

It's that simple to render a view from your SLIPHP_VIEWS folder:

Your index.php could look like this:

Layouts

Of course you want to have a separate file for your layout, which will be wrapped around your index view:

Your layouts/default.ph file could look like this:

As you might guess, the content of your view gehts inserted inside the body tag. Woho, Magic …

Blocks

For sure SliPHP supports loading single files and have them rendered into your views and layouts. We call them blocks, just use the ->block() method for loading them:

Your blocks/header.php could look like this:

Blocks can load other blocks as well, so feel free to move your styles and script to separate files for example:

Apply

If you want to apply a function or a list of functions to a data object, you can use the $view->apply function to modify your data:

Will be rendered into:

Helper

There is built in support for custom helper functions in SliPHP, just define your helpers like this:

And call them inside your views with:

You can for example use this to easily include your stylesheets:

Locals

Of course you can pass data to your views, SliPHP calls them Locals

You can access all your data using the $data variable inside your layouts, views and of course blocks:

It's also possible to share locals between your layout and your views:

Inside your index view you can now easily access to layout's locals:

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

Contributing

Please see CONDUCT 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 sliphp with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
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 sbstjn/sliphp contains the following files

Loading the files please wait ....