An open API service indexing awesome lists of open source software.

https://github.com/rndoom04/library-template

Template for creating PHP libraries.
https://github.com/rndoom04/library-template

php-library php-library-template php-template php7

Last synced: 13 days ago
JSON representation

Template for creating PHP libraries.

Awesome Lists containing this project

README

          

EXAMPLE
=============

Compatible with PHP >= 7.0.

This is a library-template for writing custom PHP library functions

## Install

For PHP version **`>= 7.0`**:

```
composer require Rndoom04/example
```

## How to use it

Firstly init the library by simply "use".

```
use Rndoom04\example;
```

Then set load the library and set it how you want.
```
$spamdetector = new \Rndoom04\example\example();
```