Download the PHP package reyjhon/simple-php without Composer

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

The Simply PHP Framework

Latest Stable Version Total Downloads License Monthly Downloads

About Simple

The Simple PHP is lightweight web application micro framework.

FULL DOCUMENTATION

https://simply-docs.herokuapp.com

Simple PHP dependencies

Coding Style Guide

You must follow this standard: https://www.php-fig.org/psr/psr-2/ HAPPY CODING :)

Installation

Via Composer: (recommended)

VIEWS

This micro framework uses twig for the template engine. But it is OPTIONAL. Yes, you can use the plain html only without using twig.

When rendering a view: (uses twig)

when a view is inside a folder, include the folder then view name separated by period

Please read the twig documentation for more information: https://twig.symfony.com/doc/2.x/

NOTE:

When rendering normal view: (plain html)

Pass a third parameter normal to recognize it that you want to render without template engine.

NOTE:

restrict controller to authenticated users only

add the Action suffix into your method name.

example: if you have a method index in your controller:

Make it:

Then add this to 'App/Controllers/Controller.php':

And create a new method before in Controller.php like this:

The un-authenticated user tries to access your restricted controller will be redirected to login page.

Using auth in views

If the user is authenticated the user variable is not null.:

Validation

Read documentation at https://simply-docs.herokuapp.com/documentation/v1/lib/validation

File Upload (on development)

Using the file upload object in controller

Example in your store action:

Available Methods:

Simply Cryptography

Simply Framework offers encryption library using a KEY. This uses defuse/php-encryption you can read more at https://github.com/defuse/php-encryption

Before using encryption please run this command ONCE:

Encryption

To encryp a text or string:

Then you can use is as:

Decryption

To decrypt a text or string:

Then you can use is as:

DUMPING VARIABLES

in replace of var_dump, use dump instead.

Documentation will be updated soon...


All versions of simple-php with dependencies

PHP Build Version
Package Version
Requires simplyphp/framework Version v2.0.*
php Version ^7.4|^8.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 reyjhon/simple-php contains the following files

Loading the files please wait ....