php-dna
Requirements
- php-dna 1.0+ requires PHP 8.0 (or later).
Installation
There are two ways of installing php-dna.
Composer
To install php-dna in your project using composer, simply add the following require line to your project's composer.json
file:
{
"require": {
"familytree365/php-dna": "1.0.*"
}
}
Download and __autoload
If you are not using composer, you can download an archive of the source from GitHub and extract it into your project. You'll need to setup an autoloader for the files, unless you go through the painstaking process if requiring all the needed files one-by-one. Something like the following should suffice:
spl_autoload_register(function ($class) {
$pathToDna = __DIR__ . '/library/'; // TODO FIXME
if (!substr(ltrim($class, '\\'), 0, 7) == 'Dna\\') {
return;
}
$class = str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php';
if (file_exists($pathToDna . $class)) {
require_once($pathToDna . $class);
}
});