bonk007/gambar

This package is abandoned and no longer maintained. No replacement package was suggested.

This is an PHP image manipulation library

Installs: 16

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/bonk007/gambar

dev-master / 1.0.x-dev 2016-03-22 07:49 UTC

This package is auto-updated.

Last update: 2024-06-14 03:13:50 UTC


README

##Instalation

Via Composer

Open your composer.json file.

"require-dev":{
...
"bonk007/gambar":"dev-master"
...
}

Open your terminal or command line and do composer update

composer update

##How to use ###with PSR-x autoload

<?php
use Gambar/Gambar;

###Native Open src/Gambar.php and src/GambarException.php and set the following lines as the comments

<?php
// namespace Gambar;
// use Gambar\GambarException;
...

then add include, include_once, require, or require_once into your sourcecode

<?php
require_once '<some directory>/src/Gambar.php';
require_once '<some directory>/src/GambarException.php';