Download the PHP package merlinblack/nigelib without Composer
On this page you can find all versions of the php package merlinblack/nigelib. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download merlinblack/nigelib
More information about merlinblack/nigelib
Files in merlinblack/nigelib
Package nigelib
Short Description A tiny little library for tiny little web apps.
License MIT
Homepage https://github.com/merlinblack/NigeLib
Informations about the package nigelib
NigeLib
1st August 2022 ARCHIVED - This is pretty old. I'm not maintaining it, and no doubt there are better ways to do these things now.
A tiny PHP library for use in tiny little web apps.
AKA my collection of useful little things.
About
Has Laravel style configuration files that can be switched automatically depending on the hostname (or another parameter) of the machine running the code. This basically means you have default settings in a directory, and under that directory, you can optionally have a directory with new or overridden settings for when running on a particular host.
Installing symfony/yaml allows the Config class to also load Yaml files.
The DB connection manager, has SQL query profiling via Aura/Sql if it is also installed. Connections are only initialised when first retrieved, and are configured with the Config class.
The Console class detects where the output is going, to write either plain text, coloured text using ANSI escape sequences, or HTML with CSS classes that you can style as you see fit.
PharBuilder is a class to aid in building command line utilities, as Phar files. See PharBuilder.php & phartest.php for more info.
StaticDelegate can be extended to give convenient static access to an instance of a class, as long as there is some way of retrieving the instance. Two static classes are supplied - ConfigFacade, and DatabaseConnectionManagerFacade.
SimpleTemplate is a class to help with rendering simple templates in the form of PHP code. It does not try to be a templating engine, however for basic separation of view and model it does the job.
Installing
Via Composer
Or use git to clone.
Example usage
This is how you would retrieve a PDO connection which is configured in a config
or localconfig
directory.
For the above to work you will need two more files: