javocsoft / jvcphpclib
JavocSoft PHP Commons Library
Installs: 22
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/javocsoft/jvcphpclib
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-11-04 09:15:42 UTC
README
JavocSoft PHP Commons Library
DESCRIPTION
This library is a compendium of utility routines and classes that can save you time when coding in PHP.
INSTALLATION & USAGE
To use the library, follow these steps:
1.- Get the library code by using Composer utility. First, create "composer.json" file adding to it these lines:
{
"require": {
"javocsoft/jvcphpclib": "1.0.*"
}
}
2.- Second, download Composer utility:
//In Unix/Linux
curl -sS https://getcomposer.org/installer | php
//In Windows system
Download and install comporser: https://getcomposer.org/Composer-Setup.exe
More about Composer:
See Installation notes: https://getcomposer.org/download/
See getting started: https://getcomposer.org/doc/00-intro.md
See Documentation https://getcomposer.org/doc/03-cli.md
3.- Now, download the library by running composer where we created the file "composer.json".
4.- Configure the library parameters according to your project by setting these parameters:
define ("INIT_APPNAME","your_app_name");
define ("INIT_BASEDIR_PATH","your_app_folder\\");
define ("INIT_LOGS_PATH",INIT_BASEDIR_PATH . "your_log_folder\\");
define ("INIT_OPENSSL_PATH","your_openssl_folder");
define ("INIT_ERRORS_ENV_MODE","DEV"); //Or PROD
5.- Add library classes to your project. To achieve this, add the composer "autoload.php" to your code by including it:
require 'vendor/autoload.php';
6.- Initialize the library:
jvcphplib\JVCPHPLib::initLibrary();